/* ========================================
   CYBERSECURITY DARK THEME - GLOBAL STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #0a0e27;
    --darker-bg: #050812;
    --navy-bg: #0f1629;
    --neon-green: #00ff41;
    --neon-blue: #00d4ff;
    --neon-purple: #b024ff;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --border-color: #1a2f5e;
    --glow-green: 0 0 20px rgba(0, 255, 65, 0.3);
    --glow-blue: 0 0 20px rgba(0, 212, 255, 0.3);
    --glow-purple: 0 0 20px rgba(176, 36, 255, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   GRID BACKGROUND EFFECT
   ======================================== */

.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(0, 255, 65, 0.05) 25%, rgba(0, 255, 65, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 255, 65, 0.05) 75%, rgba(0, 255, 65, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(0, 212, 255, 0.05) 25%, rgba(0, 212, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 212, 255, 0.05) 75%, rgba(0, 212, 255, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.logo:hover {
    filter: drop-shadow(0 0 20px var(--neon-green));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
    transition: width 0.3s ease;
    box-shadow: var(--glow-green);
}

.nav-links a:hover {
    color: var(--neon-green);
    filter: drop-shadow(0 0 10px var(--neon-green));
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
    border-radius: 3px;
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    overflow: hidden;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    background: radial-gradient(circle, var(--neon-green), transparent);
    border-radius: 50%;
    filter: blur(80px);
}

.floating-particles::before {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    opacity: 0.1;
}

.floating-particles::after {
    width: 400px;
    height: 400px;
    bottom: 10%;
    right: 10%;
    background: radial-gradient(circle, var(--neon-blue), transparent);
    opacity: 0.1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    z-index: 2;
}

.hero-left {
    flex: 1;
    text-align: center;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -1px;
}

.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--neon-green);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--neon-green);
    box-shadow: var(--glow-green);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-image-wrapper {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 3px solid var(--neon-green);
    object-fit: cover;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.4);
    z-index: 3;
    position: relative;
}

.profile-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid var(--neon-green);
    box-shadow: inset 0 0 40px rgba(0, 255, 65, 0.2), 0 0 50px rgba(0, 255, 65, 0.3);
}

.profile-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--neon-green);
    border: 3px solid var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
    z-index: 4;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--neon-green), var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

.terminal-container {
    margin: 2rem 0;
    perspective: 1000px;
}

.terminal-window {
    background: rgba(15, 22, 41, 0.9);
    border: 2px solid var(--neon-green);
    border-radius: 0.5rem;
    box-shadow: 0 0 30px var(--neon-green), inset 0 0 30px rgba(0, 255, 65, 0.1);
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.terminal-header {
    background: linear-gradient(90deg, rgba(0, 255, 65, 0.1), rgba(0, 212, 255, 0.1));
    padding: 0.75rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.terminal-btn.red {
    background: #ff605c;
}

.terminal-btn.yellow {
    background: #ffbd44;
}

.terminal-btn.green {
    background: #00ca4e;
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--neon-green);
}

.terminal-line {
    margin: 0.5rem 0;
}

.prompt {
    color: var(--neon-blue);
    margin-right: 0.5rem;
}

.typing-text {
}

.blinking-cursor {
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--neon-blue);
    margin: 2rem 0;
    font-weight: 300;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-green), #00cc33);
    color: var(--dark-bg);
    border-color: var(--neon-green);
    box-shadow: 0 0 20px var(--glow-green);
}

.btn-primary:hover {
    box-shadow: 0 0 40px var(--neon-green), inset 0 0 20px rgba(0, 255, 65, 0.2);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-blue);
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 40px var(--neon-blue), inset 0 0 20px rgba(0, 212, 255, 0.2);
    color: var(--neon-blue);
    transform: translateY(-3px);
}

.btn-tertiary {
    background: transparent;
    color: var(--neon-purple);
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(176, 36, 255, 0.3);
}

.btn-tertiary:hover {
    background: rgba(176, 36, 255, 0.1);
    box-shadow: 0 0 40px var(--neon-purple), inset 0 0 20px rgba(176, 36, 255, 0.2);
    color: var(--neon-purple);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.3rem;
}

/* ========================================
   SECTION TITLE
   ======================================== */

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--text-primary);
    position: relative;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
    margin: 1.5rem auto 0;
    box-shadow: var(--glow-green), var(--glow-blue);
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    padding: 6rem 0;
    background: var(--navy-bg);
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.8rem;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

.about-text strong {
    color: var(--neon-green);
    font-weight: 700;
}

.about-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 255, 65, 0.05));
    border: 2px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.about-card:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px var(--neon-blue), inset 0 0 30px rgba(0, 212, 255, 0.05);
    transform: translateY(-5px);
}

.card-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.focus-list {
    list-style: none;
}

.focus-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border-left: 3px solid var(--neon-blue);
    border-radius: 0.5rem;
    transition: var(--transition);
}

.focus-list li:hover {
    background: rgba(0, 212, 255, 0.1);
    border-left-color: var(--neon-green);
    transform: translateX(10px);
}

.focus-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.focus-list h4 {
    color: var(--neon-green);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.focus-list p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   SKILLS SECTION
   ======================================== */

.skills {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
    z-index: 1;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.skill-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 255, 65, 0.05));
    border: 2px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.skill-card:hover::before {
    left: 100%;
}

.skill-card.glow-green {
    border-color: var(--neon-green);
}

.skill-card.glow-green:hover {
    box-shadow: 0 0 40px var(--neon-green), inset 0 0 40px rgba(0, 255, 65, 0.05);
}

.skill-card.glow-blue {
    border-color: var(--neon-blue);
}

.skill-card.glow-blue:hover {
    box-shadow: 0 0 40px var(--neon-blue), inset 0 0 40px rgba(0, 212, 255, 0.05);
}

.skill-card.glow-purple {
    border-color: var(--neon-purple);
}

.skill-card.glow-purple:hover {
    box-shadow: 0 0 40px var(--neon-purple), inset 0 0 40px rgba(176, 36, 255, 0.05);
}

.skill-card:hover {
    transform: translateY(-10px);
}

.skill-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.skill-category {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.skill-card.glow-green .skill-category {
    color: var(--neon-green);
}

.skill-card.glow-blue .skill-category {
    color: var(--neon-blue);
}

.skill-card.glow-purple .skill-category {
    color: var(--neon-purple);
}

.skill-icon {
    font-size: 2rem;
}

.skill-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skill-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 0.4rem;
    transition: var(--transition);
}

.skill-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(5px);
}

.skill-name {
    color: var(--text-primary);
    font-weight: 500;
}

.skill-level {
    color: var(--neon-green);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    background: rgba(0, 255, 65, 0.1);
    border-radius: 3px;
}

/* ========================================
   EXPERIENCE SECTION
   ======================================== */

.experience {
    padding: 6rem 0;
    background: var(--navy-bg);
    position: relative;
    z-index: 1;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.experience-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 255, 65, 0.05));
    border: 2px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
}

.experience-card.featured-card {
    grid-column: 1 / -1;
    border-color: var(--neon-green);
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(0, 212, 255, 0.05));
}

.experience-card.featured-card:hover {
    box-shadow: 0 0 50px var(--neon-green), inset 0 0 50px rgba(0, 255, 65, 0.1);
}

.experience-card:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px var(--neon-blue), inset 0 0 30px rgba(0, 212, 255, 0.05);
    transform: translateY(-8px);
}

.experience-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: var(--transition);
}

.experience-card:hover .experience-icon {
    transform: scale(1.2) rotate(10deg);
}

.founder-icon {
    font-size: 3.5rem;
}

.experience-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.experience-card.featured-card .experience-title {
    font-size: 1.8rem;
    color: var(--neon-green);
}

.experience-company {
    color: var(--neon-blue);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.experience-period {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.experience-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.experience-highlights {
    list-style: none;
    padding-left: 0;
}

.experience-highlights li {
    color: var(--text-secondary);
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    font-size: 0.9rem;
}

.experience-highlights li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-size: 1.2rem;
}

/* ========================================
   PROJECTS SECTION
   ======================================== */

.projects {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
    z-index: 1;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.project-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 255, 65, 0.05));
    border: 2px solid var(--border-color);
    padding: 2rem;
    border-radius: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.project-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.project-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 40px var(--neon-green), inset 0 0 40px rgba(0, 255, 65, 0.05);
    transform: translateY(-8px);
}

.project-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-type {
    color: var(--neon-blue);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.project-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.7;
    font-size: 0.95rem;
}

.project-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.highlight {
    background: rgba(0, 212, 255, 0.1);
    color: var(--neon-blue);
    padding: 0.5rem 1rem;
    border-radius: 3px;
    font-size: 0.8rem;
    border-left: 3px solid var(--neon-blue);
}

.highlight:hover {
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: rgba(0, 255, 65, 0.1);
    color: var(--neon-green);
    padding: 0.4rem 0.9rem;
    border-radius: 0.3rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 65, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-tag:hover {
}

.project-link {
    display: inline-block;
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-link:hover {
    color: var(--neon-blue);
    transform: translateX(5px);
    filter: drop-shadow(0 0 10px var(--neon-blue));
}

/* ========================================
   RESUME SECTION
   ======================================== */

.resume {
    padding: 6rem 0;
    background: var(--navy-bg);
    position: relative;
    z-index: 1;
}

.resume-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.resume-content > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 255, 65, 0.05));
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    transition: var(--transition);
}

.credential:hover {
    border-color: var(--neon-green);
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(0, 212, 255, 0.05));
}

.credential-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.credential span {
    color: var(--text-primary);
    font-weight: 600;
}

.resume-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 255, 65, 0.05));
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--neon-blue);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 65, 0.05));
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--neon-green);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.contact-item a:hover {
    color: var(--neon-blue);
}

.contact-form {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 255, 65, 0.05));
    border: 2px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.contact-form:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: rgba(10, 14, 39, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    background: rgba(10, 14, 39, 0.9);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2), inset 0 0 10px rgba(0, 255, 65, 0.05);
}

.contact-form button {
    width: 100%;
    margin-top: 0.5rem;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--darker-bg);
    border-top: 2px solid var(--border-color);
    padding: 2.5rem 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 -10px 30px rgba(0, 212, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    color: var(--neon-green);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--neon-blue);
    filter: drop-shadow(0 0 10px var(--neon-blue));
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-card.featured-card {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 14, 39, 0.95);
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        border-bottom: 2px solid var(--border-color);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.75rem 0;
    }

    .hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .hero-left {
        text-align: center;
    }

    .hero-right {
        justify-content: center;
    }

    .profile-image-wrapper {
        width: 280px;
        height: 280px;
    }

    .profile-image {
        width: 220px;
        height: 220px;
    }

    .profile-glow {
        width: 240px;
        height: 240px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

   .terminal-window {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .profile-image-wrapper {
        width: 240px;
        height: 240px;
    }

    .profile-image {
        width: 180px;
        height: 180px;
    }

    .profile-glow {
        width: 200px;
        height: 200px;
    }

    .profile-badge {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .logo {
        font-size: 1.4rem;
    }

    .project-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .about-card {
        padding: 1.5rem;
    }
}
