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

        :root {
            --primary-orange: #ff6b35;
            --secondary-yellow: #f7931e;
            --dark-bg: #0a0a0a;
            --darker-bg: #050505;
            --light-gray: #f8f9fa;
            --text-dark: #1a1a1a;
            --text-light: #666;
            --text-lighter: #999;
            --accent-blue: #00a8ff;
            --accent-purple: #8c7ae6;
        }

        /* Dark theme variables */
        [data-theme="dark"] {
            --light-gray: #1a1a1a;
            --text-dark: #ffffff;
            --text-light: #cccccc;
            --text-lighter: #999999;
            --dark-bg: #0f0f0f;
            --darker-bg: #0a0a0a;
            --hero-bg: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
            --experience-bg: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
            --portfolio-bg: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
            --nav-bg: rgba(26, 26, 26, 0.95);
            --nav-scrolled-bg: rgba(26, 26, 26, 0.98);
            --timeline-content-bg: rgba(42, 42, 42, 0.9);
            --form-bg: rgba(42, 42, 42, 0.9);
            --input-bg: rgba(255, 255, 255, 0.1);
            --client-bg: #1a1a1a;
        }

        /* Light theme variables (default) */
        [data-theme="light"] {
            --light-gray: #f8f9fa;
            --text-dark: #1a1a1a;
            --text-light: #666;
            --text-lighter: #999;
            --dark-bg: #0a0a0a;
            --darker-bg: #050505;
            --hero-bg: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
            --experience-bg: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            --portfolio-bg: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            --nav-bg: rgba(248, 249, 250, 0.95);
            --nav-scrolled-bg: rgba(248, 249, 250, 0.98);
            --timeline-content-bg: rgba(255, 255, 255, 0.9);
            --form-bg: rgba(255, 255, 255, 0.08);
            --input-bg: rgba(255, 255, 255, 0.05);
            --client-bg: #f8f9fa;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
            background: var(--light-gray);
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* Custom cursor */
        body {
            cursor: none;
        }

        #cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            background: var(--primary-orange);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            mix-blend-mode: difference;
            will-change: transform;
        }

        #cursor.hover {
            transform: scale(2);
            background: var(--secondary-yellow);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--nav-bg);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1.5rem 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid rgba(255, 107, 53, 0.1);
        }

        nav.scrolled {
            background: var(--nav-scrolled-bg);
            box-shadow: 0 8px 32px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary-orange);
            letter-spacing: -2px;
        }

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

        .nav-menu a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: -0.5px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-orange);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateX(-50%);
        }

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

        .nav-menu a:hover {
            color: var(--primary-orange);
            transform: translateY(-2px);
        }

        .nav-controls {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .theme-toggle {
            background: none;
            border: 2px solid rgba(255, 107, 53, 0.2);
            border-radius: 50%;
            width: 45px;
            height: 45px;
            cursor: pointer;
            color: var(--primary-orange);
            font-size: 1.2rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .theme-toggle:hover {
            background: rgba(255, 107, 53, 0.1);
            border-color: var(--primary-orange);
            transform: scale(1.05);
        }

        .mobile-menu {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-dark);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: var(--hero-bg);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -20%;
            width: 60%;
            height: 140%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad1" cx="50%" cy="50%"><stop offset="0%" style="stop-color:%23ff6b35;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%23ff6b35;stop-opacity:0" /></radialGradient></defs><circle cx="500" cy="500" r="500" fill="url(%23grad1)" /></svg>') no-repeat center;
            background-size: cover;
            animation: float 15s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
            25% { transform: translate(-20px, -30px) rotate(2deg) scale(1.02); }
            50% { transform: translate(20px, -20px) rotate(-1deg) scale(0.98); }
            75% { transform: translate(-10px, 20px) rotate(1deg) scale(1.01); }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            padding-top: 2rem;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-bottom: 4rem;
            opacity: 1;
            position: relative;
            z-index: 100;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 2rem 3rem;
            border-radius: 25px;
            border: 2px solid rgba(255, 107, 53, 0.3);
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.1);
            transform: translateY(0);
            margin-top: 2rem;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary-orange);
            display: block;
            text-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
        }

        .hero-stat-label {
            font-size: 1rem;
            color: var(--text-dark);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.5rem;
        }

        .hero-content h1 {
            font-size: clamp(4rem, 12vw, 8rem);
            font-weight: 900;
            line-height: 0.85;
            margin-bottom: 2rem;
            color: var(--text-dark);
            letter-spacing: -8px;
        }

        .hero-content .highlight {
            color: var(--primary-orange);
            display: block;
            position: relative;
        }

        .hero-content .subtitle {
            font-size: 1.8rem;
            color: var(--text-light);
            margin-bottom: 3rem;
            font-weight: 300;
            letter-spacing: -1px;
        }

        .hero-content .description {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 4rem;
            max-width: 500px;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .btn {
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .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.5s ease;
        }

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

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-yellow) 100%);
            color: white;
            box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.9);
            color: var(--text-dark);
            border: 2px solid rgba(26, 26, 26, 0.1);
            backdrop-filter: blur(20px);
        }

        .btn-secondary:hover {
            background: var(--text-dark);
            color: white;
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 600px;
        }

        .hero-main-graphic {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 30px;
            box-shadow: 0 40px 120px rgba(0,0,0,0.15);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            animation: heroFloat 8s ease-in-out infinite;
        }

        @keyframes heroFloat {
            0%, 100% { transform: translateY(0px) rotateZ(0deg); }
            25% { transform: translateY(-20px) rotateZ(1deg); }
            50% { transform: translateY(-10px) rotateZ(-0.5deg); }
            75% { transform: translateY(-15px) rotateZ(0.5deg); }
        }

        .hero-main-graphic:hover {
            transform: scale(1.05) rotateZ(2deg);
        }

        .floating-element {
            position: absolute;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            backdrop-filter: blur(20px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .floating-element:hover {
            transform: scale(1.1) translateY(-10px);
        }

        .floating-element.element-1 {
            top: 10%;
            right: -5%;
            width: 120px;
            height: 120px;
            animation: floatElement1 6s ease-in-out infinite -1s;
        }

        .floating-element.element-2 {
            bottom: 15%;
            left: -8%;
            width: 100px;
            height: 100px;
            animation: floatElement2 7s ease-in-out infinite -2s;
        }

        .floating-element.element-3 {
            top: 30%;
            left: -10%;
            width: 80px;
            height: 80px;
            animation: floatElement3 5s ease-in-out infinite -3s;
        }

        @keyframes floatElement1 {
            0%, 100% { transform: translateY(0px) rotateZ(0deg); }
            50% { transform: translateY(-15px) rotateZ(5deg); }
        }

        @keyframes floatElement2 {
            0%, 100% { transform: translateY(0px) rotateZ(0deg); }
            50% { transform: translateY(-20px) rotateZ(-3deg); }
        }

        @keyframes floatElement3 {
            0%, 100% { transform: translateY(0px) rotateZ(0deg); }
            50% { transform: translateY(-10px) rotateZ(4deg); }
        }

        /* About Section */
        .about {
            padding: 12rem 0;
            background: var(--dark-bg);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ff6b35;stop-opacity:0.03" /><stop offset="100%" style="stop-color:%23f7931e;stop-opacity:0.01" /></linearGradient></defs><rect width="1000" height="1000" fill="url(%23grad2)" /></svg>') repeat;
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .about-text h2 {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 900;
            color: white;
            margin-bottom: 3rem;
            line-height: 0.9;
            letter-spacing: -4px;
        }

        .about-text h2 span {
            color: var(--primary-orange);
        }

        .about-text p {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .about-visual {
            position: relative;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-main-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 30px;
            box-shadow: 0 40px 120px rgba(255, 107, 53, 0.3);
        }

        /* Experience Section */
        .experience {
            padding: 12rem 0;
            background: var(--experience-bg);
            position: relative;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
        }

        .section-title {
            font-size: clamp(4rem, 8vw, 8rem);
            font-weight: 900;
            text-align: center;
            margin-bottom: 8rem;
            color: var(--text-dark);
            position: relative;
            letter-spacing: -6px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 6px;
            background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-yellow) 100%);
            border-radius: 3px;
        }

        .experience-intro {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 6rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .experience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto 6rem;
        }

        .experience-card {
            background: var(--timeline-content-bg);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 107, 53, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .experience-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-yellow) 100%);
        }

        .experience-card.featured {
            grid-column: span 1;
            transform: scale(1.02);
            border-color: rgba(255, 107, 53, 0.2);
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.1);
        }

        .experience-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 80px rgba(255, 107, 53, 0.15);
            border-color: rgba(255, 107, 53, 0.3);
        }

        .experience-card.featured:hover {
            transform: scale(1.02) translateY(-8px);
        }

        .company-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-yellow) 100%);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .company-badge.fintech {
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
        }

        .company-badge.consulting {
            background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
        }

        .company-badge.martech {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
        }

        .company-badge.ecommerce {
            background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
        }

        .company-badge.gaming {
            background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
        }

        .company-badge.fmcg {
            background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
        }

        .company-name {
            color: var(--primary-orange);
            font-weight: 800;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .position {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
            line-height: 1.3;
        }

        .description {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }


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

        .tech-stack span {
            background: rgba(255, 107, 53, 0.1);
            color: var(--primary-orange);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
            border: 1px solid rgba(255, 107, 53, 0.2);
        }

        .experience-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 4rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary-orange);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-light);
            font-size: 1rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Skills Section */
        .skills {
            padding: 12rem 0;
            background: var(--darker-bg);
            position: relative;
            overflow: hidden;
        }

        .skills::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%23ff6b35" stroke-width="1"/></pattern></defs><rect width="1000" height="1000" fill="url(%23grid)"/></svg>') repeat;
        }

        .skills .section-title {
            color: white;
            margin-bottom: 10rem;
        }

        .skills-visual-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            margin-bottom: 8rem;
        }

        .skills-visual {
            position: relative;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .skills-main-image {
            width: 100%;
            max-width: 450px;
            height: auto;
            border-radius: 30px;
            box-shadow: 0 40px 120px rgba(255, 107, 53, 0.2);
        }

        .skills-description {
            color: rgba(255,255,255,0.9);
        }

        .skills-description h3 {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 2rem;
            line-height: 1.1;
        }

        .skills-description p {
            font-size: 1.2rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            color: rgba(255,255,255,0.8);
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 8rem;
            position: relative;
            z-index: 2;
        }

        .skill-category {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            padding: 3rem;
            border-radius: 25px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .skill-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-orange), var(--secondary-yellow));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s ease;
        }

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

        .skill-category:hover {
            transform: translateY(-15px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 107, 53, 0.3);
            box-shadow: 0 40px 100px rgba(255, 107, 53, 0.15);
        }

        .skill-category h3 {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .skill-category h3 i {
            color: var(--primary-orange);
            font-size: 1.3rem;
        }

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

        .skill-tag {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
        }

        .skill-tag:hover {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-yellow));
            border-color: var(--primary-orange);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
        }


        /* Skills Visualization Section */
        .skills-visualization {
            padding: 12rem 0;
            background: var(--darker-bg);
            position: relative;
            overflow: hidden;
        }

        .skills-visualization::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%23ff6b35" stroke-width="1"/></pattern></defs><rect width="1000" height="1000" fill="url(%23grid)"/></svg>') repeat;
        }

        .skills-visualization .section-title {
            color: white;
            margin-bottom: 6rem;
        }

        .skills-viz-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .interactive-chart-container-large {
            position: relative;
            width: 100%;
            max-width: 700px;
            height: 500px;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: visible;
            border: 1px solid rgba(255, 107, 53, 0.2);
            box-shadow: 0 30px 80px rgba(255, 107, 53, 0.1);
            margin: 0 auto;
        }

        .chart-description {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
            color: white;
            padding: 2rem;
        }

        .chart-description h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-orange);
        }

        .chart-description p {
            font-size: 1rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        #skillsRadarChart {
            max-width: 100%;
            max-height: 100%;
        }

        /* Contact Section */
        .contact {
            padding: 12rem 0;
            background: var(--dark-bg);
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad3" cx="0%" cy="0%"><stop offset="0%" style="stop-color:%23ff6b35;stop-opacity:0.08" /><stop offset="100%" style="stop-color:%23ff6b35;stop-opacity:0" /></radialGradient></defs><rect width="1000" height="1000" fill="url(%23grad3)" /></svg>') no-repeat center;
            background-size: cover;
        }

        .contact .section-title {
            color: white;
            margin-bottom: 8rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8rem;
            margin-top: 4rem;
            position: relative;
            z-index: 2;
        }

        .contact-info h3 {
            color: white;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .contact-info h3 span {
            color: var(--primary-orange);
        }

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


        .contact-cta {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .cta-card {
            background: var(--form-bg);
            backdrop-filter: blur(20px);
            padding: 4rem;
            border-radius: 25px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            max-width: 500px;
        }

        .cta-card h3 {
            color: white;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .cta-card p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
        }

        .contact-methods {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }


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

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1.2rem 1.5rem;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            background: var(--input-bg);
            color: var(--text-dark);
            font-size: 1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            font-family: 'Inter', sans-serif;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-orange);
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-group textarea {
            min-height: 140px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background: var(--darker-bg);
            color: white;
            text-align: center;
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-yellow));
            color: white;
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            font-size: 1.2rem;
        }

        .social-links a:hover {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
        }

        footer p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
        }

        /* Mobile Styles */
        @media (max-width: 1024px) {
            .nav-container {
                padding: 0 2rem;
            }

            .hero-container,
            .about-container,
            .container {
                padding: 0 2rem;
            }

            .hero-container {
                gap: 4rem;
            }

            .about-container,
            .skills-visual-container,
            .contact-grid {
                gap: 4rem;
            }
        }

        @media (max-width: 768px) {
            body {
                cursor: auto;
                font-size: 14px;
                overflow-x: hidden !important;
            }

            #cursor {
                display: none;
            }

            .container {
                padding: 0 1rem !important;
                max-width: 100% !important;
                overflow-x: hidden;
            }

            /* Ensure no horizontal overflow */
            * {
                max-width: 100% !important;
                box-sizing: border-box !important;
            }

            html,
            body {
                overflow-x: hidden;
                width: 100%;
            }

            .mobile-menu {
                display: block;
            }

            .theme-toggle {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .back-to-top {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 1rem;
            }

            /* Hero Section Mobile Fixes */
            .hero {
                min-height: 100vh !important;
                padding: 6rem 0 3rem 0 !important;
                display: flex !important;
                align-items: center !important;
            }

            .hero-container {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
                padding: 0 1rem !important;
                max-width: 100% !important;
                gap: 0 !important;
                width: 100% !important;
            }

            /* Mobile hero order: stats -> image -> content */
            .hero-stats {
                order: 1 !important;
                justify-content: center !important;
                gap: 1rem !important;
                margin: 0 0 2rem 0 !important;
                padding: 1.5rem 2rem !important;
                flex-wrap: wrap !important;
                width: 100% !important;
                max-width: 350px !important;
            }

            .hero-stat {
                min-width: 80px !important;
            }

            .hero-stat-number {
                font-size: 1.8rem !important;
            }

            .hero-stat-label {
                font-size: 0.8rem !important;
            }

            .hero-visual {
                order: 2 !important;
                height: 400px !important;
                margin: 0 0 2rem 0 !important;
                width: 100% !important;
                display: flex !important;
                justify-content: center !important;
                align-items: center !important;
            }

            .hero-main-graphic {
                width: 280px !important;
                height: 350px !important;
                max-width: 280px !important;
                border-radius: 25px !important;
            }

            .hero-content {
                order: 3 !important;
                padding: 0 !important;
                width: 100% !important;
            }

            .hero-content h1 {
                font-size: 2.2rem !important;
                line-height: 1.1 !important;
                margin-bottom: 1rem !important;
                letter-spacing: -2px !important;
            }

            .hero-content .subtitle {
                font-size: 1rem !important;
                margin-bottom: 1.5rem !important;
            }

            .hero-content .description {
                font-size: 0.95rem !important;
                line-height: 1.6 !important;
                margin-bottom: 2rem !important;
                max-width: none !important;
                padding: 0 1rem !important;
            }

            .cta-buttons {
                justify-content: center !important;
                flex-wrap: wrap !important;
                gap: 1rem !important;
            }

            /* Navigation Mobile */
            .carousel-track {
                gap: 2rem;
                animation-duration: 25s;
            }

            .carousel-slide {
                min-width: 120px;
            }

            .client-logo {
                height: 40px;
                max-width: 100px;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--nav-scrolled-bg);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 2rem;
                border-radius: 0 0 20px 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu li {
                margin: 0.5rem 0;
            }

            .nav-menu a {
                padding: 1rem 0;
                font-size: 1.1rem;
                display: block;
                text-align: center;
                border-radius: 10px;
                transition: all 0.3s ease;
            }

            .nav-menu a:hover {
                background: rgba(255, 107, 53, 0.1);
                transform: none;
            }

            /* Touch-friendly buttons */
            .mobile-menu,
            .theme-toggle {
                min-height: 44px;
                min-width: 44px;
                touch-action: manipulation;
            }

            /* Improved touch targets */
            .cta-btn {
                min-height: 48px;
                padding: 1rem 2rem;
                font-size: 1rem;
                touch-action: manipulation;
            }

            /* Contact form mobile */
            .contact input,
            .contact textarea,
            .contact button {
                min-height: 48px;
                font-size: 16px; /* Prevent zoom on iOS */
                touch-action: manipulation;
            }

            /* Image optimization for mobile */
            .hero-main-graphic,
            .about-main-image,
            .skills-main-image,
            .project-image {
                max-width: 100%;
                height: auto;
                border-radius: 15px;
            }

            .floating-element {
                display: none !important;
            }

            /* Ensure all images are responsive */
            img {
                max-width: 100%;
                height: auto;
            }

            /* Project card images */
            .ai-project-card img,
            .portfolio-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: inherit;
            }

            /* Client logos mobile */
            .client-logo {
                max-height: 40px;
                width: auto;
                object-fit: contain;
            }

            /* About Section Mobile */
            .about-container,
            .skills-visual-container,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            /* Experience Mobile */
            .experience-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-bottom: 4rem;
            }

            .experience-card {
                padding: 2rem;
            }

            .experience-card.featured {
                transform: none;
            }

            .experience-card.featured:hover {
                transform: translateY(-8px);
            }

            .company-name {
                font-size: 1.3rem;
            }

            .position {
                font-size: 1.1rem;
            }

            .experience-stats {
                gap: 2rem;
                flex-wrap: wrap;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            /* CTA and Elements */
            .cta-buttons {
                justify-content: center;
                flex-direction: column;
                gap: 1rem;
            }

            .floating-element {
                display: none;
            }

            /* Skills Mobile */
            .skills {
                padding: 6rem 0;
            }

            .skills-grid,
            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .interactive-chart-container-large {
                height: 350px;
                max-width: 100%;
                margin: 0 1rem;
            }

            .skills-viz-container {
                gap: 2rem;
                padding: 0 1rem;
            }

            .chart-description {
                padding: 1rem;
            }

            #skillsRadarChart {
                max-width: 100%;
                height: auto;
            }

            /* AI Projects Section Mobile */
            .ai-projects {
                padding: 6rem 0 !important;
            }

            /* AI Tools Section Mobile */
            .ai-tools-section {
                margin: 4rem 0 !important;
            }

            .tools-header h3 {
                font-size: 1.8rem !important;
            }

            .tools-header p {
                font-size: 1rem !important;
                padding: 0 1rem !important;
            }

            .tools-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)) !important;
                gap: 1.5rem !important;
                padding: 0 1rem !important;
            }

            .tool-item {
                padding: 1rem !important;
            }

            .tool-icon {
                width: 50px !important;
                height: 50px !important;
            }

            .tool-name {
                font-size: 0.8rem !important;
            }

            .ai-categories {
                gap: 4rem !important;
            }

            .ai-intro h3 {
                font-size: 1.8rem !important;
                line-height: 1.2 !important;
            }

            .ai-intro p {
                font-size: 1rem !important;
            }

            .category-header {
                text-align: center !important;
                margin-bottom: 2rem !important;
            }

            .category-header h3 {
                font-size: 1.4rem !important;
                margin-bottom: 1rem !important;
            }

            .category-header p {
                font-size: 0.95rem !important;
            }

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

            .ai-project-card {
                min-width: 100% !important;
                margin: 0 !important;
            }

            /* Websites - Stack vertically */
            .ai-category[data-category="websites"] .project-content {
                grid-template-columns: 1fr !important;
                min-height: auto !important;
                gap: 1.5rem !important;
            }

            .ai-category[data-category="websites"] .project-image {
                height: 200px !important;
                min-height: 200px !important;
                width: 100% !important;
                order: -1;
            }

            .ai-category[data-category="websites"] .project-details {
                padding: 1.5rem !important;
            }

            /* Apps - Stack vertically on mobile for better readability */
            .ai-category[data-category="apps"] .projects-grid {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
            }

            .ai-category[data-category="apps"] .ai-project-card-detailed {
                display: flex !important;
                flex-direction: column !important;
                min-height: auto !important;
                padding: 1.5rem !important;
            }

            .ai-category[data-category="apps"] .project-content {
                display: flex !important;
                flex-direction: column !important;
                gap: 1.5rem !important;
                min-height: auto !important;
                align-items: center !important;
            }

            .ai-category[data-category="apps"] .project-image {
                width: 200px !important;
                height: 350px !important;
                min-height: 350px !important;
                flex-shrink: 0 !important;
                order: 1 !important;
            }

            .ai-category[data-category="apps"] .project-details {
                width: 100% !important;
                padding: 0 !important;
                text-align: center !important;
                order: 2 !important;
            }

            .ai-category[data-category="apps"] .project-details h4 {
                font-size: 1.2rem !important;
                margin-bottom: 1rem !important;
            }

            .ai-category[data-category="apps"] .project-description {
                font-size: 0.95rem !important;
                margin-bottom: 1rem !important;
                line-height: 1.5 !important;
            }

            .ai-category[data-category="apps"] .feature-list {
                margin-bottom: 1rem !important;
            }

            .ai-category[data-category="apps"] .feature-list li {
                font-size: 0.85rem !important;
                margin-bottom: 0.5rem !important;
            }

            /* Videos and Music - Regular cards */
            .ai-category[data-category="videos"] .project-image,
            .ai-category[data-category="music"] .project-image {
                height: 180px !important;
                min-height: 180px !important;
            }

            .project-details {
                padding: 1.5rem;
            }
        }

        /* Tablet responsive adjustments */
        @media (max-width: 1024px) {
            .project-content {
                grid-template-columns: 400px 1fr;
                min-height: 350px;
            }

            .ai-project-card-detailed .project-image {
                min-height: 350px;
            }

            .project-details {
                padding: 2rem;
            }

            /* Smaller apps grid on tablets */
            .ai-category[data-category="apps"] .projects-grid {
                gap: 1.5rem;
            }

            .ai-category[data-category="apps"] .project-content {
                grid-template-columns: 240px 1fr;
                gap: 1.5rem;
                min-height: 450px;
            }

            .ai-category[data-category="apps"] .project-image {
                width: 240px;
                height: 100%;
                min-height: 450px;
            }

            .ai-category[data-category="apps"] .ai-project-card-detailed {
                min-height: 450px;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Selection styles */
        ::selection {
            background: var(--primary-orange);
            color: white;
        }

        /* Image placeholders - Replace these URLs with your actual hosted images */
        .hero-main-graphic {
            /* Professional portrait for hero */
            background: url('../img/ja_2025.png') center/cover;
            background-color: #f8f9fa;
        }

        .floating-element.element-1 {
            /* Circular data visualization */
            background: url('../img/enigmaraigne_A_modern_abstract_data_visualization_or_geometri_0dd71143-e929-4944-a7b1-84a08b214709_1.png') center/cover;
            background-color: #ff6b35;
        }

        .floating-element.element-2 {
            /* Geometric data patterns */
            background: url('../img/enigmaraigne_2-3_abstractgeometric_shapes_or_data-themed_grap_445d26c9-b358-4a23-9135-f94238f4bb44_0.png') center/cover;
            background-color: #f7931e;
        }

        .floating-element.element-3 {
            /* Abstract geometric network */
            background: url('../img/enigmaraigne_A_modern_abstract_data_visualization_or_geometri_7de68f61-1f80-41da-966e-0e6c7861cb84_3.png') center/cover;
            background-color: #ff6b35;
        }

        .about-main-image {
            /* Professional portrait for about section */
            background: url('../img/ja_3.png') center/cover;
            background-color: #f8f9fa;
        }

        .skills-main-image {
            /* Complex dashboard visualization */
            background: url('../img/enigmaraigne_Some_stylized_charts_graphs_or_data_visualizatio_c700b1a5-6185-422a-86c5-6b63a7c64b5c_0.png') center/cover;
            background-color: #1a1a1a;
        }

        .portfolio-image:nth-child(1) {
            /* Analytics dashboard visualization */
            background: url('../img/enigmaraigne_Some_stylized_charts_graphs_or_data_visualizatio_c700b1a5-6185-422a-86c5-6b63a7c64b5c_1.png') center/cover;
            background-color: #0a0a0a;
        }

        .portfolio-image:nth-child(2) {
            /* 3D data visualization */
            background: url('../img/enigmaraigne_A_modern_abstract_data_visualization_or_geometri_bc9e96f7-7d3a-40e4-8b34-19091a350164_3.png') center/cover;
            background-color: #f8f9fa;
        }

        .portfolio-image:nth-child(3) {
            /* Data pattern visualization */
            background: url('../img/enigmaraigne_Maybe_a_subtle_pattern_or_texture_that_represent_7fcbeca1-f743-4a0c-9232-6512cba3e1f5_2.png') center/cover;
            background-color: #ff6b35;
        }
            0% {
                opacity: 0;
                transform: scale(0.8);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Enhanced hover effects */
        .interactive-element {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-yellow));
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            z-index: 1000;
            box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
        }

        /* Client logos section */
        .clients {
            padding: 8rem 0;
            background: var(--client-bg);
            border-top: 1px solid rgba(255, 107, 53, 0.1);
        }

        .carousel-container {
            overflow: hidden;
            margin-top: 4rem;
            width: 100%;
            position: relative;
        }

        .carousel-container::before, 
        .carousel-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .carousel-container::before {
            left: 0;
            background: linear-gradient(90deg, var(--client-bg) 0%, transparent 100%);
        }

        .carousel-container::after {
            right: 0;
            background: linear-gradient(270deg, var(--client-bg) 0%, transparent 100%);
        }

        .carousel-track {
            display: flex;
            animation: scroll 30s linear infinite;
            gap: 4rem;
            align-items: center;
        }

        .carousel-slide {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 150px;
        }

        .client-logo {
            height: 50px;
            width: auto;
            max-width: 120px;
            object-fit: contain;
            opacity: 0.6;
            transition: all 0.4s ease;
            filter: grayscale(100%) brightness(1.1);
            background: transparent;
        }

        .carousel-slide:hover .client-logo {
            opacity: 1;
            filter: grayscale(0%) brightness(1);
            transform: scale(1.05);
        }

        /* Dark theme specific adjustments */
        [data-theme="dark"] .client-logo {
            filter: grayscale(100%) brightness(1.3) invert(0.9);
        }

        [data-theme="dark"] .carousel-slide:hover .client-logo {
            filter: grayscale(0%) brightness(1) invert(0.9);
        }

        /* Carousel animation */
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Pause animation on hover */
        .carousel-track:hover {
            animation-play-state: paused;
        }

        [data-theme="dark"] .form-group input::placeholder,
        [data-theme="dark"] .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        [data-theme="dark"] .cta-card {
            background: rgba(42, 42, 42, 0.9);
        }

        [data-theme="light"] .cta-card {
            background: rgba(255, 255, 255, 0.9);
        }

        [data-theme="light"] .cta-card h3 {
            color: var(--text-dark);
        }

        [data-theme="light"] .cta-card p {
            color: var(--text-light);
        }

        /* Hero stats theme support */
        [data-theme="dark"] .hero-stats {
            background: rgba(42, 42, 42, 0.95);
            border-color: rgba(255, 107, 53, 0.4);
        }

        [data-theme="dark"] .hero-stat-label {
            color: rgba(255, 255, 255, 0.9);
        }

        [data-theme="light"] .hero-stats {
            background: rgba(255, 255, 255, 0.95);
            border-color: rgba(255, 107, 53, 0.3);
        }

        [data-theme="light"] .hero-stat-label {
            color: var(--text-dark);
        }

        /* AI Projects Section */
        .ai-projects {
            padding: 12rem 0;
            background: var(--darker-bg);
            position: relative;
            overflow: hidden;
        }

        .ai-projects::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.02"><defs><pattern id="circuit" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,50 L50,50 L50,0 L100,0 M50,50 L50,100 L100,100" fill="none" stroke="%23ff6b35" stroke-width="1"/><circle cx="25" cy="25" r="3" fill="%23ff6b35"/><circle cx="75" cy="75" r="3" fill="%23f7931e"/></pattern></defs><rect width="1000" height="1000" fill="url(%23circuit)"/></svg>') repeat;
        }

        .ai-projects .section-title {
            color: white;
            margin-bottom: 4rem;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .ai-intro {
            text-align: center;
            margin-bottom: 8rem;
            position: relative;
            z-index: 2;
        }

        .ai-intro h3 {
            color: white;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .ai-intro p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto;
        }

        .ai-intro strong {
            color: var(--primary-orange);
            font-weight: 600;
        }

        /* AI Tools Section */
        .ai-tools-section {
            margin: 6rem 0;
            position: relative;
            z-index: 2;
        }

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

        .tools-header i {
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 1rem;
            display: block;
        }

        .tools-header h3 {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .tools-header p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .tool-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .tool-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 107, 53, 0.3);
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
        }

        .tool-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 1rem;
            border-radius: 15px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .tool-logo {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 8px;
            background: transparent;
        }

        .tool-logo:not([src*=".svg"]) {
            object-fit: cover;
        }

        .tool-logo[src*=".svg"] {
            filter: brightness(0) invert(1);
        }

        /* Fallback for broken images */
        .tool-logo:not([src]) {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-yellow));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1rem;
        }

        .tool-name {
            font-size: 0.9rem;
            font-weight: 600;
            color: white;
            text-align: center;
            letter-spacing: 0.5px;
        }

        .ai-categories {
            display: flex;
            flex-direction: column;
            gap: 6rem;
            position: relative;
            z-index: 2;
        }

        .ai-category {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .ai-category.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .category-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .category-header i {
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 1rem;
            display: block;
        }

        .category-header h3 {
            color: white;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .category-header p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

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

        /* Special grid for apps - side by side */
        .ai-category[data-category="apps"] .projects-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        /* Special grid for websites with detailed cards */
        .ai-category[data-category="websites"] .projects-grid {
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }

        .ai-project-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
        }

        .ai-project-card:hover {
            transform: translateY(-15px) scale(1.02);
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--primary-orange);
            box-shadow: 0 30px 80px rgba(255, 107, 53, 0.2);
        }

        .project-image {
            position: relative;
            height: 100%;
            overflow: hidden;
            min-height: 400px;
        }

        /* Vertical mobile screenshots for apps */
        .ai-category[data-category="apps"] .project-image {
            height: 100%;
            min-height: 550px;
            width: 280px;
            border-radius: 15px;
            overflow: hidden;
        }

        .ai-category[data-category="apps"] .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

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

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

        .ai-project-card-detailed:hover .project-image img {
            transform: scale(1.05);
        }

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(247, 147, 30, 0.9));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
            color: white;
        }

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

        .project-overlay i {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .project-overlay span {
            font-weight: 600;
            font-size: 1.1rem;
        }

        .project-info {
            padding: 2rem;
        }

        .project-info h4 {
            color: white;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }

        .project-info p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }

        .tech-tags span {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-yellow));
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        /* Detailed App Cards */
        .ai-project-card-detailed {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            margin-bottom: 3rem;
        }

        /* App cards specific styling */
        .ai-category[data-category="apps"] .ai-project-card-detailed {
            padding: 2rem;
            margin-bottom: 2rem;
            min-height: 550px;
        }

        .ai-project-card-detailed:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--primary-orange);
            box-shadow: 0 30px 80px rgba(255, 107, 53, 0.2);
        }

        .project-content {
            display: grid;
            grid-template-columns: 500px 1fr;
            gap: 0;
            min-height: 400px;
        }

        /* Horizontal layout for apps: image + text side by side */
        .ai-category[data-category="apps"] .project-content {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 2rem;
            min-height: 550px;
            align-items: stretch;
        }

        .project-details {
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* Compact details for apps */
        .ai-category[data-category="apps"] .project-details {
            padding: 0;
            align-self: start;
        }

        .ai-category[data-category="apps"] .project-details h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: white;
        }

        .ai-category[data-category="apps"] .project-description {
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .ai-category[data-category="apps"] .feature-list {
            margin-bottom: 1.5rem;
        }

        .ai-category[data-category="apps"] .feature-list li {
            font-size: 0.85rem;
            margin-bottom: 0.6rem;
        }

        .ai-category[data-category="apps"] .tech-tags {
            margin-top: auto;
        }

        .project-description {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .feature-list {
            margin-bottom: 2rem;
        }

        .feature-list ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-list li {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .feature-list li::before {
            content: '▶';
            color: var(--primary-orange);
            font-size: 0.7rem;
            position: absolute;
            left: 0;
            top: 0.1rem;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--dark-bg);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-yellow));
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--secondary-yellow);
        }

        /* Mentoring Section */
        .mentoring {
            padding: 12rem 0;
            background: var(--light-gray);
            position: relative;
            overflow: hidden;
        }

        .mentoring::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="grad3" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23f7931e;stop-opacity:0.02" /><stop offset="100%" style="stop-color:%23ff6b35;stop-opacity:0.01" /></linearGradient></defs><rect width="1000" height="1000" fill="url(%23grad3)" /></svg>') repeat;
        }

        .mentoring-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .mentoring-text h2 {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 3rem;
            line-height: 0.9;
            letter-spacing: -4px;
        }

        .mentoring-text h2 span {
            color: var(--primary-orange);
        }

        .mentoring-intro {
            font-size: 1.4rem;
            color: var(--primary-orange);
            line-height: 1.6;
            margin-bottom: 2.5rem;
            font-weight: 500;
        }

        .mentoring-text p {
            font-size: 1.2rem;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .mentoring-highlights {
            margin: 3rem 0;
            padding: 2.5rem;
            background: rgba(255, 107, 53, 0.05);
            border-radius: 20px;
            border-left: 4px solid var(--primary-orange);
        }

        .mentoring-highlights h3 {
            font-size: 1.4rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .mentoring-list {
            list-style: none;
            padding: 0;
        }

        .mentoring-list li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.6;
            word-spacing: normal;
            white-space: normal;
        }

        .mentoring-list li i {
            color: var(--primary-orange);
            margin-right: 1rem;
            width: 20px;
            flex-shrink: 0;
        }

        .mentoring-list li strong {
            font-weight: 600;
            color: var(--text-dark);
        }

        .mentoring-closing {
            font-style: italic;
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 500;
            font-size: 1.3rem;
        }

        .mentoring-visual {
            position: relative;
            height: 600px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .mentoring-main-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 30px;
            box-shadow: 0 40px 120px rgba(247, 147, 30, 0.3);
            margin-bottom: 2rem;
        }

        .mate-academy-logo {
            text-align: center;
            margin-top: 2rem;
        }

        .mate-academy-logo img {
            width: 80px;
            height: auto;
            margin-bottom: 0.5rem;
        }

        .logo-caption {
            font-size: 0.9rem;
            color: var(--text-lighter);
            font-style: italic;
            margin: 0;
        }

        /* Responsive Design for Mentoring Section */
        @media (max-width: 1024px) {
            .mentoring-container {
                gap: 4rem;
            }
        }

        @media (max-width: 768px) {
            .mentoring-container {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .mentoring-visual {
                order: -1;
                height: auto;
            }

            .mentoring-highlights {
                text-align: left;
            }

            .mentoring-list li {
                justify-content: flex-start;
            }
        }

        /* AI Images Section */
        .ai-images {
            padding: 12rem 0;
            background: var(--dark-bg);
            position: relative;
            overflow: hidden;
        }

        .ai-images::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="grad4" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ff6b35;stop-opacity:0.05" /><stop offset="100%" style="stop-color:%23f7931e;stop-opacity:0.02" /></linearGradient></defs><rect width="1000" height="1000" fill="url(%23grad4)" /></svg>') repeat;
        }

        .ai-images .container {
            position: relative;
            z-index: 2;
        }

        .ai-images .section-title {
            color: var(--secondary-yellow);
            text-shadow: 0 4px 20px rgba(247, 147, 30, 0.3);
            font-weight: 900;
        }

        .ai-images-intro {
            text-align: center;
            margin-bottom: 6rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .ai-images-intro h3 {
            font-size: 2.2rem;
            color: white;
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .ai-images-intro p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
        }

        /* AI Expertise List Styling */
        .ai-expertise-list {
            margin: 2.5rem 0;
            padding: 2.5rem;
            background: rgba(255, 107, 53, 0.08);
            border-radius: 20px;
            border-left: 5px solid var(--primary-orange);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .ai-expertise-list h4 {
            font-size: 1.4rem;
            color: var(--primary-orange);
            margin-bottom: 1.5rem;
            font-weight: 700;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .ai-expertise-list ul {
            list-style: none;
            padding: 0;
        }

        .ai-expertise-list li {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0.8rem;
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
        }

        .ai-expertise-list li::before {
            content: '•';
            color: var(--secondary-yellow);
            font-weight: bold;
            font-size: 1.3rem;
            flex-shrink: 0;
            line-height: 1.2;
        }

        /* Automation Agents Section */
        .automation-agents-section {
            margin-top: 8rem;
            padding: 4rem 0;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 20px;
            border: 1px solid rgba(255, 107, 53, 0.1);
        }

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

        .automation-header i {
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 1rem;
        }

        .automation-header h3 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .automation-header p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .automation-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .automation-visual {
            text-align: center;
        }

        .automation-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
            transition: transform 0.3s ease;
        }

        .automation-image:hover {
            transform: scale(1.05);
        }

        .automation-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .automation-capabilities h4 {
            font-size: 1.4rem;
            color: var(--secondary-yellow);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .capabilities-list {
            list-style: none;
            padding: 0;
        }

        .capabilities-list li {
            display: flex;
            align-items: center;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1rem;
            padding: 0.5rem 0;
        }

        .capabilities-list li i {
            color: var(--primary-orange);
            margin-right: 1rem;
            width: 20px;
            flex-shrink: 0;
        }

        /* Responsive Design for Automation Section */
        @media (max-width: 1024px) {
            .automation-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .automation-header h3 {
                font-size: 2rem;
            }

            .automation-agents-section {
                margin-top: 6rem;
                padding: 3rem 1rem;
            }
        }

        @media (max-width: 768px) {
            .automation-header h3 {
                font-size: 1.8rem;
            }

            .automation-header p {
                font-size: 1.1rem;
            }

            .automation-content {
                padding: 0 1rem;
                gap: 2rem;
            }

            .automation-agents-section {
                margin-top: 4rem;
                padding: 2rem 1rem;
            }
        }

        /* Simple image loading optimization */
        img {
            transition: opacity 0.3s ease;
        }

        img:not(.loaded) {
            opacity: 0.7;
        }

        img.loaded {
            opacity: 1;
        }

        /* Image Carousel Styles */
        .image-carousel-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .image-carousel-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 30px;
            padding: 2rem;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 107, 53, 0.2);
            box-shadow: 0 40px 120px rgba(0, 0, 0, 0.3);
        }

        .image-carousel-track {
            width: 500px;
            height: 650px;
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            margin: 0 auto;
            max-width: 90%;
        }

        .image-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: translateX(100%);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 20px;
            overflow: hidden;
        }

        .image-slide.active {
            opacity: 1;
            transform: translateX(0);
        }

        .image-slide.prev {
            transform: translateX(-100%);
        }

        .image-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            transition: transform 0.3s ease;
            background: #000;
        }

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

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 3rem 2rem 2rem;
            color: white;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .image-slide:hover .image-overlay {
            opacity: 1;
            transform: translateY(0);
        }

        .image-overlay h4 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--primary-orange);
        }

        .image-overlay p {
            font-size: 1rem;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Carousel Navigation */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 107, 53, 0.9);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .carousel-nav:hover {
            background: var(--primary-orange);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
        }

        .carousel-prev {
            left: 0;
        }

        .carousel-next {
            right: 0;
        }

        /* Carousel Indicators */
        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 3rem;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255, 107, 53, 0.3);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active,
        .indicator:hover {
            background: var(--primary-orange);
            border-color: var(--primary-orange);
            transform: scale(1.2);
        }

        /* Responsive Design for AI Images */
        @media (max-width: 1024px) {
            .ai-images {
                padding: 8rem 0;
            }

            .image-carousel-track {
                width: 400px;
                height: 550px;
            }

            .carousel-nav {
                width: 50px;
                height: 50px;
                font-size: 1rem;
            }

            .ai-images-intro h3 {
                font-size: 1.8rem;
            }

            .ai-images-intro p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            .ai-images {
                padding: 6rem 0;
            }

            .image-carousel-wrapper {
                padding: 1rem;
                margin: 0 1rem;
            }

            .image-carousel-track {
                width: 320px;
                height: 450px;
            }

            .carousel-nav {
                width: 45px;
                height: 45px;
                font-size: 0.9rem;
            }

            .carousel-prev {
                left: -0.5rem;
            }

            .carousel-next {
                right: -0.5rem;
            }

            .image-overlay {
                padding: 2rem 1.5rem 1.5rem;
            }

            .image-overlay h4 {
                font-size: 1.3rem;
            }

            .image-overlay p {
                font-size: 0.9rem;
            }

            .ai-images-intro {
                margin-bottom: 4rem;
            }

            .ai-images-intro h3 {
                font-size: 1.6rem;
            }

            .ai-images-intro p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .image-carousel-track {
                width: 280px;
                height: 400px;
            }

            .ai-images {
                padding: 4rem 0;
            }
        }
