 /* Custom CSS Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #FF4D4D;
            --primary-dark: #D93636;
            --secondary: #2A2D43;
            --accent: #6C63FF;
            --dark: #1A1C2B;
            --light: #F9F7F7;
            --gray: #8A8B9F;
            --gray-light: #E8E8EF;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            --shadow: 0 8px 20px rgba(42, 45, 67, 0.08);
            --radius: 12px;
            --radius-sm: 6px;
            --border: 1px solid rgba(42, 45, 67, 0.1);
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: var(--secondary);
            background-color: var(--light);
            overflow-x: hidden;
            font-size: 16px;
        }
        
        /* Improved typography for better readability */
        h1, h2, h3, h4, h5 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: 3.2rem;
        }
        
        h2 {
            font-size: 2.5rem;
        }
        
        h3 {
            font-size: 1.8rem;
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #444;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 100px 0;
            position: relative;
        }
        
        /* Skip to content link for accessibility */
        .skip-to-content {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--primary);
            color: white;
            padding: 8px;
            z-index: 1001;
            text-decoration: none;
        }
        
        .skip-to-content:focus {
            top: 0;
        }
        
        .section-title {
            font-size: 2.8rem;
            margin-bottom: 60px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::before {
            content: '';
            position: absolute;
            width: 60%;
            height: 5px;
            background: var(--primary);
            bottom: -10px;
            left: 0;
            border-radius: 3px;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        /* Buttons with improved accessibility */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--primary);
            color: white;
            padding: 14px 32px;
            border-radius: var(--radius);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-family: 'Space Grotesk', sans-serif;
            position: relative;
            overflow: hidden;
            z-index: 1;
            font-size: 1rem;
        }
        
        .btn:focus {
            outline: 3px solid var(--accent);
            outline-offset: 2px;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.7s;
            z-index: -1;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(255, 77, 77, 0.25);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }
        
        /* Custom decorative elements */
        .custom-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.05;
            z-index: -1;
        }
        
        .shape-1 {
            width: 300px;
            height: 300px;
            background: var(--primary);
            top: 10%;
            right: 5%;
        }
        
        .shape-2 {
            width: 200px;
            height: 200px;
            background: var(--accent);
            bottom: 20%;
            left: 3%;
        }
        
        /* Header & Navigation - Improved for SEO */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background-color: rgba(249, 247, 247, 0.92);
            backdrop-filter: blur(10px);
            border-bottom: var(--border);
            transition: var(--transition);
        }
        
        header.scrolled {
            box-shadow: 0 5px 30px rgba(42, 45, 67, 0.08);
            padding: 5px 0;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .logo-icon {
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        
        .nav-links li {
            position: relative;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--secondary);
            font-weight: 500;
            transition: var(--transition);
            padding: 5px 0;
            font-size: 1rem;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }
        
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
            z-index: 1001;
        }
        
        /* Hero Section - Optimized for SEO */
        .hero {
            padding-top: 150px;
            padding-bottom: 100px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            min-height: 100vh;
        }
        
        .hero-content h1 {
            font-size: 3.8rem;
            margin-bottom: 20px;
            line-height: 1.1;
        }
        
        .hero-content h1 .highlight {
            color: var(--primary);
            position: relative;
            display: inline-block;
        }
        
        .hero-content h1 .highlight::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 8px;
            background-color: rgba(255, 77, 77, 0.2);
            bottom: 8px;
            left: 0;
            z-index: -1;
        }
        
        .hero-tagline {
            font-size: 1.3rem;
            color: var(--gray);
            margin-bottom: 30px;
            max-width: 90%;
            line-height: 1.6;
        }
        
        .hero-btns {
            display: flex;
            gap: 20px;
            margin-top: 40px;
        }
        
        .hero-image {
            position: relative;
        }
        
        .image-frame {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transform: rotate(3deg);
            transition: var(--transition);
        }
        
        .image-frame:hover {
            transform: rotate(0deg);
        }
        
        .image-frame::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(255, 77, 77, 0.1));
            z-index: 1;
        }
        
        .image-placeholder {
            height: 450px;
            background: linear-gradient(135deg, #2A2D43 0%, #3A3F5C 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }
        
        .image-placeholder i {
            font-size: 4rem;
            color: var(--primary);
        }
        
        .image-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: white;
            padding: 15px 25px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            z-index: 2;
            transform: rotate(-5deg);
            border: var(--border);
        }
        
        .image-badge h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .image-badge p {
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        /* Skills Section - Added semantic structure */
        .skills-section {
            background-color: var(--dark);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .skills-section .section-title {
            color: white;
        }
        
        .skills-section .section-title::before {
            background: var(--accent);
        }
        
        .skills-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .skill-card {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 35px;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .skill-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .skill-card:hover::before {
            width: 10px;
        }
        
        .skill-card:hover {
            transform: translateY(-10px);
            background-color: rgba(255, 255, 255, 0.08);
            border-color: rgba(108, 99, 255, 0.3);
        }
        
        .skill-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 25px;
        }
        
        .skill-list {
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .skill-tag {
            background-color: rgba(108, 99, 255, 0.1);
            color: var(--accent);
            padding: 6px 15px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
            border: 1px solid rgba(108, 99, 255, 0.2);
        }
        
        /* Portfolio Section - Improved semantics */
        .portfolio-filter {
            display: flex;
            gap: 10px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }
        
        .filter-btn {
            padding: 10px 24px;
            background-color: transparent;
            border: var(--border);
            border-radius: 30px;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            color: var(--secondary);
        }
        
        .filter-btn.active, .filter-btn:hover {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 35px;
        }
        
        .portfolio-item {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            background-color: white;
            border: var(--border);
            position: relative;
        }
        
        .portfolio-item:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(42, 45, 67, 0.12);
        }
        
        .portfolio-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 60%, rgba(42, 45, 67, 0.7));
            opacity: 0;
            transition: var(--transition);
            z-index: 1;
        }
        
        .portfolio-item:hover::after {
            opacity: 1;
        }
        
        .portfolio-img {
            height: 220px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            position: relative;
            z-index: 0;
        }
        
        .portfolio-info {
            padding: 25px;
            position: relative;
            z-index: 2;
        }
        
        .portfolio-links {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
            z-index: 3;
            opacity: 0;
            transform: translateY(10px);
            transition: var(--transition);
        }
        
        .portfolio-item:hover .portfolio-links {
            opacity: 1;
            transform: translateY(0);
        }
        
        .portfolio-link {
            width: 40px;
            height: 40px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .portfolio-link:hover {
            background-color: var(--primary);
            color: white;
            transform: scale(1.1);
        }
        
        /* Contact Section - Optimized form */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        
        .contact-info h3 {
            font-size: 2.2rem;
            margin-bottom: 25px;
        }
        
        .contact-details {
            margin-top: 40px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding: 20px;
            background-color: white;
            border-radius: var(--radius);
            border: var(--border);
            transition: var(--transition);
        }
        
        .contact-item:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow);
            border-color: var(--primary);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(255, 77, 77, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--primary);
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        
        .contact-form {
            background-color: white;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: var(--border);
        }
        
        .form-group {
            margin-bottom: 25px;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--secondary);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: var(--border);
            border-radius: var(--radius-sm);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
            background-color: rgba(42, 45, 67, 0.02);
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.1);
            background-color: white;
        }
        
        /* Footer - Improved with semantic markup */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 80px 0 30px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }
        
        .footer-logo {
            font-size: 2rem;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            background-color: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .social-link::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--primary);
            border-radius: 50%;
            transform: scale(0);
            transition: var(--transition);
        }
        
        .social-link:hover::before {
            transform: scale(1);
        }
        
        .social-link i {
            position: relative;
            z-index: 1;
        }
        
        .social-link:hover {
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        /* Breadcrumb for better navigation */
        .breadcrumb {
            margin-bottom: 30px;
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        /* Testimonial section for social proof */
        .testimonials {
            background-color: rgba(255, 77, 77, 0.03);
            padding: 80px 0;
            margin: 60px 0;
        }
        
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-bottom: 30px;
            border-left: 4px solid var(--primary);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--secondary);
        }
        
        /* Responsive Design - Optimized for all devices */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            
            .hero-content h1 {
                font-size: 3.2rem;
            }
            
            .hero-tagline {
                max-width: 100%;
            }
            
            .hero-btns {
                justify-content: center;
            }
            
            /* Improve font sizes for tablets */
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 900px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.3rem;
            }
            
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background-color: white;
                flex-direction: column;
                align-items: flex-start;
                padding: 100px 40px 40px;
                box-shadow: -10px 0 30px rgba(42, 45, 67, 0.1);
                transition: right 0.4s ease;
                z-index: 1000;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
                width: 100%;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
            
            /* Improve mobile typography */
            body {
                font-size: 15px;
            }
            
            h1 {
                font-size: 2.3rem;
            }
            
            h2 {
                font-size: 1.9rem;
            }
            
            section {
                padding: 70px 0;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2.3rem;
            }
            
            .hero-tagline {
                font-size: 1.1rem;
            }
            
            .image-badge {
                right: 10px;
                bottom: -30px;
                padding: 12px 18px;
            }
            
            .skills-container {
                grid-template-columns: 1fr;
            }
            
            .contact-form {
                padding: 25px;
            }
            
            section {
                padding: 70px 0;
            }
            
            .container {
                padding: 0 15px;
            }
        }
        
        /* Print styles */
        @media print {
            header, footer, .hero-btns, .contact-form {
                display: none;
            }
            
            body {
                font-size: 12pt;
                line-height: 1.5;
            }
            
            .container {
                max-width: 100%;
                padding: 0;
            }
            
            section {
                padding: 20pt 0;
                page-break-inside: avoid;
            }
        }
