/* Custom CSS Variables and Base Styles */
:root {
    --cyber-green: #00ff41;
    --cyber-blue: #0099ff;
    --cyber-purple: #ff0099;
    --cyber-orange: #ff6600;
    --cyber-cyan: #00ffff;
    --cyber-white: #ffffff;
    --dark-bg: #0a0a0a;
    --dark-card: #1a1a1a;
    --dark-border: #333333;
    --glow-green: 0 0 20px rgba(0, 255, 65, 0.4);
    --glow-blue: 0 0 20px rgba(0, 153, 255, 0.4);
    --glow-purple: 0 0 20px rgba(255, 0, 153, 0.4);
    --glow-orange: 0 0 20px rgba(255, 102, 0, 0.4);
    --glow-cyan: 0 0 20px rgba(0, 255, 255, 0.4);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--cyber-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyber-blue);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Body and base styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation Styles */
.nav-link {
    @apply text-gray-300 hover:text-cyber-green px-3 py-2 rounded-md text-sm font-medium transition-all duration-300 relative;
}

.nav-link:hover {
    text-shadow: 0 0 10px var(--cyber-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--cyber-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

/* Mobile Menu Styles */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.mobile-menu.open {
    max-height: 400px;
}

.mobile-nav-link {
    @apply text-gray-300 hover:text-cyber-green block px-3 py-2 rounded-md text-base font-medium transition-colors duration-300;
}

.mobile-menu-btn {
    @apply p-2 rounded-md text-gray-300 hover:text-cyber-green focus:outline-none focus:ring-2 focus:ring-cyber-green;
}

/* Hamburger Menu Animation */
.hamburger-lines {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.hamburger-lines span {
    display: block;
    height: 2px;
    width: 100%;
    background: currentColor;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.open .hamburger-lines span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.open .hamburger-lines span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open .hamburger-lines span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Section Titles */
.section-title {
    @apply text-4xl md:text-5xl font-bold font-fira text-center mb-4;
    background: linear-gradient(45deg, var(--cyber-green), var(--cyber-cyan), var(--cyber-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-divider {
    @apply w-24 h-1 mx-auto mb-8;
    background: linear-gradient(45deg, var(--cyber-green), var(--cyber-cyan), var(--cyber-blue));
    border-radius: 2px;
}

/* Hero Section Styles */
#hero {
    position: relative;
    background: radial-gradient(ellipse at center, rgba(0, 255, 65, 0.15) 0%, rgba(0, 153, 255, 0.08) 50%, transparent 70%);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Typing Animation */
#typed-text {
    min-height: 1.2em;
    display: inline-block;
}

.cursor {
    animation: blink 1s infinite;
    color: var(--cyber-green);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Cyber Buttons */
.cyber-btn {
    @apply px-8 py-3 rounded-lg font-semibold text-sm uppercase tracking-wider transition-all duration-300 transform hover:scale-105 inline-flex items-center justify-center;
    position: relative;
    overflow: hidden;
}

.cyber-btn::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;
}

.cyber-btn:hover::before {
    left: 100%;
}

.cyber-btn.primary {
    @apply bg-cyber-green text-black hover:bg-cyber-blue;
    box-shadow: var(--glow-green);
}

.cyber-btn.primary:hover {
    box-shadow: var(--glow-blue);
}

.cyber-btn.secondary {
    @apply border-2 border-cyber-blue text-cyber-blue hover:bg-cyber-blue hover:text-black;
    box-shadow: var(--glow-blue);
}

/* Content Creator Badges */
.creator-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.9), 
        rgba(32, 32, 32, 0.9)
    );
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: inherit;
}

.creator-badge i {
    font-size: 1.25rem;
    z-index: 2;
    position: relative;
}

.creator-badge span {
    z-index: 2;
    position: relative;
    font-family: 'Fira Code', monospace;
}

.youtube-badge {
    border-color: rgba(255, 0, 0, 0.3);
    color: #ff0000;
}

.youtube-badge:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #ff0000;
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.1));
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.3);
}

.instagram-badge {
    border-color: rgba(233, 89, 80, 0.3);
    background: linear-gradient(135deg, rgba(233, 89, 80, 0.1), rgba(131, 58, 180, 0.1));
    color: #e95950;
}

.instagram-badge:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #e95950;
    color: #fff;
    background: linear-gradient(135deg, rgba(233, 89, 80, 0.2), rgba(131, 58, 180, 0.2));
    box-shadow: 0 15px 35px rgba(233, 89, 80, 0.3);
}

.badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.youtube-badge .badge-glow {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.1));
}

.instagram-badge .badge-glow {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.creator-badge:hover .badge-glow {
    opacity: 1;
}

/* Mobile Creator Badges */
@media (max-width: 640px) {
    .creator-badge {
        padding: 0.6rem 1.25rem;
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .creator-badge i {
        font-size: 1.1rem;
    }
}

/* Profile Image */
.profile-image-container {
    position: relative;
    display: inline-block;
    z-index: 10;
    overflow: hidden;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(45deg, var(--cyber-green), var(--cyber-blue), var(--cyber-purple), var(--cyber-green));
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite;
}

.profile-image {
    @apply w-80 h-80 object-cover;
    border-radius: 50%;
    border: 6px solid #1a1a1a;
    filter: grayscale(20%) brightness(0.9) contrast(1.1) saturate(1.2);
    transition: all 0.5s ease;
    object-position: center top;
    position: relative;
    z-index: 5;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.3),
        0 8px 32px rgba(0, 255, 65, 0.2),
        0 0 0 2px rgba(255, 255, 255, 0.1);
}

.profile-image:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.02);
    border-color: var(--cyber-green);
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.2),
        0 12px 40px rgba(0, 255, 65, 0.4),
        0 0 0 2px var(--cyber-green);
}

.profile-glow {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: conic-gradient(from 0deg, var(--cyber-green), var(--cyber-blue), var(--cyber-purple), var(--cyber-green));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
    transition: opacity 0.5s ease;
    animation: rotate 6s linear infinite;
    filter: blur(8px);
}

.profile-image-container:hover .profile-glow {
    opacity: 0.9;
    filter: blur(12px);
}

/* Gradient animation for curved border */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* About Section Protection */
#about {
    position: relative;
    z-index: 5;
    isolation: isolate;
}

/* Prevent animations from flowing over profile image area */
#about .grid.lg\\:grid-cols-2 > div:first-child {
    position: relative;
    z-index: 15;
    isolation: isolate;
}

/* About Cards */
.about-card {
    @apply bg-dark-card p-6 rounded-lg border border-dark-border;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--cyber-green), var(--cyber-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

/* Achievement Button Styles */
.achievement-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95), 
        rgba(32, 32, 32, 0.95)
    );
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-width: 280px;
    flex: 1;
}

.achievement-btn:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(0, 255, 65, 0.8);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 255, 65, 0.3);
}

.achievement-btn:hover .achievement-glow {
    opacity: 1;
}

.achievement-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyber-green), var(--cyber-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    font-weight: bold;
    flex-shrink: 0;
}

.achievement-content {
    flex: 1;
    text-align: left;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--cyber-green);
    font-family: 'Fira Code', monospace;
    line-height: 1;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.achievement-label {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.achievement-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #00ff41, #00d4ff, #a855f7);
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

/* Tablet Achievement Buttons */
@media (max-width: 768px) {
    .achievement-btn {
        min-width: 250px;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .achievement-number {
        font-size: 2.25rem;
    }
    
    .achievement-label {
        font-size: 0.85rem;
    }
    
    .achievement-icon {
        width: 55px;
        height: 55px;
        font-size: 1.35rem;
    }
}

/* Mobile Achievement Buttons */
@media (max-width: 640px) {
    .achievement-btn {
        flex-direction: column;
        text-align: center;
        min-width: auto;
        gap: 0.75rem;
        padding: 1.25rem;
        margin: 0 auto;
        max-width: 300px;
    }
    
    .achievement-content {
        text-align: center;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
    
    .achievement-label {
        font-size: 0.8rem;
    }
    
    .achievement-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* About Section Mobile Centering */
@media (max-width: 1023px) {
    #about .grid.lg\\:grid-cols-2 > div:last-child {
        text-align: center !important;
    }
    
    #about .about-card {
        text-align: center;
        margin: 0 auto;
    }
    
    #about .about-card h3 {
        text-align: center;
    }
    
    #about .about-card p {
        text-align: center;
    }
    
    #about .achievement-btn {
        margin: 0 auto;
    }
    
    #about .flex {
        justify-content: center !important;
    }
}

/* Stat Cards */
.stat-card {
    @apply bg-dark-card p-6 rounded-lg text-center border border-dark-border;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-green);
}

.stat-number {
    @apply text-4xl font-bold text-cyber-green mb-2;
}

.stat-label {
    @apply text-gray-400 text-sm uppercase tracking-wider;
}

/* Certifications Grid */
.certifications-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

/* Desktop certification grid */
@media (min-width: 768px) {
    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 900px;
        align-items: stretch;
    }
}

/* Large desktop optimization */
@media (min-width: 1024px) {
    .certifications-grid {
        gap: 2.5rem;
        max-width: 1000px;
    }
}

/* Certification Cards */
.cert-card {
    @apply bg-dark-card p-8 rounded-lg text-center border border-dark-border;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.05), rgba(0, 212, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cert-card:hover::before {
    opacity: 1;
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-green);
}

.cert-icon {
    @apply text-5xl text-cyber-green mb-4;
}

.cert-title {
    @apply text-xl font-bold text-white mb-2;
}

.cert-description {
    @apply text-gray-400;
}

/* Enhanced Technical Skills Section */
.skills-section {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.9));
}

.skills-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.skills-title {
    font-family: 'Fira Code', monospace;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff41, #00d4ff, #a855f7);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.skills-title::before {
    content: '<';
    position: absolute;
    left: -50px;
    top: 0;
    color: #00ff41;
    opacity: 0.8;
    animation: pulse 2s infinite;
}

.skills-title::after {
    content: '/>';
    position: absolute;
    right: -50px;
    top: 0;
    color: #00d4ff;
    opacity: 0.8;
    animation: pulse 2s infinite reverse;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    justify-items: center;
    align-items: center;
    margin-top: 3rem;
    padding: 2rem 0;
    place-items: center;
}

.skill-tag {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Fira Code', monospace;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 100%;
    max-width: 200px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 4px 15px rgba(0, 255, 65, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.skill-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00ff41, #00d4ff, #a855f7);
    border-radius: 16px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.skill-tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 255, 65, 0.4), 
        rgba(0, 212, 255, 0.4),
        transparent
    );
    transition: left 0.6s ease;
}

.skill-tag:hover {
    transform: translateY(-8px) scale(1.05);
    color: #00ff41;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
    box-shadow: 
        0 20px 40px rgba(0, 255, 65, 0.3),
        0 0 0 1px rgba(0, 255, 65, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.skill-tag:hover::before {
    opacity: 1;
}

.skill-tag:hover::after {
    left: 100%;
}

.skill-tag:nth-child(odd):hover {
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    box-shadow: 
        0 20px 40px rgba(0, 212, 255, 0.3),
        0 0 0 1px rgba(0, 212, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.skill-tag:nth-child(3n):hover {
    color: #a855f7;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
    box-shadow: 
        0 20px 40px rgba(168, 85, 247, 0.3),
        0 0 0 1px rgba(168, 85, 247, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Timeline Styles */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--cyber-green), var(--cyber-blue));
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
        transform: none;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--cyber-green);
    border: 4px solid var(--dark-bg);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: var(--glow-green);
}

@media (max-width: 768px) {
    .timeline-dot {
        left: 20px;
        transform: translateX(-50%);
    }
}

.timeline-content {
    @apply bg-dark-card p-6 rounded-lg border border-dark-border ml-0;
    width: calc(50% - 40px);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 40px);
}

@media (max-width: 768px) {
    .timeline-content {
        margin-left: 60px !important;
        width: calc(100% - 80px);
    }
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-green);
}

.timeline-date {
    @apply text-cyber-green text-sm font-semibold mb-2;
}

.timeline-title {
    @apply text-xl font-bold text-white mb-1;
}

.timeline-company {
    @apply text-cyber-blue font-semibold mb-3;
}

.timeline-description {
    @apply text-gray-400 leading-relaxed;
}

/* Enhanced Featured Projects Section */
.projects-section {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.9));
    position: relative;
}

.projects-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.projects-title {
    font-family: 'Fira Code', monospace;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff41, #00d4ff, #a855f7, #ff0099);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.projects-title::before {
    content: '{';
    position: absolute;
    left: -60px;
    top: 0;
    color: #00ff41;
    opacity: 0.9;
    animation: pulse 2s infinite;
}

.projects-title::after {
    content: '}';
    position: absolute;
    right: -60px;
    top: 0;
    color: #a855f7;
    opacity: 0.9;
    animation: pulse 2s infinite reverse;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    justify-items: center;
}

.project-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.9));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 65, 0.2);
    position: relative;
    max-width: 400px;
    width: 100%;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(0, 255, 65, 0.6);
    box-shadow: 
        0 25px 50px rgba(0, 255, 65, 0.2),
        0 0 0 1px rgba(0, 255, 65, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.project-card:hover::before {
    opacity: 1;
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: linear-gradient(45deg, rgba(0, 255, 65, 0.1), rgba(0, 212, 255, 0.1));
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(50%) brightness(0.8);
}

.project-card:hover .project-image img {
    transform: scale(1.15);
    filter: grayscale(0%) brightness(1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 255, 65, 0.9), 
        rgba(0, 212, 255, 0.9), 
        rgba(168, 85, 247, 0.8)
    );
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-actions {
    display: flex;
    gap: 1.5rem;
    z-index: 2;
}

.project-btn {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    color: #00ff41;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid #00ff41;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.project-btn:hover {
    background: #00ff41;
    color: #000;
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
}

.project-btn:nth-child(2):hover {
    background: #00d4ff;
    border-color: #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.project-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.project-title {
    font-family: 'Fira Code', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00ff41, #00d4ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
}

.project-description {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.project-tag {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.2), rgba(0, 212, 255, 0.2));
    color: #00ff41;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Fira Code', monospace;
    border: 1px solid rgba(0, 255, 65, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.project-tag:hover {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.4), rgba(0, 212, 255, 0.4));
    border-color: #00ff41;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 65, 0.3);
}

.project-tag:nth-child(even) {
    color: #00d4ff;
    border-color: rgba(0, 212, 255, 0.3);
}

.project-tag:nth-child(even):hover {
    border-color: #00d4ff;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

/* Enhanced Typography System */
.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: #cccccc;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.code-accent {
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.2), rgba(0, 212, 255, 0.2));
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 65, 0.3);
    font-size: 0.9em;
}

.tech-heading {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Pulse animation for decorative elements */
@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Enhanced section dividers */
.section-divider {
    position: relative;
    width: 100px;
    height: 4px;
    margin: 1rem auto 2rem;
    background: linear-gradient(90deg, #00ff41, #00d4ff, #a855f7);
    border-radius: 2px;
    overflow: hidden;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Glassmorphism effects */
.glass-card {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Enhanced Cybersecurity Footer */
.cyber-footer {
    position: relative;
    min-height: 300px;
}

.footer-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 65, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(168, 85, 247, 0.02) 0%, transparent 50%);
    opacity: 0.8;
}

.footer-bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(0, 255, 65, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(0, 255, 65, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.footer-logo {
    position: relative;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ff41, #00d4ff);
    transition: width 0.3s ease;
}

.footer-logo:hover::after {
    width: 100%;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    display: block;
}

.footer-link::before {
    content: '> ';
    color: #00ff41;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    color: #00ff41;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.3);
    transform: translateX(5px);
}

.footer-link:hover::before {
    opacity: 1;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00ff41, #00d4ff);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.footer-social-link:hover {
    color: #000;
    transform: translateY(-5px) scale(1.1);
    border-color: #00ff41;
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.4);
}

.footer-social-link:hover::before {
    transform: scale(1);
}

.footer-social-link:nth-child(even):hover {
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 255, 65, 0.3) 20%, 
        rgba(0, 212, 255, 0.5) 50%, 
        rgba(168, 85, 247, 0.3) 80%, 
        transparent
    );
    position: relative;
    overflow: hidden;
}

.footer-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.6), 
        transparent
    );
    animation: divider-shine 3s infinite;
}

@keyframes divider-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Fira Code', monospace;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff41;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.back-to-top-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.9), rgba(0, 212, 255, 0.9));
    border: 2px solid #00ff41;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(0, 255, 65, 0.3),
        0 0 0 0 rgba(0, 255, 65, 0.4);
    backdrop-filter: blur(10px);
}

.back-to-top-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 8px 25px rgba(0, 255, 65, 0.5),
        0 0 0 10px rgba(0, 255, 65, 0.1);
    background: linear-gradient(135deg, #00ff41, #00d4ff);
}

.back-to-top-btn:active {
    transform: translateY(-3px) scale(1.05);
}

/* Footer Mobile Optimizations */
@media (max-width: 768px) {
    .cyber-footer {
        min-height: auto;
    }
    
    .footer-bg-pattern::before {
        background-size: 30px 30px;
    }
    
    .footer-social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-link {
        font-size: 0.8rem;
        padding: 0.4rem;
    }
    
    .footer-social-link {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* Enhanced Contact Info Section */
.contact-info-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

/* Mobile section override */
@media (max-width: 768px) {
    .contact-info-section {
        display: block !important;
        align-items: unset !important;
        justify-content: unset !important;
    }
}

.contact-info-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    width: 100%;
}

.contact-section-title {
    font-family: 'Fira Code', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.contact-section-subtitle {
    color: #888;
    font-size: 0.9rem;
    font-family: 'Fira Code', monospace;
    opacity: 0.8;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
    width: 100%;
}

/* Mobile grid override */
@media (max-width: 768px) {
    .contact-cards-grid {
        display: block !important;
        grid-template-columns: unset !important;
        gap: unset !important;
        max-width: none !important;
        margin-left: unset !important;
        margin-right: unset !important;
        align-items: unset !important;
    }
}

/* Enhanced Contact Cards */
.enhanced-contact-card {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95), 
        rgba(32, 32, 32, 0.95)
    );
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}

/* Override desktop styles on mobile */
@media (max-width: 768px) {
    .enhanced-contact-card {
        display: block !important;
        min-height: auto !important;
        justify-content: unset !important;
    }
    
    .contact-card-content {
        display: block !important;
        justify-content: unset !important;
        align-items: unset !important;
    }
}

.enhanced-contact-card.clickable {
    cursor: pointer;
}

.enhanced-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 65, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #00ff41, #00d4ff);
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.enhanced-contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 65, 0.5);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 255, 65, 0.2);
}

.enhanced-contact-card:hover .card-glow {
    opacity: 0.3;
}

.enhanced-contact-card.clickable:hover {
    transform: translateY(-8px) scale(1.02);
}

.contact-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.enhanced-contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    position: relative;
    overflow: hidden;
}

.location-icon {
    background: linear-gradient(135deg, #00ff41, #32d74b);
    color: #000;
}

.email-icon {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #000;
}

.phone-icon {
    background: linear-gradient(135deg, #a855f7, #9333ea);
    color: #fff;
}

.social-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #fff;
}

.icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    animation: icon-pulse 2s infinite;
}

@keyframes icon-pulse {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.card-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #666;
}

.status-indicator.active {
    background: #00ff41;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    animation: pulse-indicator 2s infinite;
}

@keyframes pulse-indicator {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.status-text {
    font-size: 0.75rem;
    color: #888;
    font-family: 'Fira Code', monospace;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.enhanced-contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    font-family: 'Fira Code', monospace;
    min-height: 1.75rem;
    display: flex;
    align-items: center;
}

.enhanced-contact-text {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.6;
    min-height: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1rem;
}

/* Mobile text override */
@media (max-width: 768px) {
    .enhanced-contact-text {
        min-height: auto !important;
        display: block !important;
        justify-content: unset !important;
    }
    
    .enhanced-contact-title {
        min-height: auto !important;
        display: block !important;
        align-items: unset !important;
    }
}

.location-primary {
    display: block;
    font-weight: 600;
    color: #00ff41;
}

.location-secondary {
    display: block;
    font-size: 0.9rem;
    color: #888;
}

.email-address {
    font-family: 'Fira Code', monospace;
    color: #00d4ff;
    font-weight: 500;
}

.phone-number {
    font-family: 'Fira Code', monospace;
    color: #a855f7;
    font-weight: 500;
}

.contact-meta {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.click-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #666;
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.enhanced-contact-card.clickable:hover .click-indicator {
    opacity: 1;
    color: #00ff41;
    transform: translateX(-5px);
}

/* Enhanced Social Links */
.social-card {
    grid-column: 1 / -1;
    margin: 0 auto;
    width: 100%;
    min-height: 220px;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.enhanced-social-link {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.enhanced-social-link.linkedin {
    background: linear-gradient(135deg, rgba(0, 119, 181, 0.2), rgba(0, 119, 181, 0.1));
    color: #0077b5;
}

.enhanced-social-link.github {
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.2), rgba(51, 51, 51, 0.1));
    color: #333;
}

.enhanced-social-link.youtube {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.1));
    color: #ff0000;
}

.enhanced-social-link.twitter {
    background: linear-gradient(135deg, rgba(29, 161, 242, 0.2), rgba(29, 161, 242, 0.1));
    color: #1da1f2;
}

.enhanced-social-link.instagram {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(225, 48, 108, 0.1));
    color: #e1306c;
}

.enhanced-social-link.telegram {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.2), rgba(0, 136, 204, 0.1));
    color: #0088cc;
}

.social-tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-family: 'Fira Code', monospace;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.social-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.enhanced-social-link:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: currentColor;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.enhanced-social-link:hover .social-tooltip {
    opacity: 1;
}

.enhanced-social-link:hover .social-ripple {
    width: 100px;
    height: 100px;
}

/* Response Badge */
.response-badge {
    background: linear-gradient(135deg, 
        rgba(0, 255, 65, 0.1), 
        rgba(0, 212, 255, 0.1)
    );
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem auto 0;
    backdrop-filter: blur(10px);
    max-width: 400px;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00ff41, #00d4ff);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
}

.badge-content {
    flex: 1;
}

.badge-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
    font-family: 'Fira Code', monospace;
}

.badge-subtitle {
    color: #888;
    font-size: 0.85rem;
}

.badge-indicator {
    position: relative;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #00ff41;
    border-radius: 50%;
    animation: pulse-badge 2s infinite;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

@keyframes pulse-badge {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.3);
    }
}

/* Large Screen Optimizations */
@media (min-width: 1024px) {
    .contact-info-section {
        max-width: 900px;
        margin: 0 auto;
        align-self: flex-start;
    }
    
    .contact-cards-grid {
        max-width: 800px;
        gap: 2.5rem;
    }
    
    .enhanced-contact-card {
        padding: 2.5rem;
        min-height: 220px;
    }
    
    .contact-form-container {
        align-self: flex-start;
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        position: relative;
        top: 1rem;
    }
    
    /* Ensure proper vertical alignment */
    .contact-info-header {
        margin-bottom: 3rem;
        margin-top: 0;
        padding-top: 0;
    }
    
    .form-header {
        margin-bottom: 2rem;
        margin-top: 0;
        padding-top: 0;
    }
    
    /* Grid alignment for desktop */
    #contact .grid {
        align-items: flex-start;
    }
    
    #contact .grid > div {
        vertical-align: top;
        align-self: flex-start;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .contact-info-section {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0;
    }
    
    .contact-info-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .contact-cards-grid {
        display: block;
        max-width: none;
        padding: 0 1rem;
        margin: 0;
    }
    
    .enhanced-contact-card {
        display: block;
        padding: 1.25rem;
        margin: 0 0 1rem 0;
        max-width: none;
        min-height: auto;
        text-align: center;
        border-radius: 12px;
    }
    
    .contact-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
    }
    
    .contact-card-content {
        text-align: center;
    }
    
    .enhanced-contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .enhanced-contact-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .enhanced-contact-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .social-card {
        margin-bottom: 1rem;
    }
    
    .social-links-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        justify-items: center;
        margin-top: 1rem;
    }
    
    .enhanced-social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .response-badge {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem;
        margin: 1rem 1rem 0;
        text-align: left;
    }
    
    .badge-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .contact-section-title {
        font-size: 1.3rem;
    }
    
    .contact-section-subtitle {
        font-size: 0.8rem;
    }
    
    .contact-info-header {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .contact-cards-grid {
        padding: 0 0.5rem;
    }
    
    .enhanced-contact-card {
        padding: 1rem;
        margin-bottom: 0.875rem;
        border-radius: 10px;
    }
    
    .enhanced-contact-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .enhanced-contact-title {
        font-size: 0.9rem;
    }
    
    .enhanced-contact-text {
        font-size: 0.85rem;
    }
    
    .contact-meta {
        font-size: 0.75rem;
    }
    
    .social-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
        margin-top: 0.875rem;
    }
    
    .enhanced-social-link {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .response-badge {
        margin: 1rem 0.5rem 0;
        padding: 0.875rem;
        gap: 0.5rem;
    }
    
    .badge-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .badge-title {
        font-size: 0.85rem;
    }
    
    .badge-subtitle {
        font-size: 0.75rem;
    }
}

/* Enhanced Contact Form */
.contact-form-container {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95), 
        rgba(32, 32, 32, 0.95)
    );
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 255, 65, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-top: 0;
    height: fit-content;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 255, 65, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact-form {
    position: relative;
    z-index: 1;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    position: relative;
}

.form-title {
    font-family: 'Fira Code', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.form-subtitle {
    color: #888;
    font-size: 0.9rem;
    font-family: 'Fira Code', monospace;
    opacity: 0.8;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e5e5;
    margin-bottom: 0.75rem;
    font-family: 'Fira Code', monospace;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-icon {
    color: #00ff41;
    font-size: 0.9rem;
}

.required-star {
    color: #ff4757;
    margin-left: 0.25rem;
}

.input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.form-input::placeholder {
    color: #666;
    font-style: italic;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.input-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    background: linear-gradient(135deg, #00ff41, #00d4ff) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.form-input:focus {
    border-color: rgba(0, 255, 65, 0.5);
    background: rgba(20, 20, 20, 0.95);
    box-shadow: 
        0 0 0 4px rgba(0, 255, 65, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.form-input:focus + .input-border {
    opacity: 1;
}

.textarea-counter {
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: 0.75rem;
    font-family: 'Fira Code', monospace;
    pointer-events: none;
    z-index: 3;
}

.privacy-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.enhanced-submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, 
        rgba(0, 255, 65, 0.1), 
        rgba(0, 212, 255, 0.1)
    );
    border: 2px solid rgba(0, 255, 65, 0.4);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Fira Code', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    margin-top: 1rem;
}

.btn-text {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00ff41, #00d4ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 10px;
}

.btn-scanner {
    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.6s ease;
}

.enhanced-submit-btn:hover {
    border-color: #00ff41;
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(0, 255, 65, 0.3),
        0 0 0 4px rgba(0, 255, 65, 0.1);
}

.enhanced-submit-btn:hover .btn-glow {
    opacity: 1;
}

.enhanced-submit-btn:hover .btn-scanner {
    left: 100%;
}

.enhanced-submit-btn:active {
    transform: translateY(-1px);
}

.enhanced-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.enhanced-submit-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Form Mobile Optimizations */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 1.5rem;
        border-radius: 15px;
        margin-top: 0 !important;
        position: static !important;
        top: auto !important;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-input {
        padding: 0.875rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .enhanced-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 1rem;
        margin: 0 0.5rem;
        margin-top: 0 !important;
        position: static !important;
        top: auto !important;
    }
    
    .form-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-input {
        padding: 0.75rem;
    }
    
    .form-label {
        font-size: 0.8rem;
    }
}

/* Animations */
@keyframes glow {
    0% { box-shadow: 0 0 5px var(--cyber-green); }
    100% { box-shadow: 0 0 20px var(--cyber-green), 0 0 30px var(--cyber-green); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes typewriter {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

/* Enhanced Glitch Effect for headings */
.glitch {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.1s ease;
}

.glitch::before {
    color: var(--cyber-cyan);
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch::after {
    color: var(--cyber-purple);
    z-index: -2;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

/* Active glitch state */
.glitch.glitch-active::before {
    opacity: 0.9;
    animation: glitch-top 0.3s ease-in-out;
    text-shadow: 3px 0 var(--cyber-cyan), 0 0 10px var(--cyber-cyan);
}

.glitch.glitch-active::after {
    opacity: 0.9;
    animation: glitch-bottom 0.3s ease-in-out;
    text-shadow: -3px 0 var(--cyber-purple), 0 0 10px var(--cyber-purple);
}

.glitch.glitch-active {
    animation: glitch-main 0.3s ease-in-out;
}

/* Glitch animations */
@keyframes glitch-main {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-1px, -1px); }
    60% { transform: translate(2px, 1px); }
    80% { transform: translate(1px, -2px); }
}

@keyframes glitch-top {
    0%, 100% { 
        transform: translate(0); 
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    }
    20% { 
        transform: translate(-2px, 2px); 
        clip-path: polygon(0 15%, 100% 15%, 100% 45%, 0 45%);
    }
    40% { 
        transform: translate(-1px, -1px); 
        clip-path: polygon(0 0, 100% 0, 100% 30%, 0 30%);
    }
    60% { 
        transform: translate(2px, 1px); 
        clip-path: polygon(0 20%, 100% 20%, 100% 60%, 0 60%);
    }
    80% { 
        transform: translate(1px, -2px); 
        clip-path: polygon(0 5%, 100% 5%, 100% 40%, 0 40%);
    }
}

@keyframes glitch-bottom {
    0%, 100% { 
        transform: translate(0); 
        clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    }
    20% { 
        transform: translate(2px, -2px); 
        clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%);
    }
    40% { 
        transform: translate(1px, 1px); 
        clip-path: polygon(0 60%, 100% 60%, 100% 95%, 0 95%);
    }
    60% { 
        transform: translate(-2px, -1px); 
        clip-path: polygon(0 40%, 100% 40%, 100% 85%, 0 85%);
    }
    80% { 
        transform: translate(-1px, 2px); 
        clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    }
}

/* Mobile-First Responsive Design */
@media (max-width: 480px) {
    /* Ultra small mobile optimization */
    .section-title {
        @apply text-2xl;
        line-height: 1.2;
    }
    
    .cyber-btn {
        @apply px-4 py-2 text-xs;
        min-height: 44px; /* Touch target size */
    }
    
    .profile-image {
        @apply w-48 h-48;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    /* Fix scroll indicator arrow positioning on mobile */
    #hero .absolute.bottom-8 {
        bottom: 1rem !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 20;
    }
    
    #hero .absolute.bottom-8 a {
        display: block;
        padding: 0.5rem;
        text-align: center;
    }
    
    #hero .absolute.bottom-8 i {
        font-size: 1.5rem !important;
    }
    
    .about-card {
        @apply p-4;
        margin-bottom: 1rem;
        text-align: center !important;
    }
    
    .about-card h3 {
        text-align: center !important;
    }
    
    .about-card p {
        text-align: center !important;
    }
    
    .certifications-grid {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .cert-card {
        @apply p-4;
        margin-bottom: 0;
        max-width: 100%;
    }
    
    .timeline-content {
        @apply p-4;
        margin-left: 40px !important;
        width: calc(100% - 60px);
    }
    
    .project-card {
        margin-bottom: 1rem;
    }
    
    .contact-form {
        @apply p-4;
    }
    
    .form-input {
        @apply py-4; /* Larger touch targets */
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    /* Hero section mobile optimization */
    #hero h1 {
        font-size: 2.5rem !important;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    #hero .text-xl {
        font-size: 1.1rem !important;
    }
    
    #hero .text-lg {
        font-size: 1rem !important;
    }
    
    /* Navigation mobile fixes */
    .mobile-menu {
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
    }
    
    .mobile-nav-link {
        @apply py-4 px-4 text-lg;
        border-bottom: 1px solid #333;
    }
    
    /* Enhanced Skills mobile optimization */
    .skills-title {
        font-size: 2rem !important;
        letter-spacing: 1px;
    }
    
    .skills-title::before,
    .skills-title::after {
        display: none;
    }
    
    .skills-container {
        padding: 0 1rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
        margin-top: 2rem;
        padding: 1rem 0;
        justify-content: center;
        place-items: center;
    }
    
    .skill-tag {
        font-size: 0.85rem;
        padding: 0.9rem 1.2rem;
        width: 100%;
        max-width: 150px;
        min-height: 45px;
        border-radius: 12px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Projects mobile optimization */
    .projects-title {
        font-size: 2.2rem !important;
        letter-spacing: 1px;
    }
    
    .projects-title::before,
    .projects-title::after {
        display: none;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .project-card {
        max-width: 100%;
    }
    
    .project-image {
        height: 180px;
    }
    
    .project-content {
        padding: 1.5rem;
    }
    
    .project-title {
        font-size: 1.2rem;
    }
    
    /* Contact info mobile */
    .contact-info-card {
        @apply flex-col text-center p-4;
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        @apply mb-2;
    }
    
    /* Social links mobile */
    .social-link {
        @apply w-14 h-14 text-lg;
        margin: 0.5rem;
    }
}

@media (max-width: 640px) {
    .section-title {
        @apply text-3xl;
        margin-bottom: 1rem;
    }
    
    .cyber-btn {
        @apply px-6 py-3 text-sm;
        min-height: 48px; /* Better touch targets */
        border-radius: 12px;
    }
    
    .profile-image {
        @apply w-56 h-56;
    }
    
    .stat-number {
        @apply text-3xl;
    }
    
    .certifications-grid {
        gap: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .cert-card {
        @apply p-5;
        margin-bottom: 0;
        max-width: 280px;
    }
    
    .cert-icon {
        @apply text-4xl;
    }
    
    .project-card {
        @apply mx-2;
        margin-bottom: 1.5rem;
    }
    
    /* Hero mobile improvements */
    #hero {
        min-height: 100vh;
        padding: 2rem 1rem;
    }
    
    /* Better spacing for mobile */
    .max-w-7xl {
        @apply px-4;
    }
    
    .section {
        @apply py-12;
    }
    
    /* Mobile typography */
    .about-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .timeline-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .project-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px !important;
    }
    
    /* Mobile-specific hero adjustments */
    #hero .flex-col {
        gap: 1rem;
    }
    
    #hero .cyber-btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Grid optimizations */
    .grid-cols-2 {
        @apply grid-cols-1;
    }
    
    .md\\:grid-cols-2 {
        @apply grid-cols-1;
    }
    
    .lg\\:grid-cols-3 {
        @apply grid-cols-1;
    }
    
    /* Certification cards mobile */
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .cert-card {
        text-align: center;
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    /* Skills mobile layout */
    .skills-title {
        font-size: 2.2rem;
        letter-spacing: 1.2px;
    }
    
    .skills-title::before {
        left: -35px;
    }
    
    .skills-title::after {
        right: -35px;
    }
    
    .skills-container {
        padding: 0 1.5rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1.2rem;
        padding: 1.5rem 0;
        justify-content: center;
        place-items: center;
    }
    
    .skill-tag {
        width: 100%;
        max-width: 160px;
        min-height: 48px;
        font-size: 0.9rem;
        padding: 1rem 1.3rem;
        border-radius: 14px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Projects medium screen layout */
    .projects-title {
        font-size: 2.6rem;
        letter-spacing: 2px;
    }
    
    .projects-title::before {
        left: -50px;
    }
    
    .projects-title::after {
        right: -50px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px !important;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--dark-border);
    border-top: 3px solid var(--cyber-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Extra Small Mobile Optimization */
@media (max-width: 400px) {
    .skills-container {
        padding: 0 0.5rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 0.8rem;
        padding: 1rem 0;
    }
    
    .skill-tag {
        max-width: 130px;
        min-height: 42px;
        font-size: 0.8rem;
        padding: 0.8rem 1rem;
        border-radius: 10px;
    }
    
    .skills-title {
        font-size: 1.8rem !important;
        letter-spacing: 1px;
    }
}

/* Matrix Rain Effect is now handled via JavaScript for better performance */

/* Utility Classes */
.text-gradient {
    background: linear-gradient(45deg, var(--cyber-green), var(--cyber-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.border-gradient {
    border-image: linear-gradient(45deg, var(--cyber-green), var(--cyber-blue)) 1;
}

.bg-grid {
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Print Styles */
@media print {
    .cyber-btn, .social-link, nav, #hero-canvas {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
} 