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

html {
    scroll-behavior: smooth;
    /* Force dark theme */
    color-scheme: dark;
}

body {
    font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    overflow-x: hidden;
    position: relative;
    /* Force dark theme on all devices */
    color-scheme: dark;
    -webkit-color-scheme: dark;
    -moz-color-scheme: dark;
}

/* Force dark theme for mobile browsers */
@media (prefers-color-scheme: light) {
    body {
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%) !important;
        color: #e0e0e0 !important;
    }
    
    .hero {
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%) !important;
    }
    
    .about {
        background: rgba(15, 15, 15, 0.5) !important;
    }
    
    .skills {
        background: rgba(15, 15, 15, 0.5) !important;
    }
    
    .education {
        background: rgba(15, 15, 15, 0.5) !important;
    }
    
    .navbar {
        background: rgba(10, 10, 10, 0.95) !important;
    }
    
    .footer {
        background: rgba(10, 10, 10, 0.95) !important;
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 136, 0.02) 0%, transparent 50%);
    animation: globalFloat 40s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes globalFloat {
    0%, 100% { opacity: 0.3; transform: translateY(0) scale(1); }
    33% { opacity: 0.5; transform: translateY(-20px) scale(1.1); }
    66% { opacity: 0.4; transform: translateY(20px) scale(0.9); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.loading-content {
    text-align: center;
}

.loading-logo {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: #00d4ff;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
    text-shadow: 0 0 20px #00d4ff;
}

.loading-text {
    font-family: 'Orbitron', monospace;
    color: #00d4ff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInOut 2s infinite;
    letter-spacing: 2px;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #ff00ff);
    border-radius: 2px;
    animation: loadingProgress 3s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; text-shadow: 0 0 20px #00d4ff; }
    50% { transform: scale(1.1); opacity: 0.8; text-shadow: 0 0 40px #00d4ff; }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    position: relative;
    background: linear-gradient(135deg, #00d4ff, #ff00ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    z-index: 3;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #ff00ff, #00ff88);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

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

.nav-logo .logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 20px #00d4ff;
}

.nav-logo .logo-text:hover {
    color: #ff00ff;
    transform: scale(1.1);
    text-shadow: 0 0 30px #ff00ff;
}

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

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Exo 2', sans-serif;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #ff00ff);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

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

.nav-link:hover {
    color: #00d4ff;
    text-shadow: 0 0 10px #00d4ff;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #00d4ff;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 10px #00d4ff;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Animated Circles */
.animated-circles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 2px solid rgba(0, 212, 255, 0.3);
    animation: circleFloat 8s ease-in-out infinite;
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.15), rgba(0, 255, 136, 0.1));
}

.circle-2 {
    width: 180px;
    height: 180px;
    top: 55%;
    right: 12%;
    animation-delay: 2s;
    background: linear-gradient(45deg, rgba(255, 0, 255, 0.15), rgba(0, 212, 255, 0.1));
}

.circle-3 {
    width: 90px;
    height: 90px;
    bottom: 25%;
    left: 15%;
    animation-delay: 4s;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.15), rgba(255, 0, 255, 0.1));
}

.circle-4 {
    width: 140px;
    height: 140px;
    top: 35%;
    right: 25%;
    animation-delay: 1s;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.15));
}

.circle-5 {
    width: 70px;
    height: 70px;
    bottom: 35%;
    right: 8%;
    animation-delay: 3s;
    background: linear-gradient(45deg, rgba(255, 0, 255, 0.1), rgba(0, 212, 255, 0.15));
}

@keyframes circleFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg) scale(1.1); 
        opacity: 1;
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    font-size: 2rem;
    animation: elementFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.element-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    top: 70%;
    right: 20%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 30%;
    left: 30%;
    animation-delay: 2s;
}

.element-4 {
    top: 40%;
    right: 35%;
    animation-delay: 3s;
}

.element-5 {
    bottom: 50%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes elementFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-25px) rotate(360deg) scale(1.2); 
        opacity: 1;
    }
}

/* Tech Grid */
.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
    opacity: 0.3;
    z-index: 0;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Particle Container */
.particle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: linear-gradient(45deg, #00d4ff, #ff00ff);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
    opacity: 0.6;
    z-index: 1;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    z-index: 2;
}

.greeting {
    font-size: 1.2rem;
    color: #00d4ff;
    margin-bottom: 1rem;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.5s forwards;
    font-family: 'Exo 2', sans-serif;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.8s; }
.title-line:nth-child(2) { animation-delay: 1.1s; }

.highlight {
    background: linear-gradient(135deg, #00d4ff, #ff00ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

/* Hero Subtitle with Typing Effect */
.hero-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideInUp 1s ease-out 1.7s forwards;
    font-family: 'Exo 2', sans-serif;
}

.typing-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #00d4ff;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
    animation-delay: 2s;
    animation-fill-mode: forwards;
}

.cursor {
    color: #00d4ff;
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #00d4ff; }
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: slideInUp 1s ease-out 2s forwards;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: 'Exo 2', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.8);
}

.btn-secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-secondary:hover {
    background: #00d4ff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.8);
}

.btn-tertiary {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.btn-tertiary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.8);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    animation: slideInRight 1s ease-out 1s forwards;
}

.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.profile-frame {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-photo {
    position: relative;
    width: 300px;
    height: 300px;
    z-index: 2;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #00d4ff;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.profile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.profile-photo:hover .profile-overlay {
    opacity: 1;
}

.profile-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00d4ff, #ff00ff, #00ff88);
    z-index: -1;
    animation: rotate 3s linear infinite;
    opacity: 0.2;
    filter: blur(10px);
}

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

.profile-border {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    z-index: 1;
}

.border-line {
    position: absolute;
    background: linear-gradient(45deg, #00d4ff, #ff00ff);
    border-radius: 2px;
    animation: borderRotate 4s linear infinite;
}

.border-line-1 {
    top: 0;
    left: 50%;
    width: 2px;
    height: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.border-line-2 {
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.border-line-3 {
    left: 0;
    top: 50%;
    width: 50%;
    height: 2px;
    transform: translateY(-50%);
    animation-delay: 2s;
}

.border-line-4 {
    right: 0;
    top: 50%;
    width: 50%;
    height: 2px;
    transform: translateY(-50%);
    animation-delay: 3s;
}

@keyframes borderRotate {
    0% { transform: translateX(-50%) rotate(0deg); opacity: 0.3; }
    50% { transform: translateX(-50%) rotate(180deg); opacity: 1; }
    100% { transform: translateX(-50%) rotate(360deg); opacity: 0.3; }
}

/* Floating Badges */
.floating-badges {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.badge {
    position: absolute;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: badgeFloat 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.badge i {
    font-size: 1rem;
}

.badge-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.badge-3 {
    top: 60%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes badgeFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-15px) rotate(5deg); 
        opacity: 1;
    }
}

/* Code Window */
.code-window {
    background: rgba(20, 20, 20, 0.95);
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.2);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
}

.code-window:hover {
    transform: perspective(1000px) rotateY(-5deg);
}

.code-header {
    background: rgba(30, 30, 30, 0.9);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.code-dots {
    display: flex;
    gap: 0.5rem;
}

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.code-dots span:nth-child(2) {
    background: #ffbd2e;
}

.code-dots span:nth-child(3) {
    background: #27ca3f;
}

.code-title {
    color: #888;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
}

.code-content {
    padding: 1.5rem;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-line {
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: typewriter 0.1s ease-out forwards;
}

.code-line:nth-child(1) { animation-delay: 2.5s; }
.code-line:nth-child(2) { animation-delay: 2.7s; }
.code-line:nth-child(3) { animation-delay: 2.9s; }
.code-line:nth-child(4) { animation-delay: 3.1s; }
.code-line:nth-child(5) { animation-delay: 3.3s; }
.code-line:nth-child(6) { animation-delay: 3.5s; }
.code-line:nth-child(7) { animation-delay: 3.7s; }
.code-line:nth-child(8) { animation-delay: 3.9s; }
.code-line:nth-child(9) { animation-delay: 4.1s; }

.indent {
    margin-left: 1.5rem;
}

.keyword {
    color: #ff79c6;
}

.variable {
    color: #f8f8f2;
}

.string {
    color: #f1fa8c;
}

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

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid #00d4ff;
    border-bottom: 3px solid #00d4ff;
    transform: rotate(45deg);
    animation: arrowBounce 2s infinite;
}

@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(-10px); }
    60% { transform: rotate(45deg) translateY(-5px); }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typewriter {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* About Section */
.about {
    padding: 8rem 0;
    background: rgba(15, 15, 15, 0.5);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(0, 212, 255, 0.03) 50%, 
        transparent 70%);
    animation: backgroundShift 15s ease-in-out infinite;
    z-index: -2;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(-100%) translateY(-100%); }
    50% { transform: translateX(100%) translateY(100%); }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.about-text p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease-out forwards;
}

.about-text p:nth-child(1) { animation-delay: 0.2s; }
.about-text p:nth-child(2) { animation-delay: 0.4s; }
.about-text p:nth-child(3) { animation-delay: 0.6s; }

/* Experience Section */
.experience {
    padding: 8rem 0;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #00d4ff, #ff00ff, #00ff88);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    z-index: -2;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 4px solid #0a0a0a;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 2rem;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    left: 55%;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.timeline-content h3 {
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.company {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.duration {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.timeline-achievements {
    list-style: none;
    margin-bottom: 1.5rem;
}

.timeline-achievements li {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.timeline-achievements li::before {
    content: '▸';
    color: #00d4ff;
    position: absolute;
    left: 0;
}

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

.tech-tag {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

/* Skills Section */
.skills {
    padding: 8rem 0;
    background: rgba(15, 15, 15, 0.5);
    position: relative;
    overflow: hidden;
}

.skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 0, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
    animation: skillsGlow 20s ease-in-out infinite;
    z-index: -2;
}

@keyframes skillsGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

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

.skill-category {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease-out forwards;
}

.skill-category:nth-child(1) { animation-delay: 0.2s; }
.skill-category:nth-child(2) { animation-delay: 0.4s; }
.skill-category:nth-child(3) { animation-delay: 0.6s; }

.skill-category h3 {
    color: #00d4ff;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Orbitron', monospace;
}

.skill-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.skill-item {
    background: rgba(0, 212, 255, 0.05);
    color: #e0e0e0;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.skill-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

/* Projects Section */
.projects {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 212, 255, 0.02) 25%, 
        rgba(255, 0, 255, 0.02) 50%, 
        rgba(0, 255, 136, 0.02) 75%, 
        transparent 100%);
    animation: projectWave 25s linear infinite;
    z-index: -2;
}

@keyframes projectWave {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.project-card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease-out forwards;
    position: relative;
}

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

.project-card:hover::after {
    left: 100%;
}

.project-card:nth-child(1) { animation-delay: 0.2s; }
.project-card:nth-child(2) { animation-delay: 0.4s; }
.project-card:nth-child(3) { animation-delay: 0.6s; }
.project-card:nth-child(4) { animation-delay: 0.8s; }

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 212, 255, 0.2),
        0 0 20px rgba(0, 212, 255, 0.1),
        inset 0 0 20px rgba(0, 212, 255, 0.05);
}

.project-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-placeholder {
    font-size: 3rem;
    font-weight: 800;
    color: #00d4ff;
    opacity: 0.7;
    font-family: 'Orbitron', monospace;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.project-link:hover {
    background: #00d4ff;
    color: #000;
    transform: scale(1.1);
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

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

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.project-date, .project-users {
    font-size: 0.8rem;
    color: #888;
    background: rgba(0, 212, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

/* Education Section */
.education {
    padding: 8rem 0;
    background: rgba(15, 15, 15, 0.5);
    position: relative;
    overflow: hidden;
}

.education::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg at 50% 50%, 
        transparent 0deg, 
        rgba(0, 212, 255, 0.02) 90deg, 
        transparent 180deg, 
        rgba(255, 0, 255, 0.02) 270deg, 
        transparent 360deg);
    animation: educationRotate 30s linear infinite;
    z-index: -2;
}

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

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

.education-card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease-out 0.5s forwards;
    transition: all 0.3s ease;
}

.education-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.education-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    flex-shrink: 0;
}

.education-content h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.institution {
    color: #00d4ff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.degree-type {
    color: #888;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 0, 255, 0.03) 0%, transparent 50%);
    animation: contactPulse 18s ease-in-out infinite;
    z-index: -2;
}

@keyframes contactPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

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

.contact-info {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 1s ease-out 0.5s forwards;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
}

.contact-details h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #ff00ff;
}

.contact-form {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 1s ease-out 0.5s forwards;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    color: #888;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.social-link:hover {
    background: #00d4ff;
    color: #000;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        padding: 2rem 0;
    }

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

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

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

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

    .profile-photo {
        width: 250px;
        height: 250px;
    }

    .code-window {
        max-width: 350px;
        transform: perspective(1000px) rotateY(-5deg);
    }

    .floating-badges {
        display: none;
    }

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

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

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        left: 0;
        width: calc(100% - 40px);
        margin-left: 40px;
    }

    .timeline-marker {
        left: 20px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

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

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

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

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

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

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

    .profile-photo {
        width: 200px;
        height: 200px;
    }

    .code-window {
        max-width: 300px;
        transform: none;
    }

    .floating-elements {
        display: none;
    }

    .animated-circles {
        display: none;
    }
}

/* Enhanced Scroll Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typewriter {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Enhanced Hover Effects */
.profile-img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 80px rgba(0, 212, 255, 0.8);
}

.badge:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4);
}

.element:hover {
    transform: scale(1.3) rotate(180deg);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
}

.circle:hover {
    transform: scale(1.2) rotate(90deg);
    border-color: rgba(0, 212, 255, 0.8);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

/* Enhanced Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: #00d4ff;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
    text-shadow: 0 0 20px #00d4ff;
}

.loading-text {
    font-family: 'Orbitron', monospace;
    color: #00d4ff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInOut 2s infinite;
    letter-spacing: 2px;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #ff00ff);
    border-radius: 2px;
    animation: loadingProgress 3s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; text-shadow: 0 0 20px #00d4ff; }
    50% { transform: scale(1.1); opacity: 0.8; text-shadow: 0 0 40px #00d4ff; }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid #00d4ff;
    border-bottom: 3px solid #00d4ff;
    transform: rotate(45deg);
    animation: arrowBounce 2s infinite;
}

.scroll-text {
    color: #00d4ff;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-family: 'Exo 2', sans-serif;
    opacity: 0.8;
}

@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(-10px); }
    60% { transform: rotate(45deg) translateY(-5px); }
}

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
}

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

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

/* Enhanced Section Transitions */
section {
    transition: all 0.8s ease;
}

section:hover {
    transform: translateY(-5px);
}

/* Enhanced Typography */
.highlight {
    background: linear-gradient(135deg, #00d4ff, #ff00ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    animation: highlightGlow 3s ease-in-out infinite;
}

@keyframes highlightGlow {
    0%, 100% { 
        filter: brightness(1) saturate(1);
        text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    }
    50% { 
        filter: brightness(1.2) saturate(1.3);
        text-shadow: 0 0 50px rgba(0, 212, 255, 0.8);
    }
}

/* Enhanced Background Effects */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    animation: backgroundPulse 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes backgroundPulse {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1) rotate(0deg);
    }
    33% { 
        opacity: 0.5; 
        transform: scale(1.1) rotate(120deg);
    }
    66% { 
        opacity: 0.4; 
        transform: scale(0.9) rotate(240deg);
    }
}

/* Enhanced Section Backgrounds - Each with Unique Theme */

/* Hero Section - Cyberpunk Matrix Theme */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    animation: backgroundPulse 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

/* About Section - Digital Circuit Theme */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.03) 25%, transparent 50%),
        linear-gradient(0deg, transparent 0%, rgba(0, 255, 136, 0.03) 25%, transparent 50%);
    background-size: 100px 100px, 100px 100px;
    animation: codeMatrix 15s linear infinite;
    pointer-events: none;
}

@keyframes codeMatrix {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

/* Experience Section - Blockchain Network Theme */
.experience {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 0, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 212, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
    animation: blockchainFlow 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes blockchainFlow {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1) rotate(0deg); 
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }
    33% { 
        opacity: 0.6; 
        transform: scale(1.1) rotate(120deg); 
        background-position: 100% 0%, 0% 100%, 50% 50%;
    }
    66% { 
        opacity: 0.4; 
        transform: scale(0.9) rotate(240deg); 
        background-position: 0% 100%, 100% 0%, 50% 50%;
    }
}

/* Skills Section - AI Neural Network Theme */
.skills {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        conic-gradient(from 0deg at 20% 20%, 
            transparent 0deg, 
            rgba(0, 212, 255, 0.03) 90deg, 
            transparent 180deg, 
            rgba(255, 0, 255, 0.03) 270deg, 
            transparent 360deg),
        conic-gradient(from 180deg at 80% 80%, 
            transparent 0deg, 
            rgba(0, 255, 136, 0.03) 90deg, 
            transparent 180deg, 
            rgba(255, 0, 255, 0.03) 270deg, 
            transparent 360deg);
    animation: neuralRotate 30s linear infinite;
    pointer-events: none;
}

@keyframes neuralRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Projects Section - Cloud Computing Theme */
.projects {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(255, 0, 255, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
    animation: cloudFloat 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cloudFloat {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateY(0) scale(1); 
    }
    33% { 
        opacity: 0.6; 
        transform: translateY(-20px) scale(1.1); 
    }
    66% { 
        opacity: 0.4; 
        transform: translateY(20px) scale(0.9); 
    }
}

/* Education Section - Quantum Computing Theme */
.education {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.education::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 0%, rgba(255, 0, 255, 0.03) 25%, transparent 50%),
        linear-gradient(-45deg, transparent 0%, rgba(0, 212, 255, 0.03) 25%, transparent 50%),
        linear-gradient(90deg, transparent 0%, rgba(0, 255, 136, 0.02) 25%, transparent 50%);
    background-size: 120px 120px, 120px 120px, 120px 120px;
    animation: quantumWave 18s linear infinite;
    pointer-events: none;
}

@keyframes quantumWave {
    0% { 
        transform: translate(0, 0) rotate(0deg); 
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }
    100% { 
        transform: translate(120px, 120px) rotate(360deg); 
        background-position: 100% 100%, 0% 0%, 50% 50%;
    }
}

/* Contact Section - Cybersecurity Theme */
.contact {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 0, 0.02) 0%, transparent 50%);
    animation: securityScan 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes securityScan {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1) rotate(0deg); 
    }
    25% { 
        opacity: 0.6; 
        transform: scale(1.05) rotate(90deg); 
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.1) rotate(180deg); 
    }
    75% { 
        opacity: 0.5; 
        transform: scale(1.05) rotate(270deg); 
    }
}

/* Footer - Dark Tech Theme */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.02) 50%, transparent 100%);
    animation: footerGlow 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes footerGlow {
    0%, 100% { opacity: 0.3; transform: translateX(-100%); }
    50% { opacity: 0.6; transform: translateX(100%); }
}

/* Additional Visual Elements for Each Section */

/* Experience Section - Add Blockchain Nodes */
.experience::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 136, 0.1) 2px, transparent 2px);
    background-size: 60px 60px, 80px 80px, 100px 100px;
    animation: nodeFloat 12s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-15px) scale(1.1); opacity: 0.6; }
}

/* Skills Section - Add Neural Connections */
.skills::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(0, 212, 255, 0.1) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 0, 255, 0.1) 50%, transparent 60%);
    background-size: 40px 40px, 60px 60px;
    animation: neuralConnect 8s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes neuralConnect {
    0% { transform: translateX(0) rotate(0deg); }
    100% { transform: translateX(40px) rotate(360deg); }
}

/* Projects Section - Add Cloud Particles */
.projects::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.06) 1px, transparent 1px);
    background-size: 30px 30px, 50px 50px, 70px 70px;
    animation: cloudParticles 15s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes cloudParticles {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-100px) scale(1.2); }
}

/* Education Section - Add Quantum Particles */
.education::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 0, 255, 0.06) 3px, transparent 3px),
        radial-gradient(circle at 75% 75%, rgba(0, 212, 255, 0.06) 3px, transparent 3px);
    background-size: 80px 80px, 120px 120px;
    animation: quantumParticles 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes quantumParticles {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
    50% { transform: translate(20px, -20px) rotate(180deg); opacity: 0.6; }
}

/* Contact Section - Add Security Grid */
.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: securityGrid 10s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes securityGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}
