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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a;
    overflow-x: hidden;
    cursor: none;
}

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

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: #007bff;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 123, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s ease;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #0f0f23 50%, #1a1a2e 75%, #0a0a0a 100%);
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 0, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.03) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(255, 0, 255, 0.03) 0%, transparent 50%);
    z-index: 2;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 255, 0, 0.2);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 70%;
    animation-delay: 1s;
}

.shape-5 {
    width: 140px;
    height: 140px;
    top: 40%;
    left: 50%;
    animation-delay: 3s;
}

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

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

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
}

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

.nav-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo a:hover {
    color: #007bff;
}

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

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

.nav-link:hover {
    color: #007bff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: width 0.3s ease;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    padding: 0 60px;
    gap: 80px;
    margin-left: -30px;
}

.hero-content {
    flex: 1;
    max-width: 800px;
    z-index: 10;
    position: relative;
}

.hero-text {
    padding-left: 45px;
    margin-left: -10px;
}

.hero-greeting {
    font-size: 3.2rem;
    font-weight: 400;
    color: #00ff00;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 700px;
    font-weight: 500;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Tech Stack Icons */
.tech-stack {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 1.5rem 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 700px;
    margin-left: -30px;
}

.tech-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.tech-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(0, 255, 0, 0.2);
    border-color: rgba(0, 255, 0, 0.6);
    box-shadow: 0 10px 25px rgba(0, 255, 0, 0.3);
}

.tech-icon i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.tech-icon:nth-child(1) i { color: #e34f26; } /* HTML5 */
.tech-icon:nth-child(2) i { color: #1572b6; } /* CSS3 */
.tech-icon:nth-child(3) i { color: #f7df1e; } /* JavaScript */
.tech-icon:nth-child(4) i { color: #61dafb; } /* React */
.tech-icon:nth-child(5) i { color: #dd0031; } /* Angular */
.tech-icon:nth-child(6) i { color: #68a063; } /* Node.js */
.tech-icon:nth-child(7) i { color: #3776ab; } /* Python */
.tech-icon:nth-child(8) i { color: #ed8b00; } /* Java */
.tech-icon:nth-child(9) i { color: #00599c; } /* C Programming */
.tech-icon:nth-child(10) i { color: #47a248; } /* MongoDB */
.tech-icon:nth-child(11) i { color: #f05032; } /* Git */

.tech-icon:hover i {
    color: #00ff00;
    text-shadow: 0 0 15px currentColor;
    transform: scale(1.2);
}

/* Glowing animation for tech icons */
.tech-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.4), transparent);
    transition: left 0.5s;
}

.tech-icon:hover::before {
    left: 100%;
}

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

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #ff6b9d;
    color: white;
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 8px;
}

.btn-primary:hover {
    background: #e84393;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 8px;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-image img {
    width: 320px;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid rgba(0, 255, 0, 0.5);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3), 0 0 60px rgba(0, 255, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.hero-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.5), 0 0 80px rgba(0, 255, 0, 0.2);
}

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

.profile-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 5;
}

.profile-img:hover {
    transform: scale(1.05);
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-decoration {
    position: absolute;
    top: -20px;
    right: -50px;
    z-index: 1;
}

.code-elements {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 0, 0.3);
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #00ff00;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
    backdrop-filter: blur(10px);
}

.code-snippet {
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.4);
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: #00ffff;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1;
    opacity: 0.8;
    transition: all 0.3s ease;
    max-width: 200px;
}

.code-snippet:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.code-snippet-1 {
    top: -30px;
    left: -80px;
    border-color: rgba(0, 255, 255, 0.4);
    color: #00ffff;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.code-snippet-2 {
    top: 50px;
    right: -100px;
    border-color: rgba(255, 165, 0, 0.4);
    color: #ffa500;
    text-shadow: 0 0 5px rgba(255, 165, 0, 0.5);
}

.code-snippet-3 {
    bottom: -20px;
    left: -60px;
    border-color: rgba(255, 0, 255, 0.4);
    color: #ff00ff;
    text-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
}

.code-snippet pre {
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.code-snippet code {
    font-size: inherit;
    line-height: 1.3;
}

.code-line {
    margin: 2px 0;
    opacity: 0;
    animation: typewriter 0.5s ease-in-out forwards;
}

.code-line:nth-child(1) { animation-delay: 0.5s; }
.code-line:nth-child(2) { animation-delay: 1s; }
.code-line:nth-child(3) { animation-delay: 1.5s; }
.code-line:nth-child(4) { animation-delay: 2s; }

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

/* Water Ripple Effect */
.ripple-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.6) 0%, rgba(0, 255, 255, 0.3) 30%, rgba(0, 255, 255, 0.1) 60%, transparent 80%);
    transform: scale(0);
    animation: rippleEffect 2s ease-out forwards;
    pointer-events: none;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4), 0 0 60px rgba(0, 255, 255, 0.2);
}

.ripple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.5) 0%, rgba(0, 255, 0, 0.2) 40%, rgba(0, 255, 0, 0.1) 70%, transparent 85%);
    transform: translate(-50%, -50%) scale(0);
    animation: rippleEffect 2.3s ease-out 0.15s forwards;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.3);
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.4) 0%, rgba(255, 0, 255, 0.15) 50%, rgba(255, 0, 255, 0.05) 75%, transparent 90%);
    transform: translate(-50%, -50%) scale(0);
    animation: rippleEffect 2.8s ease-out 0.3s forwards;
    box-shadow: 0 0 50px rgba(255, 0, 255, 0.25);
}

@keyframes rippleEffect {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    30% {
        opacity: 0.9;
    }
    70% {
        opacity: 0.6;
    }
    100% {
        transform: scale(8);
        opacity: 0;
    }
}

/* Multiple ripple waves */
.ripple.wave-1 {
    animation-duration: 1.8s;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.8) 0%, rgba(0, 255, 255, 0.4) 30%, rgba(0, 255, 255, 0.2) 60%, transparent 80%);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.6), 0 0 80px rgba(0, 255, 255, 0.3);
}

.ripple.wave-2 {
    animation-duration: 2.2s;
    animation-delay: 0.1s;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.7) 0%, rgba(0, 255, 0, 0.3) 40%, rgba(0, 255, 0, 0.15) 70%, transparent 85%);
    box-shadow: 0 0 50px rgba(0, 255, 0, 0.5), 0 0 100px rgba(0, 255, 0, 0.2);
}

.ripple.wave-3 {
    animation-duration: 2.8s;
    animation-delay: 0.2s;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.6) 0%, rgba(255, 0, 255, 0.25) 50%, rgba(255, 0, 255, 0.1) 75%, transparent 90%);
    box-shadow: 0 0 60px rgba(255, 0, 255, 0.4), 0 0 120px rgba(255, 0, 255, 0.15);
}

/* Floating CS Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.floating-icon {
    position: absolute;
    font-size: 24px;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    animation: float-cs 6s ease-in-out infinite, iconGlow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
}

.floating-icon:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    color: #00ff00;
}

.floating-icon:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
    color: #00ffff;
}

.floating-icon:nth-child(3) {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
    color: #ff00ff;
}

.floating-icon:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
    color: #ffff00;
}

.floating-icon:nth-child(5) {
    top: 40%;
    left: 50%;
    animation-delay: 4s;
    color: #00ff00;
}

.floating-icon:nth-child(6) {
    bottom: 30%;
    left: 20%;
    animation-delay: 5s;
    color: #00ffff;
}

@keyframes iconGlow {
    0% {
        text-shadow: 0 0 5px currentColor;
        opacity: 0.7;
    }
    100% {
        text-shadow: 0 0 20px currentColor, 0 0 30px currentColor;
        opacity: 1;
    }
}

@keyframes float-cs {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 1;
    }
}

/* Binary Background Effect */
.binary-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.binary-column {
    position: absolute;
    top: -100%;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #00ff00;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    animation: binaryFall 8s linear infinite, binaryBlink 0.5s ease-in-out infinite alternate;
    opacity: 0.3;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

@keyframes binaryFall {
    0% {
        top: -100%;
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes binaryBlink {
    0% {
        opacity: 0.1;
    }
    100% {
        opacity: 0.6;
    }
}

/* Binary Matrix Effect */
.binary-matrix {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #00ff00;
    opacity: 0.4;
    z-index: 5;
    pointer-events: none;
}

.binary-line {
    margin: 2px 0;
    animation: matrixBlink 2s ease-in-out infinite;
    text-shadow: 0 0 3px rgba(0, 255, 0, 0.7);
}

.binary-line:nth-child(1) { animation-delay: 0s; }
.binary-line:nth-child(2) { animation-delay: 0.3s; }
.binary-line:nth-child(3) { animation-delay: 0.6s; }
.binary-line:nth-child(4) { animation-delay: 0.9s; }
.binary-line:nth-child(5) { animation-delay: 1.2s; }
.binary-line:nth-child(6) { animation-delay: 1.5s; }

@keyframes matrixBlink {
    0%, 50% {
        opacity: 0.2;
    }
    25%, 75% {
        opacity: 0.8;
    }
}

.profile-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-img:hover img {
    transform: scale(1.1);
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #111111;
}

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

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

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

.skills h4 {
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b0b0b0;
    font-weight: 500;
}

/* Projects Section */
.projects {
    background: #0a0a0a;
}

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

.project-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 123, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.project-card:hover .project-image img {
    transform: scale(1.1);
}

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

.project-link {
    width: 50px;
    height: 50px;
    background: white;
    color: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    transform: scale(1.1);
    background: #007bff;
    color: white;
}

.project-content {
    padding: 2rem;
}

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

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

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

.tech-tag {
    background: #1a1a2e;
    color: #64b5f6;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-content .btn {
    margin-top: 1.5rem;
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.project-content .btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Contact Section */
.contact {
    background: #111111;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

.contact-details p {
    color: #b0b0b0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.social-link:hover {
    background: #007bff;
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #0a0a0a;
    color: #e0e0e0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.error-message {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: block;
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: #e0e0e0;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #1a1a1a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 80px 20px 40px;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 0 20px;
    }
    
    .hero-text {
        padding-left: 0;
    }
    
    .hero-greeting {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }
    
    .profile-img {
        width: 250px;
        height: 250px;
    }
    
    .profile-decoration {
        position: static;
        margin-top: 20px;
        margin-left: 0;
        font-size: 12px;
    }
    
    .floating-icon {
        font-size: 18px;
    }

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

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

    .hero-buttons {
        justify-content: center;
    }

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

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

    .about-stats {
        flex-direction: row;
        gap: 1rem;
    }

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

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

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

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

    .btn {
        width: 200px;
        text-align: center;
    }
}

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

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

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

    .about-stats {
        flex-direction: column;
    }

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

    .skill-tags {
        justify-content: center;
    }

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

    .tech-item {
        flex-direction: column;
        gap: 0.3rem;
        font-size: 0.8rem;
    }

    .tech-item i {
        font-size: 1.2rem;
    }
}

/* Tech Stack About Section */
.tech-stack-about {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: flex-start;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.3);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 500;
}

.tech-item:hover {
    background: rgba(0, 123, 255, 0.2);
    border-color: rgba(0, 123, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.tech-item i {
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.tech-item:hover i {
    transform: scale(1.1);
    text-shadow: 0 0 8px currentColor;
}

/* Specific tech icon colors */
.tech-item:nth-child(1) i { color: #e34f26; } /* HTML5 */
.tech-item:nth-child(2) i { color: #1572b6; } /* CSS3 */
.tech-item:nth-child(3) i { color: #f7df1e; } /* JavaScript */
.tech-item:nth-child(4) i { color: #61dafb; } /* React */
.tech-item:nth-child(5) i { color: #dd0031; } /* Angular */
.tech-item:nth-child(6) i { color: #339933; } /* Node.js */
.tech-item:nth-child(7) i { color: #3776ab; } /* Python */
.tech-item:nth-child(8) i { color: #007396; } /* Java */
.tech-item:nth-child(9) i { color: #00599c; } /* C Programming */
.tech-item:nth-child(10) i { color: #47a248; } /* MongoDB */
.tech-item:nth-child(11) i { color: #f05032; } /* Git */
.tech-item:nth-child(12) i { color: #ffca28; } /* Firebase */
.tech-item:nth-child(13) i { color: #ff6f00; } /* Firestore */
