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

        :root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --primary-light: #818cf8;
            --secondary: #ec4899;
            --accent: #06b6d4;
            --accent-2: #8b5cf6;
        }

        [data-theme="dark"] {
            --bg-primary: #030014;
            --bg-secondary: #0a0a1a;
            --bg-tertiary: #12122a;
            --bg-card: rgba(255, 255, 255, 0.02);
            --bg-card-hover: rgba(255, 255, 255, 0.05);
            --text-primary: #ffffff;
            --text-secondary: #94a3b8;
            --text-muted: #64748b;
            --border-color: rgba(255, 255, 255, 0.06);
            --border-color-hover: rgba(255, 255, 255, 0.12);
            --glow: rgba(99, 102, 241, 0.4);
        }

        [data-theme="light"] {
            --bg-primary: #fafbfc;
            --bg-secondary: #ffffff;
            --bg-tertiary: #f1f5f9;
            --bg-card: rgba(0, 0, 0, 0.02);
            --bg-card-hover: rgba(0, 0, 0, 0.04);
            --text-primary: #0f172a;
            --text-secondary: #475569;
            --text-muted: #94a3b8;
            --border-color: rgba(0, 0, 0, 0.06);
            --border-color-hover: rgba(0, 0, 0, 0.12);
            --glow: rgba(99, 102, 241, 0.2);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.7;
            transition: background 0.5s ease, color 0.5s ease;
        }

        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: transparent;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 3px;
        }

        /* Preloader */
        .page-loader {
            position: fixed;
            inset: 0;
            background: var(--bg-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: all 0.6s ease;
        }

        .page-loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-wrapper {
            position: relative;
            width: 130px;
            height: 130px;
        }

        @keyframes dropAndShift {
            0% { transform: translate(0px, 15px); }
            16.67% { transform: translate(80px, 13px); }
            33.34% { transform: translate(40px, 10px); }
            50.01% { transform: translate(40px, -30px); }
            66.68% { transform: translate(40px, 55px); }
            83.35% { transform: translate(40px, 10px); }
            100% { transform: translate(0px, 15px); }
        }

        .Strich1 {
            position: absolute;
            width: 130px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 25px;
            transform: rotate(45deg);
            box-shadow: 0 4px 20px var(--glow);
            top: 50%;
            left: 50%;
            margin-top: -25px;
            margin-left: -65px;
        }

        .Strich2 {
            position: absolute;
            width: 130px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            border-radius: 25px;
            transform: rotate(-45deg);
            box-shadow: 0 4px 20px var(--glow);
            top: 50%;
            left: 50%;
            margin-top: -25px;
            margin-left: -65px;
        }

        .bubble, .bubble1, .bubble2, .bubble3, .bubble4 {
            position: absolute;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            z-index: 5;
        }

        .bubble {
            top: 50%;
            left: 50%;
            margin-top: -10px;
            margin-left: -50px;
            background: radial-gradient(circle at 30% 30%, #ffb3c1, #e64980, #ff8787);
            animation: dropAndShift 5s ease-in-out infinite;
        }

        .bubble1 {
            top: 50%;
            left: 50%;
            margin-top: -10px;
            margin-left: -55px;
            background: radial-gradient(circle at 30% 30%, #edb3ff, #ac49e6, #fb87ff);
            animation: dropAndShift 6s ease-in-out infinite;
        }

        .bubble2 {
            top: 50%;
            left: 50%;
            margin-top: -10px;
            margin-left: -52px;
            background: radial-gradient(circle at 30% 30%, #b3d8ff, #4963e6, #87a7ff);
            animation: dropAndShift 4s ease-in-out infinite;
        }

        .bubble3 {
            top: 50%;
            left: 50%;
            margin-top: -10px;
            margin-left: -53px;
            background: radial-gradient(circle at 30% 30%, #b3ffbc, #35a32f, #75ba61);
            animation: dropAndShift 7s ease-in-out infinite;
        }

        .bubble4 {
            top: 50%;
            left: 50%;
            margin-top: -10px;
            margin-left: -48px;
            background: radial-gradient(circle at 30% 30%, #fffab3, #e6c849, #ffeb87);
            animation: dropAndShift 5.5s ease-in-out infinite;
        }

        /* Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .bg-grid {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
        }

        .gradient-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.4;
        }

        [data-theme="light"] .gradient-blob {
            opacity: 0.15;
        }

        .blob-1 {
            width: 600px;
            height: 600px;
            background: linear-gradient(135deg, var(--primary), var(--accent-2));
            top: -200px;
            left: -100px;
        }

        .blob-2 {
            width: 500px;
            height: 500px;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            bottom: -150px;
            right: -100px;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 15px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            display: flex;
            align-items: center;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 100px;
            padding: 6px 6px 6px 16px;
            backdrop-filter: blur(20px);
            transition: all 0.4s ease;
            max-width: calc(100% - 30px);
        }

        .navbar.scrolled {
            background: rgba(3, 0, 20, 0.95);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        [data-theme="light"] .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            margin-right: 20px;
        }

        .nav-logo img {
            width: 32px;
            height: 32px;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.8rem;
            padding: 8px 14px;
            border-radius: 50px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--text-primary);
            background: var(--bg-card-hover);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-left: 15px;
        }

        .theme-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text-primary);
            font-size: 0.85rem;
        }

        .theme-btn:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
        }

        .nav-cta {
            padding: 8px 16px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50px;
            color: white;
            font-weight: 600;
            font-size: 0.8rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px var(--glow);
        }

        .menu-toggle {
            display: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 16px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* ==================== HERO SECTION - LEFT RIGHT LAYOUT ==================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 100px 5%;
        }

        /* Animated Orbs */
        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0;
            pointer-events: none;
        }

        .hero-orb-1 {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, var(--primary), var(--accent-2));
            top: 10%;
            left: 5%;
        }

        .hero-orb-2 {
            width: 350px;
            height: 350px;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            bottom: 10%;
            right: 5%;
        }

        /* Hero Container */
        .hero-container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        /* Left Content */
        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            width: fit-content;
            padding: 10px 20px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 50px;
            backdrop-filter: blur(20px);
            opacity: 0;
            transform: scale(1.3);
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: linear-gradient(135deg, #22c55e, #16a34a);
            border-radius: 50%;
            position: relative;
        }

        .hero-badge-dot::after {
            content: '';
            position: absolute;
            inset: -3px;
            border: 2px solid #22c55e;
            border-radius: 50%;
            animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
        }

        @keyframes ping {
            75%, 100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        .hero-badge span {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-secondary);
        }

        /* Title */
        .hero-title {
            overflow: hidden;
        }

        .hero-title h1 {
            font-family: 'Syne', sans-serif;
            font-size: clamp(2.8rem, 7vw, 6rem);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -0.02em;
        }

        .hero-title-line {
            display: block;
            overflow: hidden;
        }

        .hero-title-line-inner {
            display: inline-block;
            opacity: 0;
            transform: translateY(100%);
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientMove 5s ease infinite;
        }

        @keyframes gradientMove {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .outline-text {
            -webkit-text-stroke: 2px var(--text-primary);
            -webkit-text-fill-color: transparent;
        }

        .italic-text {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-weight: 400;
        }

        /* Description */
        .hero-description {
            opacity: 0;
            transform: translateY(30px);
        }

        .hero-description p {
            font-size: 1.15rem;
            line-height: 1.7;
            color: var(--text-secondary);
            max-width: 480px;
        }

        /* Right Logo */
        .hero-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-logo-wrapper {
            position: relative;
            width: 100%;
            max-width: 400px;
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: scale(1.5);
        }

        /* Glow Behind Logo */
        .hero-logo-glow {
            position: absolute;
            width: 70%;
            height: 70%;
            background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
            opacity: 0.4;
            filter: blur(60px);
            animation: glowPulse 4s ease-in-out infinite;
        }

        @keyframes glowPulse {
            0%, 100% { transform: scale(1); opacity: 0.4; }
            50% { transform: scale(1.2); opacity: 0.6; }
        }

        /* Logo Image */
        .hero-logo-img {
            width: 60%;
            max-width: 280px;
            height: auto;
            object-fit: contain;
            position: relative;
            z-index: 2;
            filter: drop-shadow(0 20px 50px var(--glow));
        }

        /* Floating Elements Around Logo */
        .hero-float {
            position: absolute;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            opacity: 0;
        }

        .hero-float-1 {
            width: 60px;
            height: 60px;
            top: 5%;
            left: 10%;
            animation: float1 6s ease-in-out infinite;
        }

        .hero-float-2 {
            width: 40px;
            height: 40px;
            top: 15%;
            right: 5%;
            animation: float2 5s ease-in-out infinite;
        }

        .hero-float-3 {
            width: 50px;
            height: 50px;
            bottom: 10%;
            left: 5%;
            animation: float3 7s ease-in-out infinite;
        }

        .hero-float-4 {
            width: 35px;
            height: 35px;
            bottom: 20%;
            right: 10%;
            animation: float4 5.5s ease-in-out infinite;
        }

        @keyframes float1 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(15px, -20px); }
        }

        @keyframes float2 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-10px, 15px); }
        }

        @keyframes float3 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(20px, -10px); }
        }

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

        /* Scroll Indicator */
        .hero-scroll {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            opacity: 0;
        }

        .hero-scroll span {
            font-family: 'Caveat', cursive;
            font-size: 1rem;
            color: var(--text-muted);
        }

        .hero-scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, var(--primary), transparent);
            position: relative;
            overflow: hidden;
        }

        .hero-scroll-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: var(--secondary);
            animation: scrollLine 1.5s ease-in-out infinite;
        }

        @keyframes scrollLine {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(200%); }
        }

        /* Section Styles */
        section {
            padding: 100px 5%;
            position: relative;
        }

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

        .section-header {
            margin-bottom: 60px;
        }

        .section-header.centered {
            text-align: center;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }

        .section-label-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
        }

        .section-label-text {
            font-family: 'Caveat', cursive;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary);
        }

        /* Services Section Title */
        .services .section-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            letter-spacing: 3px;
            line-height: 1;
            margin-bottom: 18px;
        }

        .services .section-title .highlight {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .services .section-title .italic {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            letter-spacing: 0;
        }

        /* Portfolio Section Title */
        .portfolio .section-title {
            font-family: 'Syne', sans-serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 18px;
        }

        .portfolio .section-title .cursive {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-weight: 400;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Contact Section Title */
        .contact .section-title {
            font-family: 'Syne', sans-serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 18px;
        }

        .contact .section-title .cursive {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-weight: 400;
            color: var(--secondary);
        }

        .section-title .highlight {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-desc {
            font-size: 1rem;
            color: var(--text-secondary);
            max-width: 550px;
        }

        .section-header.centered .section-desc {
            margin: 0 auto;
        }

        /* Services Section */
        .services {
            background: var(--bg-secondary);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 35px 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .service-num {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            color: var(--border-color);
            position: absolute;
            top: 15px;
            right: 20px;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-num {
            color: var(--primary);
            opacity: 0.4;
        }

        .service-icon {
            width: 55px;
            height: 55px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: white;
            margin-bottom: 22px;
        }

        .service-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .service-card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 18px;
        }

        .service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .service-tag {
            padding: 4px 10px;
            border-radius: 15px;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            font-size: 0.7rem;
            font-weight: 500;
            color: var(--text-muted);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-tag {
            border-color: var(--primary);
            color: var(--primary);
        }

        /* Portfolio Section */
        .portfolio {
            position: relative;
        }

        .portfolio-showcase {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        .portfolio-item {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 50px;
            align-items: center;
            padding: 40px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 25px;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .portfolio-item:nth-child(even) {
            grid-template-columns: 1fr 1.2fr;
        }

        .portfolio-item:nth-child(even) .portfolio-item-image {
            order: 2;
        }

        .portfolio-item:nth-child(even) .portfolio-item-content {
            order: 1;
        }

        .portfolio-item:hover {
            border-color: var(--primary);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
        }

        .portfolio-item-image {
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 16/10;
        }

        .portfolio-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .portfolio-item-content {
            padding: 15px;
        }

        .portfolio-item-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 18px;
        }

        .portfolio-item-tag {
            padding: 5px 12px;
            border-radius: 15px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(236, 72, 153, 0.1));
            border: 1px solid rgba(99, 102, 241, 0.2);
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--primary);
        }

        .portfolio-item-title {
            font-family: 'Syne', sans-serif;
            font-size: 1.7rem;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .portfolio-item-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 22px;
        }

        .portfolio-item-stats {
            display: flex;
            gap: 35px;
        }

        .portfolio-stat {
            display: flex;
            flex-direction: column;
        }

        .portfolio-stat-value {
            font-family: 'Syne', sans-serif;
            font-size: 1.7rem;
            font-weight: 800;
            color: var(--primary);
        }

        .portfolio-stat-label {
            font-family: 'Caveat', cursive;
            font-size: 1rem;
            color: var(--text-muted);
        }

        .portfolio-item-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 22px;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            color: var(--primary);
            text-decoration: none;
            transition: gap 0.3s ease;
        }

        .portfolio-item-link:hover {
            gap: 15px;
        }

        /* More Projects */
        .more-projects {
            margin-top: 50px;
        }

        .more-projects-title {
            font-family: 'Caveat', cursive;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            text-align: center;
            color: var(--text-muted);
        }

        .more-projects-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .more-project-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 1;
            border: 1px solid var(--border-color);
        }

        .more-project-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .more-project-card:hover img {
            transform: scale(1.1);
            filter: brightness(0.5);
        }

        .more-project-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 18px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .more-project-card:hover .more-project-info {
            transform: translateY(0);
        }

        .more-project-name {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            color: white;
            margin-bottom: 4px;
            font-size: 0.95rem;
        }

        .more-project-type {
            font-family: 'Caveat', cursive;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* ==================== CREATIVE ABOUT SECTION ==================== */
        .about {
            background: var(--bg-secondary);
            overflow: hidden;
        }

        .about-creative {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
        }

        .about-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .about-header .section-label {
            justify-content: center;
        }

        .about-header h2 {
            font-family: 'Syne', sans-serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .about-header h2 .italic {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-weight: 400;
            color: var(--secondary);
        }

        .about-header h2 .highlight {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-header p {
            font-size: 1.1rem;
            color: var(--text-secondary);
        }

        /* Bento Grid */
        .about-bento {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: auto auto auto;
            gap: 20px;
        }

        .bento-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 30px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

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

        .bento-logo {
            grid-column: span 2;
            grid-row: span 2;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
        }

        .bento-logo img {
            width: 70%;
            max-width: 200px;
            filter: drop-shadow(0 20px 40px var(--glow));
        }

        .bento-stat {
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
        }

        .bento-stat-value {
            font-family: 'Syne', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .bento-stat-label {
            font-family: 'Caveat', cursive;
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-top: 5px;
        }

        .bento-text {
            grid-column: span 2;
        }

        .bento-text h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

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

        .bento-values {
            grid-column: span 2;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .bento-value {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            background: var(--bg-tertiary);
            border-radius: 14px;
            transition: all 0.3s ease;
        }

        .bento-value:hover {
            transform: translateX(5px);
        }

        .bento-value-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .bento-value span {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 0.85rem;
        }

        .bento-quote {
            grid-column: span 2;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.05));
        }

        .bento-quote blockquote {
            font-family: 'Instrument Serif', serif;
            font-size: 1.4rem;
            font-style: italic;
            color: var(--text-primary);
            line-height: 1.5;
        }

        .bento-quote cite {
            display: block;
            margin-top: 15px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.9rem;
            font-style: normal;
            color: var(--primary);
        }

        /* ==================== CREATIVE FOUNDERS SECTION ==================== */
        .founders {
            position: relative;
            overflow: hidden;
        }

        .founders::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
            opacity: 0.1;
            filter: blur(100px);
        }

        .founders-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .founders-header h2 {
            font-family: 'Syne', sans-serif;
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 15px;
        }

        .founders-header h2 .cursive {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-weight: 400;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .founders-header p {
            color: var(--text-secondary);
            max-width: 500px;
            margin: 0 auto;
        }

        /* Split Founders */
        .founders-split {
            display: flex;
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
        }

        .founders-split::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, var(--primary), var(--secondary), transparent);
        }

        .founder-half {
            flex: 1;
            padding: 50px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .founder-half:first-child {
            border-right: none;
        }

        .founder-avatar-wrapper {
            position: relative;
            margin-bottom: 30px;
        }

        .founder-avatar-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            opacity: 0.2;
            filter: blur(30px);
        }

        .founder-avatar-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 190px;
            height: 190px;
            border: 2px dashed var(--border-color);
            border-radius: 50%;
            animation: spinSlow 20s linear infinite;
        }

        @keyframes spinSlow {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .founder-avatar-img {
            width: 170px;
            height: 170px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--bg-primary);
            position: relative;
            z-index: 2;
            transition: transform 0.4s ease;
        }

        .founder-half:hover .founder-avatar-img {
            transform: scale(1.05);
        }

        .founder-name {
            font-family: 'Syne', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .founder-role {
            font-family: 'Caveat', cursive;
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .founder-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 25px;
            max-width: 300px;
        }

        .founder-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-bottom: 25px;
        }

        .founder-skill {
            padding: 6px 14px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .founder-social {
            display: flex;
            gap: 12px;
        }

        .founder-social a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .founder-social a:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        /* Center Connection */
        .founders-connection {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
        }

        .founders-connection-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 10px 40px var(--glow);
            animation: pulseConnection 3s infinite;
        }

        @keyframes pulseConnection {
            0%, 100% { transform: scale(1); box-shadow: 0 10px 40px var(--glow); }
            50% { transform: scale(1.1); box-shadow: 0 15px 50px var(--glow); }
        }

        .founders-tagline {
            text-align: center;
            margin-top: 60px;
            padding: 40px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .founders-tagline p {
            font-family: 'Instrument Serif', serif;
            font-size: 1.5rem;
            font-style: italic;
            color: var(--text-primary);
        }

        .founders-tagline p span {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Contact Section */
        .contact {
            background: var(--bg-secondary);
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 35px;
            padding: 55px;
            position: relative;
            overflow: hidden;
        }

        .contact-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
        }

        .contact-info h2 {
            font-family: 'Syne', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 18px;
            line-height: 1.2;
        }

        .contact-info h2 .highlight {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-info h2 .cursive {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-weight: 400;
        }

        .contact-info > p {
            color: var(--text-secondary);
            margin-bottom: 35px;
            font-size: 1rem;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .contact-method {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            padding: 20px 24px;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            border-radius: 18px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
        }

        .contact-method:hover {
            border-color: var(--primary);
            transform: translateX(8px);
        }

        .contact-method-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.2rem;
            color: white;
        }

        .contact-method-text h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .contact-method-text p {
            color: var(--text-secondary);
            font-size: 0.85rem;
            line-height: 1.5;
        }

        .contact-cta {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(236, 72, 153, 0.05));
            border-radius: 25px;
            padding: 45px;
        }

        .contact-cta-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 2.2rem;
            color: white;
            box-shadow: 0 18px 35px var(--glow);
        }

        .contact-cta h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .contact-cta p {
            color: var(--text-secondary);
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        .btn {
            padding: 16px 32px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            border: none;
            font-family: 'Space Grotesk', sans-serif;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            box-shadow: 0 10px 40px var(--glow);
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 50px var(--glow);
        }

        .contact-cta .btn {
            width: 100%;
            justify-content: center;
        }

        /* Footer */
        .footer {
            border-top: 1px solid var(--border-color);
            padding: 25px 5%;
        }

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

        .footer-copyright {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .footer-copyright img {
            width: 24px;
            height: 24px;
        }

        /* Scroll to Top */
        .scroll-top {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 999;
            box-shadow: 0 8px 25px var(--glow);
            font-size: 1.1rem;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
        }

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

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

        /* ==================== RESPONSIVE DESIGN ==================== */

        @media (max-width: 1200px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 60px;
                text-align: center;
            }

            .hero-content {
                align-items: center;
            }

            .hero-description p {
                max-width: 100%;
            }

            .hero-logo-wrapper {
                max-width: 300px;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .more-projects-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .portfolio-item {
                grid-template-columns: 1fr !important;
                gap: 30px;
            }

            .portfolio-item-image {
                order: 1 !important;
            }

            .portfolio-item-content {
                order: 2 !important;
                padding: 10px;
            }

            .about-bento {
                grid-template-columns: repeat(2, 1fr);
            }

            .bento-logo {
                grid-column: span 2;
                grid-row: span 1;
                padding: 50px;
            }

            .bento-text {
                grid-column: span 2;
            }

            .bento-values {
                grid-column: span 2;
            }

            .bento-quote {
                grid-column: span 2;
            }
        }

        @media (max-width: 992px) {
            .navbar {
                padding: 8px 12px;
            }

            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: var(--bg-primary);
                flex-direction: column;
                justify-content: center;
                gap: 15px;
                transition: left 0.4s ease;
                z-index: 1000;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links a {
                font-size: 1.1rem;
                padding: 12px 25px;
            }

            .nav-actions {
                margin-left: auto;
            }

            .nav-cta {
                display: none;
            }

            .menu-toggle {
                display: flex;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(4px, 4px);
            }
            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(4px, -4px);
            }

            .founders-split {
                flex-direction: column;
            }

            .founders-split::before {
                width: 100%;
                height: 2px;
                top: 50%;
                left: 0;
                transform: translateY(-50%);
            }

            .founders-connection {
                position: relative;
                top: auto;
                left: auto;
                transform: none;
                margin: 30px auto;
            }

            .founder-half {
                padding: 40px 20px;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
                padding: 40px 30px;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 80px 5%;
            }

            .hero {
                padding: 100px 5% 60px;
            }

            .hero-title h1 {
                font-size: clamp(2.2rem, 10vw, 4rem);
            }

            .hero-logo-wrapper {
                max-width: 250px;
            }

            .hero-float {
                display: none;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .about-bento {
                grid-template-columns: 1fr;
            }

            .bento-logo,
            .bento-text,
            .bento-values,
            .bento-quote {
                grid-column: span 1;
            }

            .bento-values {
                grid-template-columns: 1fr;
            }

            .more-projects-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .portfolio-item {
                padding: 25px;
            }

            .portfolio-item-stats {
                gap: 25px;
            }

            .portfolio-item-title {
                font-size: 1.4rem;
            }

            .portfolio-stat-value {
                font-size: 1.4rem;
            }

            .contact-cta {
                padding: 35px 25px;
            }

            .contact-cta-icon {
                width: 75px;
                height: 75px;
                font-size: 1.8rem;
            }

            .section-header {
                margin-bottom: 45px;
            }

            .hero-scroll {
                display: none;
            }

            .founder-avatar-img {
                width: 140px;
                height: 140px;
            }

            .founder-avatar-ring {
                width: 160px;
                height: 160px;
            }
        }

        @media (max-width: 576px) {
            .navbar {
                top: 10px;
                padding: 6px 10px;
            }

            .nav-logo img {
                width: 28px;
                height: 28px;
            }

            .nav-logo {
                margin-right: 10px;
            }

            .theme-btn {
                width: 32px;
                height: 32px;
                font-size: 0.75rem;
            }

            .menu-toggle {
                width: 32px;
                height: 32px;
            }

            .menu-toggle span {
                width: 14px;
            }

            .hero {
                padding: 90px 5% 50px;
            }

            .hero-badge {
                padding: 8px 16px;
            }

            .hero-badge span {
                font-size: 0.8rem;
            }

            .hero-title h1 {
                font-size: clamp(1.8rem, 12vw, 3rem);
            }

            .hero-description p {
                font-size: 1rem;
            }

            .hero-logo-wrapper {
                max-width: 200px;
            }

            section {
                padding: 60px 4%;
            }

            .section-label {
                flex-wrap: wrap;
            }

            .section-label-icon {
                width: 32px;
                height: 32px;
                font-size: 0.8rem;
            }

            .section-label-text {
                font-size: 1rem;
            }

            .services .section-title {
                font-size: clamp(2rem, 8vw, 3.5rem);
            }

            .portfolio .section-title,
            .contact .section-title {
                font-size: clamp(1.6rem, 6vw, 2.5rem);
            }

            .section-desc {
                font-size: 0.9rem;
            }

            .service-card {
                padding: 28px 22px;
            }

            .service-num {
                font-size: 2.2rem;
            }

            .service-icon {
                width: 48px;
                height: 48px;
                font-size: 1.1rem;
            }

            .service-card h3 {
                font-size: 1.1rem;
            }

            .service-card p {
                font-size: 0.85rem;
            }

            .portfolio-item {
                padding: 20px;
            }

            .portfolio-item-title {
                font-size: 1.2rem;
            }

            .portfolio-item-desc {
                font-size: 0.85rem;
            }

            .portfolio-item-stats {
                flex-wrap: wrap;
                gap: 15px;
            }

            .portfolio-stat-value {
                font-size: 1.2rem;
            }

            .more-projects-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .more-project-info {
                padding: 12px;
            }

            .more-project-name {
                font-size: 0.8rem;
            }

            .more-project-type {
                font-size: 0.85rem;
            }

            .bento-item {
                padding: 25px;
            }

            .bento-stat-value {
                font-size: 2rem;
            }

            .bento-text h3 {
                font-size: 1.1rem;
            }

            .bento-quote blockquote {
                font-size: 1.1rem;
            }

            .founder-avatar-img {
                width: 120px;
                height: 120px;
            }

            .founder-avatar-ring {
                width: 140px;
                height: 140px;
            }

            .founder-name {
                font-size: 1.5rem;
            }

            .founder-role {
                font-size: 1.1rem;
            }

            .founders-connection-icon {
                width: 55px;
                height: 55px;
                font-size: 1.2rem;
            }

            .founders-tagline {
                padding: 30px 20px;
            }

            .founders-tagline p {
                font-size: 1.2rem;
            }

            .contact-wrapper {
                padding: 30px 20px;
                border-radius: 25px;
            }

            .contact-info h2 {
                font-size: 1.5rem;
            }

            .contact-info > p {
                font-size: 0.9rem;
                margin-bottom: 25px;
            }

            .contact-method {
                padding: 16px 18px;
                gap: 14px;
            }

            .contact-method-icon {
                width: 44px;
                height: 44px;
                font-size: 1rem;
            }

            .contact-method-text h4 {
                font-size: 0.85rem;
            }

            .contact-method-text p {
                font-size: 0.8rem;
            }

            .contact-cta {
                padding: 30px 20px;
            }

            .contact-cta-icon {
                width: 65px;
                height: 65px;
                font-size: 1.5rem;
            }

            .contact-cta h3 {
                font-size: 1.2rem;
            }

            .contact-cta p {
                font-size: 0.85rem;
            }

            .btn {
                padding: 14px 28px;
                font-size: 0.95rem;
            }

            .footer {
                padding: 20px 4%;
            }

            .footer-copyright {
                font-size: 0.75rem;
                gap: 8px;
            }

            .footer-copyright img {
                width: 20px;
                height: 20px;
            }

            .scroll-top {
                width: 40px;
                height: 40px;
                bottom: 20px;
                right: 15px;
                font-size: 1rem;
            }
        }

        @media (max-width: 380px) {
            .hero-title h1 {
                font-size: 1.6rem;
            }

            .portfolio-item-stats {
                flex-direction: column;
                gap: 12px;
            }

            .more-projects-grid {
                grid-template-columns: 1fr;
            }
        }