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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            line-height: 1.6;
            color: #ffffff;
            background: #000000;
            overflow-x: hidden;
            cursor: none;
        }

        *, *::before, *::after {
            cursor: none !important;
        }

        /* Specifically target interactive elements */
        a, 
        button, 
        input, 
        textarea, 
        select, 
        .interactive, 
        .project-visual, 
        .cert-link, 
        .skill-tag, 
        .tech-category, 
        .certification-card, 
        [onclick], 
        [role="button"] {
            cursor: none !important;
        }

        /* Custom cursor styling */
        .cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.1s ease;
            backdrop-filter: blur(2px);
        }

        /* Hover effect - enlarges cursor */
        .cursor.hover {
            width: 35px;
            height: 35px;
            border-color: rgba(255, 255, 255, 0.6);
            background: rgba(255, 255, 255, 0.05);
        }

        /* Minimal animated background */
        .bg-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            z-index: -1;
            background-image: 
                linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

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

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 2rem;
            z-index: 1000;
            mix-blend-mode: difference;
        }

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

        .logo {
            font-size: 1.2rem;
            font-weight: 300;
            color: #ffffff;
            text-decoration: none;
            letter-spacing: 0.1em;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 300;
            font-size: 0.95rem;
            transition: opacity 0.3s ease;
            letter-spacing: 0.05em;
        }

        .nav-links a:hover {
            opacity: 0.6;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 0 2rem;
            position: relative;
            overflow: hidden;
            will-change: transform;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            transform: translateY(0);
            transition: transform 0.1s ease-out;
            will-change: transform;
        }

        .hero h1 {
            font-size: clamp(4rem, 12vw, 12rem);
            font-weight: 100;
            line-height: 0.9;
            margin-bottom: 2rem;
            color: #ffffff;
            letter-spacing: -0.02em;
            transform: translateY(0);
            transition: transform 0.1s ease-out, opacity 0.1s ease-out;
            will-change: transform, opacity;
        }

        .hero-subtitle {
            font-size: clamp(1.5rem, 4vw, 3rem);
            font-weight: 200;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 4rem;
            max-width: 600px;
            transform: translateY(0);
            transition: transform 0.1s ease-out, opacity 0.1s ease-out;
            will-change: transform, opacity;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.8rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            transition: opacity 0.3s ease-out;
            will-change: opacity;
        }

        .scroll-indicator::after {
            content: '';
            display: block;
            width: 1px;
            height: 60px;
            background: rgba(255, 255, 255, 0.3);
            margin: 1rem auto 0;
            animation: scrollLine 2s ease-in-out infinite;
        }

        @keyframes scrollLine {
            0%, 100% { 
                opacity: 0; 
                transform: translateY(0); 
            }
            50% { 
                opacity: 1; 
                transform: translateY(20px); 
            }
        }

        /* Background animation */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            transform: scale(1);
            transition: transform 0.1s ease-out;
            will-change: transform;
        }

        /* Demo content for scrolling */
        .content-section {
            height: 100vh;
            background: #1a1a1a;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        /* Optimized for performance */
        .hero * {
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }

        /* Smooth transitions */
        .hero-parallax {
            transform: translate3d(0, 0, 0);
        }

        /* Section Styles */
        section {
            min-height: 100vh;
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
        }

        .section-content {
            width: 100%;
        }

        .section-number {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.3);
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 100;
            margin-bottom: 4rem;
            color: #ffffff;
            letter-spacing: -0.01em;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8rem;
            align-items: start;
        }

        .about-text {
            font-size: 1.4rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 300;
        }

        .skills-list {
            list-style: none;
            columns: 2;
            column-gap: 3rem;
        }

        .skills-list li {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 1rem;
            font-weight: 300;
            letter-spacing: 0.05em;
            transition: color 0.3s ease;
        }

        .skills-list li:hover {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Experience Section */
        .experience-item {
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            padding-left: 3rem;
            position: relative;
        }

        .experience-item::before {
            content: '';
            position: absolute;
            left: -5px;
            top: 1rem;
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
        }

        .experience-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .experience-date {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 0.5rem;
            letter-spacing: 0.1em;
        }

        .experience-title {
            font-size: 1.8rem;
            color: #ffffff;
            margin-bottom: 0.5rem;
            font-weight: 300;
        }

        .experience-company {
            font-size: 1.2rem;
            color: rgba(100, 255, 218, 0.8);
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        .experience-description {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            margin-bottom: 1rem;
        }

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

        .experience-tech span {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            letter-spacing: 0.05em;
        }

        /* Tech-Stack Section */
        .tech-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .tech-category {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 2rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px);
        }

        .tech-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, rgba(100, 255, 218, 0.8), rgba(255, 255, 255, 0.3));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .tech-category:hover::before {
            transform: scaleX(1);
        }

        .tech-category:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-8px);
        }

        .tech-category.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .tech-category-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .tech-icon {
            width: 50px;
            height: 50px;
            background: rgba(100, 255, 218, 0.1);
            border: 1px solid rgba(100, 255, 218, 0.3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: rgba(100, 255, 218, 0.8);
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .tech-category:hover .tech-icon {
            background: rgba(100, 255, 218, 0.15);
            border-color: rgba(100, 255, 218, 0.5);
            color: rgba(100, 255, 218, 1);
        }

        .tech-category h3 {
            font-size: 1.3rem;
            font-weight: 400;
            color: #ffffff;
            margin: 0;
            line-height: 1.3;
        }

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

        .skill-tag {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            cursor: default;
        }

        .skill-tag:hover {
            color: rgba(255, 255, 255, 0.8);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        /* Responsive adjustments for tech stack */
        @media (max-width: 1024px) {
            .tech-categories {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .tech-categories {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .tech-category {
                padding: 1.5rem;
            }
            
            .tech-category-header {
                gap: 0.8rem;
                margin-bottom: 1.2rem;
            }
            
            .tech-icon {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
            
            .tech-category h3 {
                font-size: 1.2rem;
            }
            
            .skill-tag {
                font-size: 0.7rem;
                padding: 0.25rem 0.6rem;
            }
        }

        @media (max-width: 480px) {
            .tech-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .tech-category h3 {
                font-size: 1.1rem;
            }
            
            .skill-tag {
                font-size: 0.65rem;
                padding: 0.2rem 0.5rem;
            }
        }

        /*Certification Section*/
        .certification-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .certification-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 2rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px);
        }
        
        .certification-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, rgba(100, 255, 218, 0.8), rgba(255, 255, 255, 0.3));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .certification-card:hover::before {
            transform: scaleX(1);
        }
        
        .certification-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-8px);
        }
        
        .certification-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .cert-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .cert-icon {
            width: 50px;
            height: 50px;
            background: rgba(100, 255, 218, 0.1);
            border: 1px solid rgba(100, 255, 218, 0.3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: rgba(100, 255, 218, 0.8);
            flex-shrink: 0;
        }
        
        .cert-date {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
            letter-spacing: 0.1em;
            text-align: right;
        }
        
        .cert-title {
            font-size: 1.3rem;
            font-weight: 400;
            color: #ffffff;
            margin-bottom: 0.8rem;
            line-height: 1.3;
        }
        
        .cert-issuer {
            font-size: 1rem;
            color: rgba(100, 255, 218, 0.8);
            margin-bottom: 1rem;
            font-weight: 300;
        }
        
        .cert-description {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .cert-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .cert-skills span {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            letter-spacing: 0.05em;
        }
        
        .cert-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(100, 255, 218, 0.8);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            transition: all 0.3s ease;
            letter-spacing: 0.05em;
        }
        
        .cert-link:hover {
            color: rgba(100, 255, 218, 1);
            transform: translateX(5px);
        }
        
        .cert-link::after {
            content: '→';
            transition: transform 0.3s ease;
        }
        
        .cert-link:hover::after {
            transform: translateX(3px);
        }
        
        /* Responsive adjustments for certifications */
        @media (max-width: 1024px) {
            .certification-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 1.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .certification-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .certification-card {
                padding: 1.5rem;
            }
            
            .cert-header {
                flex-direction: column;
                gap: 1rem;
            }
            
            .cert-date {
                text-align: left;
            }
            
            .cert-title {
                font-size: 1.2rem;
            }
            
            .cert-issuer {
                font-size: 0.95rem;
            }
            
            .cert-description {
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 480px) {
            .cert-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .cert-title {
                font-size: 1.1rem;
            }
            
            .cert-skills span {
                font-size: 0.7rem;
                padding: 0.25rem 0.6rem;
            }
        }

        /* Projects Section */
        .project {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8rem;
            align-items: center;
            margin-bottom: 8rem;
            opacity: 0;
            transform: translateY(100px);
            transition: all 1s ease;
        }

        .project.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .project:nth-child(even) {
            direction: rtl;
        }

        .project:nth-child(even) > * {
            direction: ltr;
        }

        .project-info h3 {
            font-size: 2.5rem;
            font-weight: 200;
            margin-bottom: 2rem;
            color: #ffffff;
        }

        .project-info p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 3rem;
            line-height: 1.7;
            font-weight: 300;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .project-tech span {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.4);
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .project-visual {
            height: 300px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.3);
            transition: all 0.5s ease;
            cursor: pointer;
            border-radius: 10px;
        }

        .project-visual:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .project-visual.interactive {
            max-width: 100%;
            height: auto;
            display: flex;
            justify-content: center; /* optional: center the image */
            align-items: center;     /* optional: center vertically if needed */
            padding: 1rem;           /* optional spacing */
        }

        .background-img {
            max-width: 100%;  /* Responsive: image never exceeds container */
            height: auto;     /* Maintain aspect ratio */
            display: block;
        }

        /* Resume Section */
        .resume-container {
            margin-top: 2rem;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .resume-container.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .resume-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .resume-text h3 {
            font-size: 2.5rem;
            font-weight: 200;
            margin-bottom: 2rem;
            color: #ffffff;
            letter-spacing: -0.01em;
        }

        .resume-text p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            font-weight: 300;
            margin-bottom: 3rem;
        }

        .resume-highlights {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 300;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
        }

        .highlight-item:hover {
            color: rgba(255, 255, 255, 0.9);
            transform: translateX(5px);
        }

        .highlight-icon {
            font-size: 1.2rem;
            width: 30px;
            text-align: center;
            flex-shrink: 0;
        }

        .resume-download {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .resume-preview {
            justify-content: center;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 2rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            width: 100%;
            max-width: 350px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .resume-preview::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, rgba(100, 255, 218, 0.8), rgba(255, 255, 255, 0.3));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .resume-preview:hover::before {
            transform: scaleX(1);
        }

        .resume-preview:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .resume-icon {
            font-size: 3rem;
            width: 80px;
            height: 80px;
            background: rgba(100, 255, 218, 0.1);
            border: 1px solid rgba(100, 255, 218, 0.3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .resume-preview:hover .resume-icon {
            background: rgba(100, 255, 218, 0.15);
            border-color: rgba(100, 255, 218, 0.5);
        }

        .resume-details {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .resume-name {
            font-size: 1.1rem;
            font-weight: 400;
            color: #ffffff;
            letter-spacing: 0.02em;
        }

        .resume-size {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.4);
            letter-spacing: 0.05em;
        }

        .resume-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: rgba(100, 255, 218, 0.1);
            border: 1px solid rgba(100, 255, 218, 0.3);
            color: rgba(100, 255, 218, 0.9);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 400;
            letter-spacing: 0.05em;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

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

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

        .resume-btn:hover {
            background: rgba(100, 255, 218, 0.15);
            border-color: rgba(100, 255, 218, 0.5);
            color: rgba(100, 255, 218, 1);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(100, 255, 218, 0.2);
        }

        .btn-icon {
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }

        .resume-btn:hover .btn-icon {
            transform: translateY(2px);
        }

        /* Responsive Design for Resume Section */
        @media (max-width: 1024px) {
            .resume-content {
                grid-template-columns: 1fr;
                gap: 4rem;
                text-align: center;
            }
            
            .resume-text h3 {
                font-size: 2rem;
            }
            
            .resume-text p {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }
            
            .resume-highlights {
                align-items: center;
                gap: 1rem;
            }

            .resume-preview{
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .resume-content {
                gap: 3rem;
            }
            
            .resume-text h3 {
                font-size: 1.8rem;
                margin-bottom: 1.5rem;
            }
            
            .resume-text p {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            
            .resume-highlights {
                gap: 1rem;
            }
            
            .highlight-item {
                font-size: 0.95rem;
                gap: 0.8rem;
            }
            
            .highlight-icon {
                font-size: 1.1rem;
                width: 25px;
            }
            
            .resume-preview {
                justify-content: center;
                padding: 1.5rem;
                gap: 1.2rem;
            }
            
            .resume-icon {
                width: 70px;
                height: 70px;
                font-size: 2.5rem;
            }
            
            .resume-name {
                font-size: 1rem;
            }
            
            .resume-size {
                font-size: 0.85rem;
            }
            
            .resume-btn {
                padding: 0.9rem 1.8rem;
                font-size: 0.95rem;
                gap: 0.7rem;
            }
        }

        @media (max-width: 480px) {
            .resume-content {
                gap: 2rem;
            }
            
            .resume-text h3 {
                font-size: 1.5rem;
            }
            
            .resume-text p {
                font-size: 0.95rem;
            }
            
            .highlight-item {
                font-size: 0.9rem;
                gap: 0.7rem;
            }
            
            .highlight-icon {
                font-size: 1rem;
                width: 22px;
            }
            
            .resume-preview {
                justify-content: center;
                padding: 1.2rem;
                gap: 1rem;
                max-width: 100%;
            }
            
            .resume-icon {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }
            
            .resume-name {
                font-size: 0.95rem;
            }
            
            .resume-size {
                font-size: 0.8rem;
            }
            
            .resume-btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
                gap: 0.6rem;
                width: 100%;
                max-width: 250px;
                justify-content: center;
            }
            
            .btn-icon {
                font-size: 1rem;
            }
        }

        @media (max-width: 375px) {
            .resume-text h3 {
                font-size: 1.3rem;
            }
            
            .resume-preview {
                flex-direction: column;
                text-align: center;
                padding: 1rem;
            }
            
            .resume-details {
                align-items: center;
            }
            
            .resume-btn {
                font-size: 0.85rem;
                padding: 0.7rem 1.3rem;
            }
        }

        /* Contact Section */
        .contact {
            text-align: center;
            min-height: 80vh;
        }

        .contact h2 {
            font-size: clamp(3rem, 8vw, 8rem);
            font-weight: 100;
            margin-bottom: 4rem;
            letter-spacing: -0.01em;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 6rem;
            margin-top: 6rem;
        }

        .contact-item {
            text-align: left;
        }

        .contact-item h4 {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .contact-item a {
            font-size: 1.2rem;
            color: #ffffff;
            text-decoration: none;
            font-weight: 300;
            transition: opacity 0.3s ease;
        }

        .contact-item a:hover {
            opacity: 0.6;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: clamp(6rem, 15vw, 10rem);
            }
            
            .section-title {
                font-size: clamp(2.5rem, 8vw, 5rem);
            }
        }

        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }
            
            nav {
                padding: 1.5rem;
            }
            
            .about-grid,
            .project,
            .contact-info {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .project:nth-child(even) {
                direction: ltr;
            }
            
            section {
                padding: 3rem 1.5rem;
            }
            
            .hero {
                padding: 0 1.5rem;
            }
            
            .hero h1 {
                font-size: clamp(5rem, 12vw, 8rem);
            }
            
            .hero-subtitle {
                font-size: clamp(1.2rem, 4vw, 2rem);
            }
            
            .experience-item {
                padding-left: 2rem;
                margin-bottom: 3rem;
            }
            
            .project-info h3 {
                font-size: 2rem;
            }
            
            .about-text {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 1rem;
            }
            
            .logo {
                font-size: 1rem;
            }
            
            .hero {
                padding: 0 1rem;
                min-height: 100vh;
            }
            
            .hero h1 {
                font-size: clamp(4rem, 15vw, 6rem);
                margin-bottom: 1.5rem;
            }
            
            .hero-subtitle {
                font-size: clamp(1rem, 5vw, 1.5rem);
                margin-bottom: 3rem;
            }
            
            section {
                padding: 3rem 1rem;
                min-height: auto;
            }
            
            .section-title {
                font-size: clamp(2rem, 10vw, 3.5rem);
                margin-bottom: 2rem;
            }
            
            .section-number {
                margin-bottom: 2rem;
            }
            
            .about-grid {
                gap: 2rem;
            }
            
            .about-text {
                font-size: 1.1rem;
                line-height: 1.6;
            }
            
            .skills-list {
                columns: 2;
                column-gap: 2rem;
            }
            
            .skills-list li {
                font-size: 1rem;
            }
            
            .experience-item {
                padding-left: 1.5rem;
                margin-bottom: 2.5rem;
            }
            
            .experience-title {
                font-size: 1.5rem;
            }
            
            .experience-company {
                font-size: 1rem;
            }
            
            .experience-description {
                font-size: 0.95rem;
            }
            
            .experience-tech {
                gap: 0.5rem;
            }
            
            .experience-tech span {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
            }
            
            .project {
                gap: 2rem;
                margin-bottom: 4rem;
            }
            
            .project-info h3 {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }
            
            .project-info p {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            
            .project-tech {
                gap: 1rem;
                margin-bottom: 2rem;
            }
            
            .project-tech span {
                font-size: 0.8rem;
            }
            
            .project-visual {
                height: 250px;
                font-size: 0.9rem;
            }
            
            .contact {
                min-height: 60vh;
            }
            
            .contact h2 {
                font-size: clamp(2rem, 10vw, 4rem);
                margin-bottom: 2rem;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
                margin-top: 3rem;
            }
            
            .contact-item a {
                font-size: 1rem;
            }
            
            .scroll-indicator {
                bottom: 2rem;
                font-size: 0.7rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: clamp(3rem, 18vw, 5rem);
                line-height: 1;
            }
            
            .hero-subtitle {
                font-size: clamp(0.9rem, 6vw, 1.2rem);
            }
            
            .section-title {
                font-size: clamp(1.8rem, 12vw, 3rem);
            }
            
            .about-text {
                font-size: 1rem;
            }
            
            .skills-list {
                columns: 1;
            }
            
            .skills-list li {
                font-size: 0.95rem;
                margin-bottom: 0.8rem;
            }
            
            .experience-item {
                padding-left: 1rem;
            }
            
            .experience-title {
                font-size: 1.3rem;
            }
            
            .experience-company {
                font-size: 0.95rem;
            }
            
            .experience-description {
                font-size: 0.9rem;
                line-height: 1.5;
            }
            
            .project-info h3 {
                font-size: 1.5rem;
            }
            
            .project-info p {
                font-size: 0.95rem;
            }
            
            .project-visual {
                height: 200px;
                font-size: 0.8rem;
            }
            
            .contact h2 {
                font-size: clamp(1.8rem, 12vw, 3rem);
            }
            
            .contact-item h4 {
                font-size: 0.75rem;
            }
            
            .contact-item a {
                font-size: 0.95rem;
            }
            
            section {
                padding: 2rem 1rem;
            }
        }

        @media (max-width: 320px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 0.9rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .about-text {
                font-size: 0.95rem;
            }
            
            .experience-title {
                font-size: 1.2rem;
            }
            
            .project-info h3 {
                font-size: 1.3rem;
            }
            
            .contact h2 {
                font-size: 2rem;
            }
        }

        /* Interaction states */
        .interactive {
            transition: all 0.3s ease;
        }

        .interactive:hover {
            transform: translateY(-2px);
        }

        /* Reveal animations */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }