        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.5rem 2rem;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }
        
        nav ul {
            list-style: none;
            display: flex;
            justify-content: flex-end;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        nav a {
            text-decoration: none;
            color: #667eea;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transition: width 0.3s;
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 6rem 2rem;
        }
        
        #hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding-top: 80px;
            color: white;
        }
        
        .profile-pic-container {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 2rem;
            border: 5px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
        }
        
        .profile-pic-container:hover {
            transform: scale(1.05);
        }
        
        .profile-pic {
            width: 100%;
            height: 100%;
            object-fit: cover;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
            font-weight: 700;
        }
        
        h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .subtitle {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            font-weight: 500;
        }
        
        .intro-text {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 600px;
            line-height: 1.8;
        }

        .about-intro-text {
            font-size: 1.125rem;
            color: #555;
            max-width: 600px;
            line-height: 1.8;
        }
        
        #about, #projects, #skills, #contact {
            background: white;
            border-radius: 20px;
            margin-bottom: 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }
        
        h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .project-card {
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            position: relative;
            overflow: hidden;
        }
        
        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
        }
        
        .project-card:nth-child(2)::before {
            background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
        }
        
        .project-card:nth-child(3)::before {
            background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
        }
        
        .project-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #1a1a1a;
        }
        
        .project-card p {
            color: #555;
            margin-bottom: 1rem;
            line-height: 1.7;
        }
        
        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        
        .tag {
            font-size: 0.875rem;
            padding: 0.4rem 1rem;
            background: rgba(102, 126, 234, 0.15);
            color: #667eea;
            border-radius: 20px;
            font-weight: 500;
            border: 1px solid rgba(102, 126, 234, 0.3);
        }
        
        .skills-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }
        
        .skill-category {
            padding: 2rem;
            border-radius: 15px;
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
            transition: transform 0.3s;
        }
        
        .skill-category:nth-child(2) {
            background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
        }
        
        .skill-category:nth-child(3) {
            background: linear-gradient(135deg, #ffd3a5 0%, #fd6585 100%);
        }
        
        .skill-category:hover {
            transform: translateY(-5px);
        }
        
        .skill-category h3 {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            color: #1a1a1a;
            font-weight: 700;
        }
        
        .skill-list {
            list-style: none;
        }
        
        .skill-list li {
            padding: 0.75rem 0;
            color: #333;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            font-size: 1rem;
            transition: padding-left 0.3s;
        }
        
        .skill-list li:hover {
            padding-left: 10px;
        }
        
        .skill-list li:last-child {
            border-bottom: none;
        }
        
        .contact-content {
            max-width: 600px;
        }
        
        .contact-content p {
            font-size: 1.125rem;
            color: #555;
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        .contact-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .contact-link {
            display: inline-block;
            font-size: 1.125rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.3s;
            text-align: center;
            font-weight: 600;
            max-width: 300px;
        }
        
        .contact-link:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }
        
        footer {
            text-align: center;
            padding: 2rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 2rem;
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            .subtitle {
                font-size: 1.25rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
            
            nav ul {
                gap: 1rem;
            }
        }