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

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --neon-blue: #00f5ff;
    --neon-purple: #bf00ff;
    --neon-green: #00ff88;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-accent: #a0aec0;
}

.noscript-fallback {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0c0c0c;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10001;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
#mouse-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

#cursor-trail {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--neon-purple);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: screen;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 1s ease, visibility 1s ease;
}

.loading-content {
    text-align: center;
    color: var(--text-primary);
}

.loading-logo {
    position: relative;
    margin-bottom: 30px;
}

.logo-text {
    font-size: 4rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.loading-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--neon-blue);
    animation: particleOrbit 3s linear infinite;
}

.loading-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 2px;
    animation: loadingProgress 3s ease-in-out infinite;
}

/* 3D Background Canvas */
#three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

#particles-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Main Container */
.resume-container {
    position: relative;
    z-index: 3;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
}

.profile-3d-container {
    position: relative;
}

.avatar-3d {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform-style: preserve-3d;
    animation: avatarFloat 6s ease-in-out infinite;
    box-shadow: 
        0 0 60px rgba(102, 126, 234, 0.4),
        inset 0 0 60px rgba(255, 255, 255, 0.1);
}

.avatar-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.initials-3d {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.avatar-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--neon-blue), var(--neon-purple), var(--neon-green), var(--neon-blue));
    z-index: -1;
    animation: rotateGlow 4s linear infinite;
    filter: blur(20px);
}

.avatar-orbit {
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: orbitRotate 8s linear infinite;
}

.orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--neon-blue);
}

.orbit-dot:nth-child(1) { top: -4px; left: 50%; transform: translateX(-50%); }
.orbit-dot:nth-child(2) { top: 50%; right: -4px; transform: translateY(-50%); }
.orbit-dot:nth-child(3) { bottom: -4px; left: 50%; transform: translateX(-50%); }

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-name {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.name-part {
    display: block;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* animation: nameGlow 3s ease-in-out infinite alternate; */
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--neon-green);
    font-weight: 600;
}

.typing-text {
    border-right: 2px solid var(--neon-green);
}

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

.hero-description {
    font-size: 1.2rem;
    color: var(--text-accent);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-blue);
    text-shadow: 0 0 20px var(--neon-blue);
    animation: numberPulse 2s ease-in-out infinite;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-accent);
    animation: bounce 2.5s infinite;
}

.scroll-mouse {
    width: 25px;
    height: 45px;
    border: 2px solid var(--text-accent);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--neon-blue);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

/* Main Container */
.main-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    min-height: 100vh;
}

/* Sidebar Styling */
.sidebar {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.sidebar-section {
    margin-bottom: 40px;
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 10px currentColor);
}

/* Contact Section */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.contact-item::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;
}

.contact-item:hover::before {
    left: 100%;
}

.floating-element {
    animation: floatElement 4s ease-in-out infinite;
}

.contact-icon {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    filter: drop-shadow(0 0 8px currentColor);
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

/* Skills Section */
.morphing-skill {
    margin-bottom: 25px;
    position: relative;
}

.skill-name {
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-secondary);
}

.skill-bar-3d {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.skill-progress-3d {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 10px;
    position: relative;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.skill-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: 12px;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.morphing-skill:hover .skill-glow {
    opacity: 0.7;
}

/* Tech Stack */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.floating-chip {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.floating-chip:hover {
    background: var(--primary-gradient);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.floating-chip::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;
}

.floating-chip:hover::before {
    left: 100%;
}

/* Social Links */
.interactive-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 15px;
    color: inherit;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.interactive-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.link-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
    z-index: -1;
}

.interactive-button:hover .link-glow {
    opacity: 0.2;
}

.social-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px currentColor);
}

/* Main Content */
.main-content {
    overflow: hidden;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.section {
    margin-bottom: 60px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-primary);
    position: relative;
}

.title-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}

.title-line {
    flex: 1;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 1px;
    position: relative;
}

.title-line::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 30%;
    height: 4px;
    background: var(--neon-blue);
    border-radius: 2px;
    box-shadow: 0 0 15px var(--neon-blue);
    animation: lineGlow 3s ease-in-out infinite;
}

/* Glass Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.glass-card:hover::before {
    left: 100%;
}

/* Experience Section */
.experience-timeline {
    position: relative;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-gradient);
    border-radius: 1px;
}

.job-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.glitch-text {
    position: relative;
    animation: glitchText 8s infinite steps(1);
}

.company {
    font-size: 1rem;
    color: var(--neon-blue);
    font-weight: 600;
    margin-bottom: 12px;
    text-shadow: 0 0 10px var(--neon-blue);
}

.floating-badge {
    background: var(--secondary-gradient);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    animation: badgeFloat 3s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.job-description {
    color: var(--text-accent);
    line-height: 1.6;
    margin-top: 15px;
}

.experience-glow, .education-glow, .project-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    border-radius: 20px;
    filter: blur(20px);
    z-index: -1;
    transition: opacity 0.3s ease;
}

.glass-card:hover .experience-glow,
.glass-card:hover .education-glow,
.floating-card:hover .project-glow {
    opacity: 0.1;
}

/* Projects Section */
.projects-grid {
    display: grid;
    gap: 30px;
}

.project-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.floating-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* animation: cardFloat 6s ease-in-out infinite; */
}

.floating-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.project-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px currentColor);
    /* animation: iconSpin 10s linear infinite; */
}

.holographic-text {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-green), var(--neon-blue));
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: holographicShift 3s ease-in-out infinite;
}

.project-description {
    color: var(--text-accent);
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pulse-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: tagPulse 2s ease-in-out infinite;
}

/* Background Section */
.neon-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.neon-card:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
    transform: translateX(10px);
}

.background-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px currentColor);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Download Button */
.download-section {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
}

.futuristic-button {
    position: relative;
    background: transparent;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    border-radius: 50px;
    z-index: -2;
}

.btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: 50px;
    filter: blur(10px);
    opacity: 0;
    z-index: -3;
    transition: opacity 0.3s ease;
}

.futuristic-button:hover .btn-glow {
    opacity: 0.7;
}

.futuristic-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.download-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 10px currentColor);
}

.btn-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    pointer-events: none;
}

/* Animations */
@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(102, 126, 234, 0.8)); }
}

@keyframes particleOrbit {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes avatarFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(180deg); }
}

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

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

@keyframes nameGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(102, 126, 234, 0.8)); }
}

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

@keyframes numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

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

@keyframes glitchText {
    0% { transform: translateX(0); }
    95% { transform: translateX(0); }
    96% { transform: translateX(-3px); }
    97% { transform: translateX(3px); }
    98% { transform: translateX(-2px); }
    99% { transform: translateX(2px); }
    100% { transform: translateX(0); }
}

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

/* @keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
} */

/* @keyframes iconSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
} */

@keyframes holographicShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes tagPulse {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.4); }
}

@keyframes lineGlow {
    0%, 100% { width: 30%; }
    50% { width: 60%; }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .main-container {
        grid-template-columns: 320px 1fr;
        gap: 30px;
        padding: 40px 30px;
    }
    
    .hero-content {
        gap: 60px;
    }
    
    .hero-name {
        font-size: 3.5rem;
    }
}

@media (max-width: 1200px) {
    .main-container {
        grid-template-columns: 300px 1fr;
        gap: 25px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-name {
        font-size: 3rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    body {
        cursor: default;
    }
    
    #mouse-follower,
    #cursor-trail {
        display: none;
    }
    
    .main-container {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 30px;
    }
    
    .sidebar {
        position: relative;
        top: auto;
        order: 2;
    }
    
    .hero-content {
        padding: 0 20px;
        gap: 30px;
    }
    
    .avatar-3d {
        width: 150px;
        height: 150px;
    }
    
    .initials-3d {
        font-size: 3rem;
    }
    
    .hero-name {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .title-number {
        font-size: 2rem;
    }
    
    .download-section {
        position: static;
        text-align: center;
        margin-top: 40px;
    }
    
    .futuristic-button {
        width: 100%;
        justify-content: center;
        margin: 0 20px;
    }
    
    #three-canvas {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-name {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .avatar-3d {
        width: 120px;
        height: 120px;
    }
    
    .initials-3d {
        font-size: 2.5rem;
    }
}

/* Print Styles for PDF Generation */
@media print {
    html, body {
        background-color: #ffffff !important;
        color: #000000 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .resume-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        box-shadow: none;
        border: none;
    }

    #three-canvas,
    #particles-background,
    #mouse-follower,
    #cursor-trail,
    .download-section,
    .hero-scroll-indicator {
        display: none !important;
    }

    .hero-section {
        height: auto;
        padding: 40px 20px;
        background: #f8f9fa;
        text-align: center;
        page-break-after: always;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-name, .hero-title, .hero-description {
        color: #212529 !important;
    }

    .name-part {
        background: none;
        -webkit-text-fill-color: initial;
    }

    .stat-number {
        color: #0d6efd !important;
    }

    .stat-label {
        color: #6c757d !important;
    }

    .main-container {
        display: block !important;
        padding: 20px;
    }

    .sidebar {
        position: static !important;
        width: 100%;
        box-shadow: none;
        background: transparent !important;
        border: 1px solid #dee2e6;
        margin-bottom: 20px;
        padding: 20px;
    }

    .content-grid {
        grid-template-columns: 1fr !important;
    }

    .left-column, .right-column {
        padding: 0;
    }
    
    .section {
        page-break-inside: avoid;
    }

    .glass-card, .floating-card, .neon-card {
        background: #f8f9fa !important;
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
        backdrop-filter: none;
    }

    .glitch-text, .holographic-text {
        color: #212529 !important;
        -webkit-text-fill-color: initial;
        background: none;
    }

    .company {
        color: #0d6efd !important;
    }

    .floating-badge {
        background: #0d6efd !important;
        color: #ffffff !important;
    }
    
    .tech-chip {
        background: #e9ecef !important;
        color: #212529 !important;
    }

    .pulse-tag {
        animation: none;
    }
} 