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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0a0a;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 128, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand h1 {
    color: #00ff80;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 128, 0.5);
}

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

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: #00ff80;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ff80, #00bfff);
    transition: width 0.3s ease;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #00ff80;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 800px 600px at 20% 80%, rgba(0, 255, 128, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 600px 400px at 80% 20%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 128, 0.03) 50%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,255,128,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #00ff80;
}

.glitch {
    position: relative;
    display: inline-block;
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: #ff0040;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: #00bfff;
}

@keyframes glitch {
    0%, 74%, 76%, 100% {
        text-shadow: 0 0 10px rgba(0, 255, 128, 0.5);
    }
    75% {
        text-shadow: -2px 0 #ff0040, 2px 0 #00bfff;
    }
}

@keyframes glitch-1 {
    0%, 74%, 76%, 100% {
        transform: translate(0);
        opacity: 0;
    }
    75% {
        transform: translate(-2px, 0);
        opacity: 0.8;
    }
}

@keyframes glitch-2 {
    0%, 74%, 76%, 100% {
        transform: translate(0);
        opacity: 0;
    }
    75% {
        transform: translate(2px, 0);
        opacity: 0.8;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #00bfff;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff80 0%, #00bfff 50%, #ff0080 100%);
    color: #0a0a0a;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 30px rgba(0, 255, 128, 0.4),
        0 0 20px rgba(0, 255, 128, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #e0e0e0;
    border: 2px solid #00ff80;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 128, 0.1) 0%, rgba(0, 191, 255, 0.1) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.btn-secondary:hover::before {
    transform: scaleX(1);
}

.btn-secondary:hover {
    border-color: #00bfff;
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 25px rgba(0, 191, 255, 0.3),
        0 0 15px rgba(0, 191, 255, 0.2);
}

/* Terminal */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.terminal {
    width: 100%;
    max-width: 500px;
    background: rgba(15, 15, 15, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(0, 255, 128, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.terminal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 128, 0.05) 0%, transparent 50%, rgba(0, 191, 255, 0.05) 100%);
    pointer-events: none;
}

.terminal-header {
    background: rgba(30, 30, 30, 0.9);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn-close { background: #ff5f57; }
.btn-minimize { background: #febc2e; }
.btn-maximize { background: #28ca42; }

.terminal-title {
    color: #00ff80;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.terminal-body {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.terminal-line {
    margin-bottom: 8px;
}

.prompt {
    color: #00ff80;
}

.command {
    color: #00bfff;
}

.output {
    color: #b0b0b0;
}

.success {
    color: #28ca42;
}

.typing {
    animation: typing 3s steps(20) infinite;
}

@keyframes typing {
    0%, 50% { width: 0; }
    100% { width: 100%; }
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #00ff80;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00ff80, #00bfff);
}

/* About Section */
.about {
    background: 
        linear-gradient(135deg, #1a1a2e 0%, #16213e 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/><feColorMatrix in="colorNoise" type="saturate" values="0"/></filter></defs><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.05"/></svg>');
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 600px 400px at 70% 30%, rgba(0, 255, 128, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(0, 191, 255, 0.03) 50%, transparent 60%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #b0b0b0;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: 
        linear-gradient(135deg, rgba(0, 255, 128, 0.1) 0%, rgba(0, 191, 255, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 128, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 128, 0.1) 0%, transparent 50%, rgba(0, 191, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat:hover::before {
    opacity: 1;
}

.stat:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 255, 128, 0.4);
    box-shadow: 0 10px 30px rgba(0, 255, 128, 0.2);
}

.stat h3 {
    font-size: 2.5rem;
    color: #00ff80;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 128, 0.5);
    position: relative;
    z-index: 2;
}

.stat p {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: 
        radial-gradient(circle, rgba(0, 255, 128, 0.2) 0%, rgba(0, 191, 255, 0.1) 50%, transparent 100%);
    border-radius: 50%;
    border: 3px solid rgba(0, 255, 128, 0.4);
    width: 220px;
    height: 220px;
    justify-content: center;
    animation: securityPulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.security-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(0, 255, 128, 0.1) 90deg,
        transparent 180deg,
        rgba(0, 191, 255, 0.1) 270deg,
        transparent 360deg
    );
    animation: rotate 4s linear infinite;
}

.security-badge::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.8) 100%);
    z-index: 1;
}

.security-badge i {
    font-size: 3.5rem;
    color: #00ff80;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 128, 0.7);
    position: relative;
    z-index: 2;
    animation: iconGlow 2s ease-in-out infinite alternate;
}

.security-badge span {
    color: #00ff80;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(0, 255, 128, 0.5);
}

@keyframes securityPulse {
    0%, 100% { 
        transform: scale(1); 
        border-color: rgba(0, 255, 128, 0.4);
        box-shadow: 0 0 20px rgba(0, 255, 128, 0.3);
    }
    50% { 
        transform: scale(1.05); 
        border-color: rgba(0, 255, 128, 0.6);
        box-shadow: 0 0 40px rgba(0, 255, 128, 0.5);
    }
}

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

@keyframes iconGlow {
    0% { text-shadow: 0 0 20px rgba(0, 255, 128, 0.7); }
    100% { text-shadow: 0 0 30px rgba(0, 255, 128, 1), 0 0 40px rgba(0, 191, 255, 0.5); }
}

/* Skills Section */
.skills {
    background: 
        linear-gradient(45deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%),
        radial-gradient(ellipse 800px 400px at 50% 0%, rgba(0, 255, 128, 0.05) 0%, transparent 50%);
    position: relative;
}

.skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(0,255,128,0.1)"/><circle cx="80" cy="40" r="0.5" fill="rgba(0,191,255,0.1)"/><circle cx="40" cy="70" r="0.8" fill="rgba(0,255,128,0.08)"/><circle cx="90" cy="80" r="0.6" fill="rgba(0,191,255,0.08)"/></svg>');
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

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

.skill-category {
    background: 
        linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.8) 100%),
        linear-gradient(45deg, rgba(0, 255, 128, 0.05) 0%, transparent 50%, rgba(0, 191, 255, 0.05) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 128, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff80, #00bfff, #ff0080);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.skill-category:hover::before {
    transform: translateX(0);
}

.skill-category:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 255, 128, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 255, 128, 0.15),
        0 0 0 1px rgba(0, 255, 128, 0.2);
}

.skill-category h3 {
    color: #00ff80;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.skill-category h3 i {
    font-size: 1.5rem;
}

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

.skill-list li {
    padding: 0.5rem 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 20px;
}

.skill-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00bfff;
}

/* Experience Section */
.experience {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #00ff80, #00bfff);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-marker {
    position: absolute;
    top: 0;
    width: 16px;
    height: 16px;
    background: #00ff80;
    border-radius: 50%;
    border: 3px solid #0a0a0a;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -8px;
}

.timeline-content {
    background: rgba(26, 26, 46, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 128, 0.2);
}

.timeline-content h3 {
    color: #00ff80;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: #00bfff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.timeline-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    padding: 0.3rem 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 20px;
}

.timeline-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00bfff;
}

/* Education Section */
.education {
    background: #0a0a0a;
}

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

.education-card {
    background: rgba(26, 26, 46, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 128, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.education-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 128, 0.4);
    box-shadow: 0 10px 30px rgba(0, 255, 128, 0.1);
}

.card-icon {
    font-size: 3rem;
    color: #00ff80;
    margin-bottom: 1rem;
}

.education-card h3 {
    color: #00ff80;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.education-card h4 {
    color: #00bfff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.institution {
    color: #888;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.date {
    color: #00bfff;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.education-card p:last-child {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.philosophy-quotes {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.philosophy-quotes .quote {
    background: rgba(0, 191, 255, 0.1);
    padding: 0.8rem;
    border-radius: 6px;
    border-left: 3px solid #00bfff;
    color: #b0b0b0;
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Projects Section */
.projects {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.project-card {
    background: 
        linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.8) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 128, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00ff80, #00bfff, #ff0080);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 128, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 191, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover::after {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 255, 128, 0.5);
    box-shadow: 
        0 25px 50px rgba(0, 255, 128, 0.2),
        0 0 0 1px rgba(0, 255, 128, 0.3);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.project-card h3 {
    color: #00ff80;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.project-type {
    background: rgba(0, 191, 255, 0.2);
    color: #00bfff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-card p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tech span {
    background: rgba(0, 255, 128, 0.2);
    color: #00ff80;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Business Impact Section */
.impact {
    background: 
        linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%),
        radial-gradient(ellipse 1000px 600px at 30% 70%, rgba(0, 255, 128, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 800px 500px at 70% 30%, rgba(0, 191, 255, 0.06) 0%, transparent 50%);
    position: relative;
}

.impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="hexPattern" x="0" y="0" width="40" height="35" patternUnits="userSpaceOnUse"><polygon points="20,0 30,10 30,25 20,35 10,25 10,10" fill="none" stroke="rgba(0,255,128,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hexPattern)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

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

.impact-card {
    background: rgba(26, 26, 46, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 128, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.impact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 128, 0.4);
    box-shadow: 0 15px 35px rgba(0, 255, 128, 0.1);
}

.impact-icon {
    font-size: 3rem;
    color: #00ff80;
    margin-bottom: 1.5rem;
}

.impact-card h3 {
    color: #00ff80;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.impact-list {
    list-style: none;
    text-align: left;
}

.impact-list li {
    padding: 0.5rem 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
}

.impact-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00bfff;
    font-weight: bold;
}

/* Contact Section */
.contact {
    background: #0a0a0a;
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-text p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.social-link span {
    font-weight: 600;
    font-size: 0.9rem;
}

.social-link.github {
    color: #e6e6e6;
}

.social-link.github:hover {
    background: rgba(230, 230, 230, 0.1);
    border-color: #e6e6e6;
    transform: translateY(-5px);
}

.social-link.linkedin {
    color: #0077b5;
}

.social-link.linkedin:hover {
    background: rgba(0, 119, 181, 0.1);
    border-color: #0077b5;
    transform: translateY(-5px);
}

.social-link.hackthebox {
    color: #9fef00;
}

.social-link.hackthebox:hover {
    background: rgba(159, 239, 0, 0.1);
    border-color: #9fef00;
    transform: translateY(-5px);
}

/* Featured Project Cards */
.project-card.featured {
    border: 2px solid rgba(0, 255, 128, 0.4);
    background: linear-gradient(135deg, rgba(0, 255, 128, 0.05), rgba(0, 191, 255, 0.05));
    position: relative;
}

.project-card.featured::before {
    background: linear-gradient(90deg, #00ff80, #00bfff, #ff0080);
    height: 4px;
}

.project-impact {
    background: rgba(0, 255, 128, 0.1);
    padding: 0.8rem;
    border-radius: 6px;
    margin: 1rem 0;
    border-left: 4px solid #00ff80;
}

.project-impact strong {
    color: #00ff80;
}

/* Timeline Enhancements */
.company-description {
    color: #00bfff !important;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.achievement-badge {
    background: rgba(0, 255, 128, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 4px solid #00ff80;
}

.achievement-badge strong {
    color: #00ff80;
}

.career-moment {
    background: rgba(0, 191, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 4px solid #00bfff;
}

.career-moment strong {
    color: #00bfff;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 128, 0.2);
}

.footer-content p {
    color: #888;
    margin-bottom: 0.5rem;
}

.footer-content p:last-child {
    color: #00ff80;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(0, 255, 128, 0.2);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats {
        justify-content: center;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 4rem;
        left: 0 !important;
        padding-right: 0 !important;
    }

    .timeline-item .timeline-marker {
        left: 12px !important;
        right: auto !important;
    }

    .social-links {
        flex-direction: column;
        gap: 1rem;
    }

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

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

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

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

    .section {
        padding: 60px 0;
    }

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

    .timeline-content {
        padding: 1.5rem;
    }

    .project-card,
    .education-card,
    .skill-category {
        padding: 1.5rem;
    }
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Loading animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

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

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

::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00ff80 0%, #00bfff 50%, #ff0080 100%);
    border-radius: 5px;
    border: 2px solid #0a0a0a;
    box-shadow: inset 0 0 6px rgba(0, 255, 128, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff0080 0%, #00bfff 50%, #00ff80 100%);
    box-shadow: inset 0 0 6px rgba(0, 255, 128, 0.5);
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-feature-settings: 'kern' 1, 'liga' 1;
    text-rendering: optimizeLegibility;
}

.section-title {
    background: linear-gradient(135deg, #00ff80 0%, #00bfff 50%, #ff0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 255, 128, 0.3));
}

/* Enhanced Floating Animation */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-10px) rotate(5deg); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-5px) rotate(10deg); 
        opacity: 0.7;
    }
    75% { 
        transform: translateY(-15px) rotate(-5deg); 
        opacity: 0.9;
    }
}