﻿:root {
            --bubblegum: #ff7ba9;
            --ice: #7ec8e3;
            --midnight: #1e1e2f;
            --frost: #f9f9f9;
            --lilac: #c8a2c8;
            --orange: var(--bubblegum);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
            position: relative;
        }

        /* Blog page body background */
        body.blog-page {
            background: #000000;
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--bubblegum) 0%, var(--lilac) 50%, var(--ice) 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 100vw;
        }

        /* Scroll-down arrow indicator */
        .scroll-arrow-indicator {
            position: absolute;
            left: 50%;
            bottom: 2.5rem;
            transform: translateX(-50%);
            width: 44px;
            height: 44px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.85);
            background: rgba(0,0,0,0.15);
            border: 1px solid rgba(255,255,255,0.15);
            box-shadow: 0 10px 30px rgba(0,0,0,0.25);
            text-decoration: none;
            transition: opacity 0.35s ease, transform 0.25s ease, background 0.35s ease;
            z-index: 200; /* ensure above hero content but below nav (100) → raise nav if needed */
            opacity: 1;
            animation: arrowFloat 2.4s ease-in-out infinite;
        }
        .scroll-arrow-indicator:hover {
            background: rgba(255,255,255,0.1);
        }
        .scroll-arrow-indicator.hidden {
            opacity: 0;
            pointer-events: none;
            animation: none;
        }
        @keyframes arrowFloat {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(6px); }
        }
        @media (max-width: 1024px) {
            .scroll-arrow-indicator {
                width: 40px;
                height: 40px;
                bottom: 2rem;
            }
        }
        @media (max-width: 768px) {
            .scroll-arrow-indicator {
                width: 36px;
                height: 36px;
                bottom: 1.5rem;
            }
        }

        .hero-background-image {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50%;
            max-width: 600px;
            height: auto;
            z-index: 1;
            opacity: 0.9;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cdefs%3E%3Cpattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"%3E%3Ccircle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/%3E%3C/pattern%3E%3C/defs%3E%3Crect width="100" height="100" fill="url(%23grid)"/%3E%3C/svg%3E');
            opacity: 0.3;
        }

        /* Navigation */
        .hero-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 4%;
            position: relative;
            z-index: 100;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            letter-spacing: 0.5px;
        }

        .nav-menu {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-menu a {
            color: white !important;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s ease;
        }

        .nav-menu a:hover {
            opacity: 0.7;
            color: white !important;
        }

        /* Search Toggle Button */
        .search-toggle {
            background: transparent;
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s ease;
            z-index: 10;
            margin-right: 1rem;
        }

        .search-toggle:hover {
            opacity: 0.7;
        }

        /* Spotlight Search Overlay */
        .spotlight-search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 9999;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .spotlight-search-overlay.active {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 10vh;
            opacity: 1;
        }

        .spotlight-search-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
        }

        .spotlight-search-container {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 800px;
            padding: 0 2rem;
            animation: spotlightFadeIn 0.3s ease;
        }

        @keyframes spotlightFadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .spotlight-search-wrapper {
            position: relative;
            background: white;
            border-radius: 16px;
            padding: 1.5rem 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            margin-bottom: 2rem;
        }

        .spotlight-search-icon {
            color: var(--bubblegum);
            font-size: 1.5rem;
        }

        .spotlight-search-input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 1.5rem;
            color: var(--midnight);
            background: transparent;
            font-weight: 500;
        }

        .spotlight-search-input::placeholder {
            color: rgba(0, 0, 0, 0.4);
            font-weight: 400;
        }

        .spotlight-search-close {
            background: transparent;
            border: none;
            color: rgba(0, 0, 0, 0.5);
            cursor: pointer;
            padding: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.2s ease;
            border-radius: 50%;
            width: 40px;
            height: 40px;
        }

        .spotlight-search-close:hover {
            background: rgba(0, 0, 0, 0.05);
            color: var(--midnight);
        }

        .spotlight-search-results {
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            max-height: 500px;
            overflow-y: auto;
            margin-bottom: 1rem;
            display: none;
        }

        .spotlight-search-results.active {
            display: block;
        }

        .spotlight-search-results .search-result-item {
            padding: 1.5rem 2rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .spotlight-search-results .search-result-item:first-child {
            border-radius: 16px 16px 0 0;
        }

        .spotlight-search-results .search-result-item:last-child {
            border-bottom: none;
            border-radius: 0 0 16px 16px;
        }

        .spotlight-search-results .search-result-item:hover {
            background: var(--frost);
        }

        .spotlight-search-results .search-result-item h4 {
            color: var(--midnight);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .spotlight-search-results .search-result-item p {
            color: rgba(0, 0, 0, 0.6);
            font-size: 1rem;
            line-height: 1.5;
        }

        .spotlight-search-results .search-result-item .result-type {
            display: inline-block;
            padding: 0.35rem 0.75rem;
            background: var(--bubblegum);
            color: white;
            border-radius: 6px;
            font-size: 0.8rem;
            margin-bottom: 0.75rem;
            font-weight: 600;
        }

        .spotlight-search-hint {
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .spotlight-search-hint kbd {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-family: monospace;
            font-size: 0.85rem;
            margin: 0 0.25rem;
        }

        /* Mobile spacing for search icon */
        @media (max-width: 768px) {
            .search-toggle {
                margin-right: 1rem;
                padding: 0.5rem;
                margin-left: 0.5rem;
            }

            .hero-nav {
                gap: 0.5rem;
                padding: 1.5rem 4%;
            }

            .logo {
                margin-right: auto;
            }

            .spotlight-search-container {
                padding: 0 1rem;
            }

            .spotlight-search-wrapper {
                padding: 1rem 1.5rem;
            }

            .spotlight-search-input {
                font-size: 1.2rem;
            }

            .spotlight-search-results {
                max-height: 60vh;
            }
        }

        .cta-pill {
            display: none;
            align-items: center;
            gap: 0.5rem;
            background: white;
            color: black;
            padding: 0.7rem 1.8rem 0.7rem 0.7rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        @media (min-width: 769px) {
            .cta-pill {
                display: flex;
            }
        }

        .cta-pill:hover {
            background: var(--orange);
            color: white;
            transform: scale(1.05);
        }

        .cta-pill:hover .arrow-circle {
            transform: translateX(5px);
        }

        .arrow-circle {
            width: 35px;
            height: 35px;
            background: var(--bubblegum);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .arrow-circle i {
            color: white;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .cta-pill:hover .arrow-circle {
            background: white;
        }

        .cta-pill:hover .arrow-circle i {
            color: var(--bubblegum);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 101;
        }

        .hamburger span {
            width: 25px;
            height: 2px;
            background: white;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Hero Content */
        .hero-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            text-align: left;
            padding: 2rem 4%;
            position: relative;
            z-index: 2;
            max-width: 1600px;
            width: 100%;
            margin: 0 auto;
        }

        .hero-text {
            margin-bottom: 4rem;
            animation: fadeInUp 1s ease 0.3s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-text h2 {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            font-weight: 400;
            color: white;
            margin-bottom: 0.5rem;
            opacity: 0.95;
            text-align: left;
        }

        .hero-text h1 {
            font-size: clamp(3rem, 10vw, 7rem);
            font-weight: 700;
            color: white;
            line-height: 1.1;
            letter-spacing: -2px;
            text-align: left;
        }

        .typed-text {
            display: inline-block;
        }

        .cursor {
            display: inline-block;
            width: 3px;
            background: white;
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            width: 100%;
            max-width: 1400px;
            animation: fadeInUp 1s ease 0.6s backwards;
        }

        .service-card {
            background: transparent;
            border: none;
            border-radius: 20px;
            padding: 2rem 1.5rem;
            pointer-events: none;
        }

        .service-card h3 {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .service-card h3 i {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            margin: 0 0.5rem;
        }

        .service-number {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Info Modal */
        /* Info Modal - Glassmorphism Design (Option 1: Subtle Glass) */
        .info-modal {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            /* Glassmorphism effects */
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 24px;
            padding: 1.5rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 
                        inset 0 1px 0 rgba(255, 255, 255, 0.3);
            z-index: 99;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            max-width: 300px;
            animation: fadeInUp 1s ease 0.9s backwards;
            overflow: hidden;
        }

        /* Subtle inner glow effect */
        .info-modal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.4), 
                transparent);
            pointer-events: none;
        }

        .info-modal:hover {
            transform: translateY(-5px) scale(1.02);
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15),
                        inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }

        .modal-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            position: relative;
            z-index: 1;
        }

        .modal-logo {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            overflow: hidden;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .modal-logo .logo-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 8px;
            display: block;
        }

        .modal-avatar-fallback {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--bubblegum), var(--ice));
            border-radius: 14px;
            display: none;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: white;
            font-size: 1.3rem;
        }

        .modal-info h4 {
            color: white;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .modal-info p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.9rem;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
        }

        .modal-expanded {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin-top: 0;
            position: relative;
            z-index: 1;
        }

        .info-modal.expanded .modal-expanded {
            max-height: 320px;
            opacity: 1;
            margin-top: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.6rem;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }

        .contact-item:hover {
            transform: translateX(5px);
            background: rgba(255, 255, 255, 0.15);
            color: white;
        }

        .contact-item span {
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
        }

        .contact-icon {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .contact-item:hover .contact-icon {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .schedule-btn {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            border-radius: 14px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 0.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
        }

        .schedule-btn:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        /* Companies Section */
        .companies-section {
            background: #000000;
            padding: 4rem 0;
            overflow: hidden;
            position: relative;
            width: 100%;
            max-width: 100vw;
        }

        .companies-marquee {
            position: relative;
            width: 100%;
            max-width: 100vw;
            overflow: hidden;
        }

        .marquee-content {
            display: flex;
            animation: marqueeScroll 25s linear infinite;
            will-change: transform;
        }

        .marquee-content:hover {
            animation-play-state: paused;
        }

        @keyframes marqueeScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .company-logo-item {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            padding: 0 3rem;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .company-logo-icon {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .company-logo-item:hover .company-logo-icon {
            transform: scale(1.1);
        }

        .company-logo-icon svg {
            width: 35px;
            height: 35px;
        }

        .company-logo-name {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 700;
            color: white;
            letter-spacing: -0.5px;
        }

        /* Mobile Responsive for Companies Section */
        @media (max-width: 768px) {
            .companies-section {
                padding: 3rem 0;
            }

            .company-logo-item {
                padding: 0 2rem;
            }

            .company-logo-name {
                font-size: clamp(1.2rem, 4vw, 1.8rem);
            }
        }

        @media (max-width: 480px) {
            .companies-section {
                padding: 2.5rem 0;
            }

            .company-logo-item {
                padding: 0 1.5rem;
            }

            .company-logo-name {
                font-size: clamp(1rem, 5vw, 1.5rem);
            }
        }

        .contact-section {
            min-height: 100vh;
            background: var(--midnight);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .contact-content {
            text-align: center;
            padding: 4rem;
        }

        .contact-content h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        /* Behind the Designs Section */
        .behind-designs-section {
            background: #000000;
            padding: 8rem 4%;
            position: relative;
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
        }

        .behind-designs-container {
            max-width: 1600px;
            margin: 0 auto;
        }

        .behind-designs-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
            align-items: start;
        }

        .behind-designs-left {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .behind-designs-left.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .behind-designs-subtitle {
            color: var(--orange);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .behind-designs-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: white;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 0;
        }

        .behind-designs-right {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.2s;
        }

        .behind-designs-right.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .behind-designs-description {
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: white;
            line-height: 1.6;
            font-weight: 500;
        }

        .behind-designs-cta {
            align-self: flex-start;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .project-card {
            border-radius: 24px;
            overflow: hidden;
            background: #2a2a2a;
            aspect-ratio: 3/4;
            position: relative;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .project-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .project-card:nth-child(1) { transition-delay: 0.2s; }
        .project-card:nth-child(2) { transition-delay: 0.4s; }
        .project-card:nth-child(3) { transition-delay: 0.6s; }

        .project-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        }

        .project-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            filter: grayscale(100%) contrast(1.1);
        }

        .project-card:hover .project-image {
            transform: scale(1.08);
            filter: grayscale(0%) contrast(1);
        }

        /* Featured Projects Section */
        .featured-projects-section {
            background: #000000;
            padding: 8rem 4%;
            position: relative;
        }

        .featured-projects-container {
            max-width: 1600px;
            margin: 0 auto;
        }

        /* Ensure portfolio content is visible without JS observers */
        .portfolio-page .featured-header-left,
        .portfolio-page .featured-header-right,
        .portfolio-page .featured-project-card {
            opacity: 1 !important;
            transform: none !important;
        }

        /* Performance badge */
        .performance-badge {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1rem;
        }
        .perf-ring {
            width: 80px;
            height: 80px;
        }
        .perf-ring .ring-bg {
            fill: none;
            stroke: rgba(255,255,255,0.15);
            stroke-width: 8;
        }
        .perf-ring .ring-fg {
            fill: none;
            stroke: var(--orange);
            stroke-width: 8;
            stroke-linecap: round;
            transform: rotate(-90deg);
            transform-origin: 50% 50%;
            stroke-dasharray: 327;
            stroke-dashoffset: 327;
            transition: stroke-dashoffset 1s ease;
        }
        .perf-ring .ring-text {
            fill: white;
            font-size: 20px;
            font-weight: 700;
        }
        .perf-metrics {
            display: grid;
            gap: 0.2rem;
            color: rgba(255,255,255,0.85);
            font-size: 0.9rem;
        }
        .perf-metrics div {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
        }

        /* 3D Carousel */
        .projects-carousel {
            position: relative;
            margin: 2rem 0 3rem;
            perspective: 1000px;
        }
        .carousel-track {
            display: grid;
            grid-auto-flow: column;
            gap: 1rem;
            transform-style: preserve-3d;
            align-items: center;
            justify-content: center;
        }
        .carousel-slide {
            width: min(420px, 90vw);
            aspect-ratio: 16/10;
            border-radius: 18px;
            overflow: hidden;
            position: relative;
            transform: translateX(var(--x, 0px)) translateZ(var(--z, 0px)) rotateY(var(--r, 0deg));
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, box-shadow 0.6s ease;
            box-shadow: 0 20px 60px rgba(0,0,0,0.35);
            display: block;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            will-change: transform;
            -webkit-tap-highlight-color: transparent;
            tap-highlight-color: transparent;
        }
        
        .carousel-slide.is-center {
            box-shadow: 0 25px 80px rgba(0,0,0,0.45);
            z-index: 5;
        }
        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .carousel-slide .slide-caption {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 1rem 1.2rem;
            background: linear-gradient(180deg, transparent, rgba(0,0,0,0.75));
            color: white;
            font-weight: 700;
        }
        .carousel-slide.is-center {
            --z: 80;
        }
        .carousel-slide:not(.is-center) {
            --z: 0;
        }
        
        .carousel-track {
            cursor: grab;
            user-select: none;
            -webkit-user-select: none;
            -ms-user-select: none;
            touch-action: pan-y pinch-zoom;
        }
        
        .carousel-track:active {
            cursor: grabbing;
        }
        
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s ease;
            z-index: 10;
        }
        .carousel-nav:hover {
            background: rgba(255,255,255,0.25);
        }
        .carousel-nav.prev { left: -8px; }
        .carousel-nav.next { right: -8px; }
        
        /* Mobile Responsive for Carousel */
        @media (max-width: 768px) {
            .projects-carousel {
                margin: 2rem 0;
                perspective: 800px;
                overflow: hidden;
            }
            
            .carousel-track {
                gap: 0.75rem;
                padding: 0 1rem;
            }
            
            .carousel-slide {
                width: min(350px, 85vw);
                transform: translateX(var(--x, 0px)) translateZ(var(--z, 0px)) rotateY(var(--r, 0deg));
                transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
            }
            
            .carousel-slide.is-center {
                box-shadow: 0 20px 60px rgba(0,0,0,0.4);
            }
            
            .carousel-nav {
                width: 38px;
                height: 38px;
                font-size: 1.2rem;
                background: rgba(255,255,255,0.15);
                border: 1px solid rgba(255,255,255,0.25);
                backdrop-filter: blur(8px);
                -webkit-backdrop-filter: blur(8px);
            }
            
            .carousel-nav.prev {
                left: 8px;
            }
            
            .carousel-nav.next {
                right: 8px;
            }
            
            .carousel-nav:active {
                background: rgba(255,255,255,0.3);
                transform: translateY(-50%) scale(0.95);
            }
            
            .carousel-slide .slide-caption {
                padding: 0.8rem 1rem;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 480px) {
            .carousel-slide {
                width: min(300px, 80vw);
            }
            
            .carousel-nav {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
            
            .carousel-nav.prev {
                left: 4px;
            }
            
            .carousel-nav.next {
                right: 4px;
            }
        }

        /* Scroll-down arrow (behind content) */
        .scroll-arrow {
            position: fixed;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100vh;
            background: linear-gradient(180deg, rgba(255,255,255,0.0), rgba(255,255,255,0.35), rgba(255,255,255,0.0));
            z-index: 1; /* ensure behind all content */
            pointer-events: none;
        }
        /* Disable legacy vertical line arrow to avoid covering content */
        .scroll-arrow {
            display: none !important;
        }
        .scroll-arrow::after {
            content: '';
            position: absolute;
            top: var(--arrow-y, 20vh);
            left: 50%;
            transform: translate(-50%, -50%);
            width: 18px;
            height: 18px;
            border-right: 2px solid rgba(255,255,255,0.5);
            border-bottom: 2px solid rgba(255,255,255,0.5);
            transform-origin: center;
            rotate: 45deg;
        }

        .featured-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
            align-items: start;
        }

        .featured-header-left {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .featured-header-left.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .featured-subtitle {
            color: var(--orange);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: capitalize;
            letter-spacing: 0.5px;
        }

        .featured-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: white;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 0;
        }

        .featured-header-right {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.2s;
        }

        .featured-header-right.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .featured-description {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            font-weight: 400;
        }

        .featured-projects-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            grid-auto-flow: dense;
        }

        .featured-project-card {
            background: #1a1a1a;
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            min-height: 400px;
            display: flex;
            flex-direction: column;
        }

        .featured-project-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .featured-project-card:nth-child(1) { transition-delay: 0.1s; }
        .featured-project-card:nth-child(2) { transition-delay: 0.2s; }
        .featured-project-card:nth-child(3) { transition-delay: 0.3s; }
        .featured-project-card:nth-child(4) { transition-delay: 0.4s; }
        .featured-project-card:nth-child(5) { transition-delay: 0.5s; }

        .featured-project-card.large {
            grid-column: span 1;
            grid-row: span 2;
        }

        .featured-project-card.large-img {
            grid-column: span 1;
        }

        .featured-project-card:hover {
            transform: translateY(-5px);
        }

        .featured-project-image {
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: relative;
        }

        .project-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            filter: brightness(0.9);
        }

        .featured-project-card:hover .project-img {
            transform: scale(1.08);
            filter: brightness(1);
        }

        .featured-project-info {
            padding: 3rem 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            flex: 1;
        }

        .project-tech-badge {
            display: inline-block;
            padding: 0.4rem 1rem;
            background: rgba(255, 123, 169, 0.15);
            color: var(--bubblegum);
            border: 1px solid rgba(255, 123, 169, 0.3);
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            align-self: flex-start;
        }

        .featured-project-title {
            font-size: clamp(2rem, 3vw, 3rem);
            color: white;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .featured-project-title::before {
            content: '';
            position: absolute;
            top: -1rem;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--orange);
        }

        .featured-project-desc {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .read-more-btn {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            background: transparent;
            border: none;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
            align-self: flex-start;
            text-decoration: none;
        }

        .read-more-btn:hover {
            color: var(--orange);
            gap: 1.2rem;
            text-decoration: none;
        }

        .read-more-btn:focus,
        .read-more-btn:active {
            text-decoration: none;
            outline: none;
        }

        .btn-icon {
            width: 40px;
            height: 40px;
            background: var(--orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            transition: all 0.3s ease;
            color: white !important;
        }

        .btn-icon i {
            font-size: 1rem;
        }

        .read-more-btn:hover .btn-icon {
            background: white;
            color: var(--orange);
        }

        .read-more-btn:hover .btn-icon i {
            color: var(--orange);
        }

        /* Search highlight */
        mark {
            background: var(--bubblegum);
            color: white;
            padding: 0.1rem 0.2rem;
            border-radius: 3px;
        }

        /* How I Approach Section */
        .approach-section {
            background: #0a0a0a;
            padding: 8rem 4%;
            position: relative;
        }

        .approach-container {
            max-width: 1600px;
            margin: 0 auto;
        }

        .approach-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
            align-items: start;
        }

        .approach-header-left {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .approach-header-left.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .approach-subtitle {
            color: var(--orange);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
        }

        .approach-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: white;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 0;
        }

        .approach-header-right {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.2s;
        }

        .approach-header-right.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .approach-description {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: white;
            line-height: 1.7;
            font-weight: 500;
        }

        .approach-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            grid-auto-rows: 300px;
        }

        .approach-card {
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }

        a.approach-card {
            text-decoration: none;
            color: inherit;
        }

        .approach-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .approach-card:nth-child(1) { transition-delay: 0.1s; }
        .approach-card:nth-child(2) { transition-delay: 0.2s; }
        .approach-card:nth-child(3) { transition-delay: 0.3s; }
        .approach-card:nth-child(4) { transition-delay: 0.4s; }

        .approach-card:hover {
            transform: translateY(-5px) !important;
        }

        .approach-card.large-left,
        .approach-card.large-right {
            grid-row: span 2;
        }

        .approach-card-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .approach-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .approach-card:hover .approach-img {
            transform: scale(1.08);
        }

        .approach-card-content {
            position: relative;
            z-index: 2;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            height: 100%;
        }

        a.approach-card .read-more-btn {
            pointer-events: none;
        }

        .approach-card.large-left .approach-card-content,
        .approach-card.large-right .approach-card-content {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
        }

        .approach-card.solid-orange {
            background: var(--bubblegum);
        }

        .approach-card.solid-dark-orange {
            background: linear-gradient(135deg, var(--ice) 0%, var(--bubblegum) 100%);
        }

        .approach-card-title {
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            color: white;
            font-weight: 700;
            margin-bottom: 0.8rem;
            position: relative;
            padding-top: 1.5rem;
        }

        .approach-card-title::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--orange);
        }

        .approach-card.solid-orange .approach-card-title::before,
        .approach-card.solid-dark-orange .approach-card-title::before {
            background: white;
        }

        .approach-card-desc {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Services Section */
        .services-section {
            background: #000000;
            padding: 8rem 4%;
            position: relative;
        }

        .services-container {
            max-width: 1600px;
            margin: 0 auto;
        }

        .services-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
            align-items: start;
        }

        .services-header-left {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .services-header-left.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .services-subtitle {
            color: var(--orange);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
        }

        .services-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: white;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 0;
        }

        .services-header-right {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.2s;
        }

        .services-header-right.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .services-description {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: white;
            line-height: 1.7;
            font-weight: 500;
        }

        .get-in-touch-btn {
            align-self: flex-start;
        }

        .services-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .service-item-card {
            background: #0f0f0f;
            border: 1px solid #1a1a1a;
            border-radius: 24px;
            padding: 3rem 2.5rem;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .service-item-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-item-card:nth-child(1) { transition-delay: 0.1s; }
        .service-item-card:nth-child(2) { transition-delay: 0.2s; }
        .service-item-card:nth-child(3) { transition-delay: 0.3s; }

        .service-item-card:hover {
            transform: translateY(-8px);
            border-color: var(--orange);
            background: #121212;
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background: var(--orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.4s ease;
        }

        .service-item-card:hover .service-icon {
            transform: scale(1.1);
            box-shadow: 0 8px 24px rgba(255, 123, 169, 0.4);
        }

        .service-icon svg {
            width: 32px;
            height: 32px;
            color: white;
        }

        .service-item-content {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .service-tag {
            color: var(--orange);
            font-size: 0.9rem;
            font-weight: 600;
        }

        .service-item-title {
            font-size: clamp(1.5rem, 2vw, 2rem);
            color: white;
            font-weight: 700;
            line-height: 1.2;
            position: relative;
            padding-top: 1rem;
        }

        .service-item-title::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--orange);
        }

        .service-item-desc {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 4rem;
        }

        .cta-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .cta-bg-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .cta-content.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .cta-subtitle {
            color: white;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
            opacity: 0.9;
        }

        .cta-title {
            font-size: clamp(3rem, 8vw, 6rem);
            color: white;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .cta-description {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: white;
            line-height: 1.7;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-main-btn {
            display: inline-flex;
            font-size: 1.1rem;
            padding: 0.8rem 2rem 0.8rem 0.8rem;
        }

        .cta-main-btn .arrow-circle {
            width: 40px;
            height: 40px;
        }

        .cta-main-btn .arrow-circle i {
            font-size: 1.1rem;
        }

        /* Process Section */
        .process-section {
            background: #000000;
            padding: 8rem 4%;
            position: relative;
        }

        .process-container {
            max-width: 1600px;
            margin: 0 auto;
        }

        .process-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
            align-items: start;
        }

        .process-header-left {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .process-header-left.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .process-subtitle {
            color: var(--orange);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
        }

        .process-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: white;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 0;
        }

        .process-header-right {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.2s;
        }

        .process-header-right.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .process-description {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: white;
            line-height: 1.7;
            font-weight: 500;
        }

        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .process-step {
            background: #0a0a0a;
            border-left: 4px solid var(--orange);
            border-radius: 24px;
            padding: 3rem 3rem 3rem 3.5rem;
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 3rem;
            position: relative;
            overflow: hidden;
        }

        .process-step.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .process-step:nth-child(1) { transition-delay: 0.1s; }
        .process-step:nth-child(2) { transition-delay: 0.2s; }
        .process-step:nth-child(3) { transition-delay: 0.3s; }
        .process-step:nth-child(4) { transition-delay: 0.4s; }
        .process-step:nth-child(5) { transition-delay: 0.5s; }

        .process-step:not(.featured-step):hover {
            background: linear-gradient(135deg, var(--bubblegum) 0%, #ff9fbf 100%);
            transform: translateX(10px);
            padding-right: 0;
        }

        .process-step:not(.featured-step)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            width: 45%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1600566752355-35792bedcfea?w=800&h=400&fit=crop');
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 0.6s ease;
            pointer-events: none;
            border-radius: 0 24px 24px 0;
            z-index: 5;
        }

        .process-step:nth-child(2)::after {
            background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=400&fit=crop');
        }

        .process-step:nth-child(3)::after {
            background-image: url('https://images.unsplash.com/photo-1561070791-2526d30994b5?w=800&h=400&fit=crop');
        }

        .process-step:nth-child(4)::after {
            background-image: url('https://images.unsplash.com/photo-1586281380349-632531db7ed4?w=800&h=400&fit=crop');
        }

        .process-step:nth-child(5)::after {
            background-image: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?w=800&h=400&fit=crop');
        }

        .process-step:not(.featured-step):hover::after {
            opacity: 1;
        }

        /* Ensure text sits beneath hover image overlay */
        .process-step:not(.featured-step) .step-number,
        .process-step:not(.featured-step) .step-title,
        .process-step:not(.featured-step) .step-description {
            position: relative;
            z-index: 1;
        }

        /* Gradient mask on the right side to keep left text visible while hiding overlap */
        .process-step:not(.featured-step)::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            width: 45%;
            height: 100%;
            background: linear-gradient(to left, rgba(0,0,0,0.85), rgba(0,0,0,0.4), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 3; /* above text (1) but below image overlay (5) */
            pointer-events: none;
        }

        .process-step:not(.featured-step):hover::before {
            opacity: 1;
        }

        /* Only fade out the right-side description text on hover */
        .process-step:not(.featured-step):hover .step-description {
            opacity: 0;
            color: transparent;
            transition: opacity 0.3s ease;
        }

        .process-step.featured-step {
            background: linear-gradient(135deg, var(--bubblegum) 0%, #ff9fbf 100%);
            border-left: none;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            overflow: hidden;
        }

        .process-step.featured-step:hover {
            transform: translateX(0) translateY(-5px);
        }

        .step-content {
            padding: 3rem 3rem 3rem 3.5rem;
        }

        .step-number {
            font-size: clamp(3rem, 5vw, 5rem);
            font-weight: 700;
            color: white;
            line-height: 1;
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }

        .process-step:not(.featured-step) .step-number {
            color: rgba(255, 255, 255, 0.4);
            font-size: clamp(2.5rem, 4vw, 4rem);
        }

        .step-title {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            color: white;
            font-weight: 700;
            margin-bottom: 0;
        }

        .process-step:not(.featured-step) {
            flex-wrap: wrap;
        }

        .process-step:not(.featured-step) .step-number,
        .process-step:not(.featured-step) .step-title {
            flex-shrink: 0;
        }

        .step-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            line-height: 1.6;
            margin-left: auto;
            max-width: 600px;
        }

        .step-image {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .step-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 250px;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .process-step.featured-step:hover .step-img {
            transform: scale(1.08);
        }

        /* Mobile Responsive for Process Section */
        @media (max-width: 1024px) {
            .process-header {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .process-step.featured-step {
                grid-template-columns: 1fr;
            }

            .step-image {
                min-height: 200px;
            }

            .process-step:not(.featured-step) {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .step-description {
                margin-left: 0;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .process-section {
                padding: 6rem 5%;
            }

            .process-step {
                padding: 2rem 2rem 2rem 2.5rem;
            }

            .step-content {
                padding: 2rem 2rem 2rem 2.5rem;
            }
        }

        /* Mobile Responsive for CTA Section */
        @media (max-width: 768px) {
            .cta-section {
                padding: 3rem 5%;
            }
        }

        /* Mobile Responsive for Services Section */
        @media (max-width: 1024px) {
            .services-header {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .services-cards-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .services-section {
                padding: 6rem 5%;
            }

            .service-item-card {
                padding: 2.5rem 2rem;
            }
        }

        /* Mobile Responsive for Approach Section */
        @media (max-width: 1024px) {
            .approach-header {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .approach-grid {
                grid-template-columns: 1fr;
                grid-auto-rows: 350px;
            }

            .approach-card.large-left,
            .approach-card.large-right {
                grid-row: span 1;
            }
        }

        @media (max-width: 768px) {
            .approach-section {
                padding: 6rem 5%;
            }

            .approach-grid {
                grid-auto-rows: 300px;
            }

            .approach-card-content {
                padding: 2rem;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .featured-header {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .featured-projects-grid {
                grid-template-columns: 1fr;
            }

            .featured-project-card.large,
            .featured-project-card.large-img {
                grid-column: span 1;
                grid-row: span 1;
            }
        }

        @media (max-width: 768px) {
            .featured-projects-section {
                padding: 6rem 5%;
            }

            .featured-project-info {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 1024px) {
            .behind-designs-header {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .projects-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .project-card {
                aspect-ratio: 4/3;
            }
        }

        @media (max-width: 768px) {
            .behind-designs-section {
                padding: 6rem 5%;
            }

            .behind-designs-title {
                font-size: 2.5rem;
            }
        }
        
        /* Mobile Styles */
        @media (max-width: 968px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            /* Prevent horizontal overflow on mobile */
            html, body {
                width: 100% !important;
                max-width: 100vw !important;
                overflow-x: hidden !important;
                position: relative;
            }

            section, .container, [class*="container"], [class*="section"] {
                width: 100% !important;
                max-width: 100vw !important;
                overflow-x: hidden !important;
            }

            img, video, iframe {
                max-width: 100% !important;
                height: auto;
            }

            .hero-nav {
                padding: 1.5rem 5%;
            }

            /* Mobile Menu Container */
            .nav-menu {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: linear-gradient(135deg, rgba(30, 30, 47, 0.98) 0%, rgba(20, 20, 35, 0.98) 100%);
                backdrop-filter: blur(20px);
                z-index: 999;
                margin: 0;
                padding: 0;
                list-style: none;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 0;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: opacity 0.3s ease, visibility 0.3s ease;
            }

            .nav-menu.active {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }

            /* Menu Items */
            .nav-menu li {
                width: 100%;
                margin: 0;
                padding: 0;
                text-align: center;
                opacity: 0;
                transform: translateY(20px);
                transition: opacity 0.3s ease, transform 0.3s ease;
            }

            .nav-menu.active li {
                opacity: 1;
                transform: translateY(0);
            }

            .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
            .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
            .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
            .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
            .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }

            .nav-menu a {
                color: white;
                font-size: 1.75rem;
                padding: 1.5rem 2rem;
                display: block;
                text-decoration: none;
                font-weight: 500;
                transition: background-color 0.3s ease, color 0.3s ease;
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-menu li:last-child a {
                border-bottom: none;
            }

            .nav-menu a:active,
            .nav-menu a:hover {
                background-color: rgba(255, 255, 255, 0.05);
                color: #ff7ba9;
            }

            /* Hamburger Icon */
            .hamburger {
                display: flex !important;
                z-index: 1000;
                position: relative;
                cursor: pointer;
            }

            .blog-nav .nav-menu {
                z-index: 999;
            }

            .blog-nav .hamburger {
                z-index: 1000;
                display: flex !important;
            }

            .cta-pill {
                display: none !important;
            }

            .hero-text h1 {
                font-size: clamp(2.5rem, 8vw, 4rem);
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .info-modal {
                bottom: 1rem;
                right: 1rem;
                max-width: calc(100% - 2rem);
                padding: 1.25rem;
            }

            .modal-logo {
                width: 48px;
                height: 48px;
            }

            .modal-info h4 {
                font-size: 1rem;
            }

            .modal-info p {
                font-size: 0.85rem;
            }

            .hero-background-image {
                width: 70%;
                max-width: 400px;
            }

            .hero-content {
                align-items: center;
                text-align: center;
            }

            .hero-text h2,
            .hero-text h1 {
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero-nav {
                padding: 1.5rem 5%;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .service-card {
                padding: 1.5rem 1rem;
            }
        }


        /* FAQ Section */
        .faq-section {
            background: #0f0f0f;
            padding: 8rem 4%;
        }

        .faq-container {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 6rem;
            align-items: start;
        }

        .faq-left {
            position: sticky;
            top: 8rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .faq-left.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-subtitle {
            color: var(--orange);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .faq-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: white;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 3rem;
        }

        .faq-cta-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: white;
            color: black;
            padding: 0.7rem 1.8rem 0.7rem 0.7rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
            font-size: 1rem;
            width: fit-content;
        }

        .faq-cta-btn:hover {
            background: var(--orange);
            color: white;
            transform: scale(1.05);
        }

        .faq-cta-btn .arrow-circle {
            width: 35px;
            height: 35px;
            background: var(--bubblegum);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-cta-btn:hover .arrow-circle {
            background: white;
        }

        .faq-cta-btn .arrow-circle i {
            color: white;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-cta-btn:hover .arrow-circle i {
            color: var(--bubblegum);
        }

        .faq-right {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.2s;
        }

        .faq-right.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.8rem 2rem;
            cursor: pointer;
            color: white;
            font-size: 1.1rem;
            font-weight: 500;
            user-select: none;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            position: relative;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            background: white;
            transition: all 0.3s ease;
        }

        .faq-icon::before {
            width: 24px;
            height: 2px;
            top: 11px;
            left: 0;
        }

        .faq-icon::after {
            width: 2px;
            height: 24px;
            top: 0;
            left: 11px;
        }

        .faq-item.active .faq-icon::after {
            transform: rotate(90deg);
            opacity: 0;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 2rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 2rem 1.8rem 2rem;
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .faq-container {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .faq-left {
                position: static;
            }
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 6rem 5%;
            }

            .faq-title {
                font-size: 2.5rem;
            }

            .faq-question {
                padding: 1.5rem;
                font-size: 1rem;
            }

            .faq-item.active .faq-answer {
                padding: 0 1.5rem 1.5rem 1.5rem;
            }
        }
        
        /* Mobile Styles */
        @media (max-width: 968px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

         /* Contact Section */
         .contact-section {
            min-height: 100vh;
            background: #0a0a0a;
            display: flex;
            align-items: center;
            padding: 8rem 4%;
        }

        .contact-container {
            max-width: 1600px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .contact-left {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .contact-left.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .contact-subtitle {
            color: var(--orange);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: white;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 2rem;
        }

        .contact-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .contact-cta-text {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 2.5rem;
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--ice);
            border-color: var(--ice);
            transform: translateY(-3px);
        }

        .contact-right {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.2s;
        }

        .contact-right.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1rem 1.2rem;
            color: white;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--orange);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            background: var(--orange);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 1.2rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: capitalize;
        }

        .submit-btn:hover {
            background: #ff9fbf;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 123, 169, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 6rem 5%;
            }

            .contact-title {
                font-size: 2.5rem;
            }
        }

        .container {
            background-color: #0a0a0a;
            color: #fff;
            padding: 60px 40px;
            overflow-x: hidden;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 80px;
        }

        .brand-section h1 {
            font-size: 32px;
            font-weight: 400;
            margin-bottom: 40px;
        }

        .brand-section h1 sup {
            font-size: 12px;
            color: var(--bubblegum);
        }

        .brand-section h2 {
            font-size: 28px;
            font-weight: 500;
            margin-bottom: 24px;
            line-height: 1.4;
        }

        .brand-section p {
            font-size: 16px;
            color: #999;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .copyright {
            font-size: 14px;
            color: #666;
        }

        .footer-column h3 {
            font-size: 18px;
            color: var(--bubblegum);
            font-weight: 500;
            margin-bottom: 24px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 16px;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: var(--bubblegum);
        }

        .social-links {
            display: flex;
            flex-direction: row;
            gap: 16px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--ice);
            border-color: var(--ice);
            transform: translateY(-3px);
        }

        .social-link svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 40px 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                width: 100%;
                max-width: 100%;
            }
            
            .brand-section {
                grid-column: 1;
            }

            .footer-column {
                width: 100%;
                max-width: 100%;
            }
        }

        /* Blog Page Styles */
        /* Navigation on Blog Page - needs dark background for visibility */
        .blog-nav {
            background: #000000 !important;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        /* Home page hero nav - transparent background to show gradient */
        .hero-section .blog-nav {
            background: transparent !important;
        }

        .blog-header-section {
            background: linear-gradient(135deg, var(--bubblegum) 0%, var(--lilac) 50%, var(--ice) 100%);
            padding: 8rem 4% 6rem;
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 100vw;
        }

        .blog-header-container {
            max-width: 1600px;
            margin: 0 auto;
            width: 100%;
            box-sizing: border-box;
        }

        .blog-header-content {
            text-align: center;
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }

        .blog-subtitle {
            color: white;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
            opacity: 0.9;
        }

        .blog-main-title {
            font-size: clamp(3rem, 8vw, 6rem);
            color: white;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
            overflow-wrap: break-word;
            word-wrap: break-word;
            max-width: 100%;
        }

        .blog-header-description {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: white;
            line-height: 1.7;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.95;
            overflow-wrap: break-word;
            word-wrap: break-word;
            width: 100%;
        }

        .blog-posts-section {
            background: #000000;
            padding: 6rem 4%;
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
            box-sizing: border-box;
        }

        .blog-posts-container {
            max-width: 1600px;
            margin: 0 auto;
            width: 100%;
            box-sizing: border-box;
            padding: 0;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            width: 100%;
            box-sizing: border-box;
        }

        .blog-post-card {
            background: #0f0f0f;
            border: 1px solid #1a1a1a;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            cursor: pointer;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        a.blog-post-card {
            text-decoration: none;
            color: inherit;
        }

        .blog-post-card:hover {
            transform: translateY(-8px);
            border-color: var(--bubblegum);
            box-shadow: 0 10px 40px rgba(255, 123, 169, 0.2);
        }

        .blog-post-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .blog-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .blog-post-card:hover .blog-post-image img {
            transform: scale(1.1);
        }

        .blog-post-content {
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            flex: 1;
            width: 100%;
            box-sizing: border-box;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }

        .blog-post-meta {
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .blog-post-date {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .blog-post-category {
            background: var(--bubblegum);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .blog-post-title {
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            color: white;
            font-weight: 700;
            line-height: 1.3;
            margin: 0;
            overflow-wrap: break-word;
            word-wrap: break-word;
            max-width: 100%;
        }

        .blog-post-excerpt {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
            overflow-wrap: break-word;
            word-wrap: break-word;
            max-width: 100%;
        }

        .blog-read-more {
            color: var(--bubblegum);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            align-self: flex-start;
            margin-top: auto;
            pointer-events: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .blog-read-more i {
            font-size: 0.9rem;
            transition: transform 0.3s ease, color 0.3s ease;
            color: var(--bubblegum);
            opacity: 1;
            display: inline-block;
            visibility: visible;
        }

        .blog-post-card:hover .blog-read-more {
            color: var(--ice);
        }

        .blog-post-card:hover .blog-read-more i {
            transform: translateX(5px);
            color: var(--ice);
        }

        /* Mobile Responsive for Blog */
        @media (max-width: 1024px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .blog-header-section {
                padding: 6rem 5% 4rem;
                width: 100%;
                max-width: 100vw;
                overflow-x: hidden;
            }

            .blog-posts-section {
                padding: 4rem 5%;
                width: 100%;
                max-width: 100vw;
                overflow-x: hidden;
            }

            .blog-posts-container {
                width: 100%;
                padding: 0;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                width: 100%;
            }

            .blog-post-card {
                width: 100%;
                max-width: 100%;
            }

            .blog-post-content {
                padding: 2rem;
                width: 100%;
            }

            .blog-post-image {
                height: 200px;
                width: 100%;
            }
        }