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

body {
    font-family: 'Fira Code', monospace;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--bg-color);
}

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

.glass-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.01);
}

.gradient-circles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -3;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.circle-1 {
    background: #64ffda;
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: float-1 15s infinite;
}

.circle-2 {
    background: #7928ca;
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
    animation: float-2 20s infinite;
}

.circle-3 {
    background: #0070f3;
    width: 350px;
    height: 350px;
    top: 50%;
    right: 15%;
    animation: float-3 18s infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 50px); }
}

@keyframes float-2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(60px, -60px); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, -30px); }
}

/* Import new fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&display=swap');

/* Enhanced Header Styles */
.nav-container {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 12, 16, 0.3);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

/* Add padding to main content to prevent header overlap */
main {
    padding-top: 80px; /* Adjust this value based on your header height */
}

/* Add a subtle gradient overlay */
.nav-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(100, 255, 218, 0.02),
        rgba(0, 112, 243, 0.02)
    );
    pointer-events: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 2rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, 
        rgba(100, 255, 218, 0.1), 
        rgba(0, 112, 243, 0.1)
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: all 0.3s ease;
}

.logo-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(90deg);
    background: rgba(100, 255, 218, 0.2);
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), #00ff94);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin-right: 2rem;
}

.nav-link {
    font-family: 'Fira Code', monospace;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid transparent;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-link i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(100, 255, 218, 0.05);
    color: var(--primary-color);
}

.nav-link:hover i {
    transform: translateY(-2px);
}

/* Active link style */
.nav-link.active {
    color: var(--primary-color);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .logo {
        margin-left: 0;
    }

    .nav-links {
        gap: 0.5rem;
        margin-right: 0;
    }

    .nav-link {
        padding: 0.6rem;
        font-size: 0.8rem;
    }

    .nav-link span {
        display: none;
    }

    .nav-link i {
        font-size: 1.2rem;
    }
}

/* Update section positioning */
.section {
    min-height: 100vh;
    padding-top: 80px; /* Add padding to account for fixed header */
    margin-top: -80px; /* Offset the padding for smooth scrolling */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        800px circle at var(--mouse-x) var(--mouse-y),
        rgba(100, 255, 218, 0.06),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.slide-in {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease;
}

.scale-in {
    opacity: 0;
    transform: scale(0.5);
    transition: all 1s ease;
}

.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

.typing-text {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    min-height: 2.5rem;
    position: relative;
    color: var(--primary-color);
}

.typing-text::after {
    content: '|';
    position: absolute;
    right: -8px;
    width: 8px;
    color: var(--primary-color);
    animation: blink 0.8s infinite;
}

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

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.project-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, 
        rgba(100, 255, 218, 0.1), 
        rgba(0, 112, 243, 0.1)
    );
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.project-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.project-badges {
    display: flex;
    gap: 0.75rem;
}

.status-badge, .type-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.status-badge {
    background: rgba(100, 255, 218, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.type-badge {
    background: rgba(0, 112, 243, 0.1);
    color: #0070f3;
    border: 1px solid rgba(0, 112, 243, 0.2);
}

.project-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.project-info h3 {
    font-size: 1.5rem;
    color: var(--text-color);
}

.project-info p {
    color: var(--secondary-color);
    line-height: 1.7;
}

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

.tech-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.tech-tag i {
    color: var(--primary-color);
    font-size: 1rem;
}

.tech-tag:hover {
    transform: translateY(-2px);
    background: rgba(100, 255, 218, 0.05);
    border-color: var(--primary-color);
}

.project-actions {
    display: flex;
    gap: 1.5rem;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    transform: translateY(-2px);
    background: rgba(100, 255, 218, 0.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Updated color scheme */
:root {
    --primary-color: #64ffda;
    --secondary-color: #8892b0;
    --accent-color: #7928ca;
    --bg-color: #0a192f;
    --text-color: #ccd6f6;
    --card-bg: rgba(255, 255, 255, 0.03);
    --gradient-1: linear-gradient(120deg, #64ffda 0%, #0070f3 100%);
    --gradient-2: linear-gradient(120deg, #7928ca 0%, #ff0080 100%);
}

/* Tech Icons Styling */
.tech-icons {
    margin-top: 2rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.tech-icons i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.tech-icons i:hover {
    transform: translateY(-5px);
}

/* Skills List Styling */
.skills-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.skills-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--secondary-color);
}

.skills-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.project-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.tech-stack span {
    background: rgba(100, 255, 218, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 0 2rem;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
    padding-right: 2rem;
}

.greeting {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.name.cyberpunk {
    font-family: 'Syncopate', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 1rem 0;
    position: relative;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        #00ff94,
        #00f0ff,
        var(--accent-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradient-shift 8s ease infinite;
}

.name.cyberpunk::before {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    text-shadow: -1px 0 var(--primary-color);
    top: 0;
    color: var(--text-color);
    background: none;
    overflow: hidden;
    animation: glitch-effect 3s infinite linear alternate-reverse;
    opacity: 0.5;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glitch-effect {
    0% {
        clip-path: inset(71% 0 10% 0);
    }
    5% {
        clip-path: inset(24% 0 62% 0);
    }
    10% {
        clip-path: inset(47% 0 37% 0);
    }
    15% {
        clip-path: inset(90% 0 4% 0);
    }
    20% {
        clip-path: inset(61% 0 26% 0);
    }
    25% {
        clip-path: inset(14% 0 77% 0);
    }
    30% {
        clip-path: inset(84% 0 3% 0);
    }
    35% {
        clip-path: inset(33% 0 46% 0);
    }
    40% {
        clip-path: inset(75% 0 19% 0);
    }
    45% {
        clip-path: inset(39% 0 49% 0);
    }
    50% {
        clip-path: inset(98% 0 1% 0);
    }
    55% {
        clip-path: inset(4% 0 74% 0);
    }
    60% {
        clip-path: inset(67% 0 16% 0);
    }
    65% {
        clip-path: inset(28% 0 46% 0);
    }
    70% {
        clip-path: inset(92% 0 3% 0);
    }
    75% {
        clip-path: inset(14% 0 67% 0);
    }
    80% {
        clip-path: inset(54% 0 21% 0);
    }
    85% {
        clip-path: inset(81% 0 7% 0);
    }
    90% {
        clip-path: inset(35% 0 42% 0);
    }
    95% {
        clip-path: inset(95% 0 3% 0);
    }
    100% {
        clip-path: inset(45% 0 41% 0);
    }
}

.title-container {
    margin: 1rem 0;
}

.static-text {
    color: var(--secondary-color);
    font-size: 1.4rem;
}

.hero-description {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin: 2rem 0;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border: none;
    color: var(--bg-color);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.primary-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: 0.5s;
}

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

.secondary-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: 0.5s;
    z-index: -1;
}

.secondary-btn:hover {
    color: var(--bg-color);
}

.secondary-btn:hover::before {
    width: 100%;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

.icon-wrapper {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(100, 255, 218, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.python { top: 20%; left: 20%; animation-delay: 0s; }
.ai { top: 60%; left: 70%; animation-delay: -1s; }
.data { top: 30%; left: 60%; animation-delay: -2s; }
.analytics { top: 70%; left: 30%; animation-delay: -3s; }

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    position: relative;
}

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

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-text {
        text-align: center;
        padding-right: 0;
    }
    
    .hero-description {
        margin: 2rem auto;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .name.cyberpunk {
        font-size: 2.5rem;
    }
    
    .typing-text {
        font-size: 1.4rem;
    }
}

/* Noise overlay effect */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc1IiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjMwMCIgaGVpZ2h0PSIzMDAiIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iLjA1Ii8+PC9zdmc+');
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

/* Glow effects */
.glow-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.glow-1 {
    background: var(--primary-color);
    width: 500px;
    height: 500px;
    top: -250px;
    right: -100px;
    opacity: 0.15;
    animation: glow-float 20s ease-in-out infinite;
}

.glow-2 {
    background: var(--secondary-color);
    width: 600px;
    height: 600px;
    bottom: -300px;
    left: -200px;
    opacity: 0.1;
    animation: glow-float 25s ease-in-out infinite reverse;
}

.glow-3 {
    background: var(--accent-color);
    width: 400px;
    height: 400px;
    top: 40%;
    left: 30%;
    opacity: 0.12;
    animation: glow-float 18s ease-in-out infinite;
}

@keyframes glow-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -30px) scale(1.1); }
}

/* Hero section improvements */
.hero-header {
    position: relative;
    margin-bottom: 2rem;
}

.greeting {
    font-family: 'Fira Code', monospace;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 148, 0.1);
    border-radius: 4px;
    margin-bottom: 1rem;
}

/* Glitch effect for name */
.glitch {
    position: relative;
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
                0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    animation: glitch 500ms infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch 650ms infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translate(-0.025em, -0.0125em);
    opacity: 0.75;
}

.glitch::after {
    animation: glitch 375ms infinite;
    clip-path: polygon(0 80%, 100% 20%, 100% 100%, 0 100%);
    transform: translate(0.0125em, 0.025em);
    opacity: 0.75;
}

@keyframes glitch {
    0% { text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.025em 0.05em 0 rgba(0, 0, 255, 0.75); }
    14% { text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.025em 0.05em 0 rgba(0, 0, 255, 0.75); }
    15% { text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75); }
    49% { text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75); }
    50% { text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75); }
    99% { text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75); }
    100% { text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.75),
                    -0.025em -0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.025em -0.05em 0 rgba(0, 0, 255, 0.75); }
}

/* Tech badge */
.tech-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 255, 148, 0.1), rgba(0, 112, 243, 0.1));
    border: 1px solid rgba(0, 255, 148, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

/* Stats container */
.stats-container {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Highlight text */
.highlight {
    color: var(--primary-color);
    font-weight: 500;
}

/* Tech sphere improvements */
.tech-sphere {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    perspective: 1000px;
}

.floating-icons {
    transform-style: preserve-3d;
    animation: rotate 20s linear infinite;
}

.icon-wrapper {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 255, 148, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 255, 148, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-wrapper::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.icon-wrapper:hover::before {
    opacity: 1;
}

@keyframes rotate {
    from { transform: rotateY(0deg) rotateX(20deg); }
    to { transform: rotateY(360deg) rotateX(20deg); }
}

/* Updated button styles */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.primary-btn, .secondary-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-btn i, .secondary-btn i {
    transition: transform 0.3s ease;
}

.primary-btn:hover i, .secondary-btn:hover i {
    transform: translateX(5px);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 1rem;
    }

    .tech-sphere {
        width: 300px;
        height: 300px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* Skills section styles */
.skills-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
    grid-template-columns: 1fr;
}

.skill-category-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.skill-category-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.05);
}

.skill-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-category-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(100, 255, 218, 0.1);
    padding: 1rem;
    border-radius: 12px;
}

.skill-category-header h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    font-weight: 600;
}

.skill-items-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
}

.skill-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.skill-pill i {
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.skill-pill span {
    color: var(--text-color);
    font-size: 0.9rem;
    white-space: nowrap;
}

.skill-pill::after {
    content: attr(data-level);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    background: var(--primary-color);
    color: var(--bg-color);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.skill-pill:hover {
    transform: translateY(-3px);
    background: rgba(100, 255, 218, 0.05);
    border-color: var(--primary-color);
}

.skill-pill:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.skill-pill:hover i {
    transform: scale(1.1);
}

/* Skill level colors */
.skill-pill[data-level="Advanced"]::after {
    background: linear-gradient(90deg, #64ffda, #00ff94);
}

.skill-pill[data-level="Intermediate"]::after {
    background: linear-gradient(90deg, #64ffda, #00bcd4);
}

.skill-pill[data-level="Basic"]::after {
    background: linear-gradient(90deg, #64ffda, #2196f3);
}

/* Responsive design */
@media (min-width: 768px) {
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .skill-category-card {
        padding: 1.5rem;
    }

    .skill-category-header {
        margin-bottom: 1rem;
    }

    .skill-category-header i {
        padding: 0.75rem;
        font-size: 1.2rem;
    }

    .skill-pill {
        padding: 0.6rem 1rem;
    }
}

/* Modern Skills Section */
.modern-skills-container {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.modern-skill-group {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.modern-skill-group:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.05);
}

.skill-group-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.skill-group-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(100, 255, 218, 0.1);
    padding: 1rem;
    border-radius: 12px;
}

.skill-group-header h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    font-weight: 600;
}

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

.modern-skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.modern-skill-item::before {
    content: attr(data-level);
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    background: var(--primary-color);
    color: var(--bg-color);
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
}

.modern-skill-item:hover {
    transform: translateY(-3px);
    background: rgba(100, 255, 218, 0.05);
}

.modern-skill-item:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.modern-skill-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.modern-skill-item:hover i {
    transform: scale(1.1);
}

.modern-skill-item span {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Skill level colors */
.modern-skill-item[data-level="Advanced"]::before {
    background: linear-gradient(90deg, #64ffda, #00ff94);
}

.modern-skill-item[data-level="Intermediate"]::before {
    background: linear-gradient(90deg, #64ffda, #00bcd4);
}

.modern-skill-item[data-level="Basic"]::before {
    background: linear-gradient(90deg, #64ffda, #2196f3);
}

/* Responsive design */
@media (max-width: 768px) {
    .modern-skill-items {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .modern-skill-item {
        padding: 0.8rem;
    }

    .skill-group-header i {
        padding: 0.8rem;
        font-size: 1.2rem;
    }

    .skill-group-header h3 {
        font-size: 1.1rem;
    }
}

/* Modern Terminal-style About Section */
.about-text-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(10, 10, 15, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.terminal-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

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

.terminal-buttons span:nth-child(1) { background: #ff5f56; }
.terminal-buttons span:nth-child(2) { background: #ffbd2e; }
.terminal-buttons span:nth-child(3) { background: #27c93f; }

.terminal-title {
    margin-left: 1rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.terminal-body {
    padding: 2rem;
    font-family: 'Fira Code', monospace;
    line-height: 1.8;
}

.line {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-color);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.line:nth-child(2) { animation-delay: 0.2s; }
.line:nth-child(3) { animation-delay: 0.4s; }
.line:nth-child(4) { animation-delay: 0.6s; }

.indent {
    margin-left: 2rem;
    color: var(--secondary-color);
}

.highlight {
    color: #ff79c6;
}

.string {
    color: #50fa7b;
}

/* Enhanced Expertise Cards */
.expertise-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    overflow: hidden;
    transform-style: preserve-3d;
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--mouse-x) var(--mouse-y),
        rgba(100, 255, 218, 0.08),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expertise-card:hover .card-glow {
    opacity: 1;
}

.expertise-icon {
    transform: translateZ(30px);
    background: linear-gradient(45deg, rgba(100, 255, 218, 0.1), rgba(0, 112, 243, 0.1));
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.expertise-item {
    position: relative;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.expertise-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(45deg, transparent, rgba(100, 255, 218, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

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

/* Hover Effects */
.expertise-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.1);
}

.expertise-item:hover {
    background: rgba(100, 255, 218, 0.05);
    transform: translateX(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .terminal-body {
        padding: 1.5rem;
        font-size: 0.9rem;
    }

    .expertise-card {
        padding: 1.5rem;
    }
}

/* Education Timeline Styles */
.education-timeline {
    position: relative;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.timeline-road {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--primary-color),
        var(--primary-color),
        transparent
    );
    transform: translateX(-50%);
}

.timeline-road::before,
.timeline-road::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
}

.timeline-road::before {
    top: -10px;
}

.timeline-road::after {
    bottom: -10px;
}

.timeline-node {
    position: relative;
    margin: 4rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.node-dot {
    position: absolute;
    left: 50%;
    width: 60px;
    height: 60px;
    background: rgba(100, 255, 218, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-dot i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.node-dot::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
}

.timeline-node.current .node-dot {
    background: rgba(100, 255, 218, 0.2);
}

.timeline-node.current .node-dot::before {
    animation: pulse 2s infinite;
}

.education-card {
    width: 45%;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transform-style: preserve-3d;
    position: relative;
}

.timeline-node:nth-child(odd) .education-card {
    margin-right: auto;
    margin-left: 0;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.year {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.status.current {
    background: rgba(100, 255, 218, 0.1);
    color: var(--primary-color);
}

.status.completed {
    background: rgba(0, 200, 83, 0.1);
    color: #00c853;
}

.card-content h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.card-content h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.card-content p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.subjects {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.subjects span {
    padding: 0.5rem 1rem;
    background: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

/* Hover Effects */
.education-card {
    transition: all 0.3s ease;
}

.education-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.subjects span:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .education-timeline {
        padding: 0 1rem;
    }

    .timeline-road {
        left: 30px;
    }

    .node-dot {
        left: 30px;
    }

    .education-card {
        width: calc(100% - 80px);
        margin-left: 60px !important;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Modern Contact Section Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.contact-text-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, 
        rgba(100, 255, 218, 0.1), 
        rgba(0, 112, 243, 0.1)
    );
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-text-card p {
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.method-details h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.method-details p,
.method-details a {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.highlight-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.highlight-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.highlight-link:hover {
    color: var(--primary-color);
}

.highlight-link:hover i {
    transform: translateX(5px);
}

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

.social-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    background: rgba(100, 255, 218, 0.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Enhanced Form Styles */
.modern-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--primary-color);
    z-index: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group label {
    position: absolute;
    left: 3rem;
    top: 1rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: rgba(100, 255, 218, 0.02);
    outline: none;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:valid ~ label {
    transform: translateY(-1.5rem) scale(0.9);
    color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 12px;
    color: var(--bg-color);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .social-link {
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .contact-method {
        padding: 1.2rem;
    }

    .modern-form {
        padding: 1.5rem;
    }
}

/* Modern About Section Styles */
.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        800px circle at var(--mouse-x) var(--mouse-y),
        rgba(100, 255, 218, 0.08),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card:hover::before {
    opacity: 1;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.highlight {
    color: var(--primary-color);
    font-weight: 500;
}

/* Tech Stack Styles */
.tech-stack {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.tech-category {
    text-align: center;
}

.tech-category h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.tech-category h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
}

.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.tech-pill {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.tech-pill i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.tech-pill span {
    color: var(--text-color);
    font-size: 0.95rem;
}

.tech-pill:hover {
    transform: translateY(-3px);
    background: rgba(100, 255, 218, 0.05);
    border-color: var(--primary-color);
}

.tech-pill:hover i {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-card {
        padding: 2rem;
    }

    .about-text p {
        font-size: 1.1rem;
        text-align: left;
    }

    .tech-stack {
        gap: 2rem;
    }

    .tech-pills {
        gap: 0.8rem;
    }

    .tech-pill {
        padding: 0.6rem 1.2rem;
    }
}

/* Modern Projects Section */
.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    backdrop-filter: blur(10px);
}

.project-content {
    position: relative;
    z-index: 1;
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        800px circle at var(--mouse-x) var(--mouse-y),
        rgba(100, 255, 218, 0.08),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.project-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, 
        rgba(100, 255, 218, 0.1), 
        rgba(0, 112, 243, 0.1)
    );
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.project-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.project-badges {
    display: flex;
    gap: 0.75rem;
}

.status-badge, .type-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.status-badge {
    background: rgba(100, 255, 218, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.type-badge {
    background: rgba(0, 112, 243, 0.1);
    color: #0070f3;
    border: 1px solid rgba(0, 112, 243, 0.2);
}

.project-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.project-info h3 {
    font-size: 1.5rem;
    color: var(--text-color);
}

.project-info p {
    color: var(--secondary-color);
    line-height: 1.7;
}

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

.tech-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.tech-tag i {
    color: var(--primary-color);
    font-size: 1rem;
}

.tech-tag:hover {
    transform: translateY(-2px);
    background: rgba(100, 255, 218, 0.05);
    border-color: var(--primary-color);
}

.project-actions {
    display: flex;
    gap: 1.5rem;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    transform: translateY(-2px);
    background: rgba(100, 255, 218, 0.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Hover Effects */
.project-card {
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .projects-container {
        grid-template-columns: 1fr;
    }

    .project-card {
        padding: 1.5rem;
    }

    .project-header {
        flex-direction: column;
        gap: 1rem;
    }

    .project-badges {
        width: 100%;
        justify-content: flex-start;
    }

    .project-actions {
        flex-direction: column;
    }

    .project-link {
        width: 100%;
        justify-content: center;
    }
} 