 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/Montserrat-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/Montserrat-Bold.ttf') format('truetype');
}
      body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
        }

        p {
            margin-bottom: 1em;
        }

        .marg-b-1em {
            margin-bottom: 1em;
        }

        .marg-b-2em {
            margin-bottom: 2em;
        }

        .marg-t-1em {
            margin-top: 1em;
        } 
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(10px);
            transition: all 0.3s;
        }
        /* Project Navigation */
        .project-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 3rem 4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 4rem;
        }

        .nav-project-btn {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem 2.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
        }

        .nav-project-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .nav-project-btn.disabled {
            opacity: 0.3;
            cursor: not-allowed;
            pointer-events: none;
        }

        .nav-project-btn .arrow {
            font-size: 1.5rem;
        }

        .nav-project-info {
            display: flex;
            flex-direction: column;
            line-height: 24px;
        }

        .nav-project-label {
            font-size: 0.8rem;
            opacity: 0.6;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-project-title {
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .logo-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s, border-color 0.3s;
            cursor: pointer;
            background-color: #1c1c1c;
        }

        .logo-avatar:hover {
            transform: scale(1.05);
            background-color: #202020;
        }

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

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 0.9rem;
            transition: opacity 0.3s;
        }

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

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            max-width: 1000px;
            padding: 0 2rem;
        }

        .hero h1 {
            font-size: clamp(3rem, 10vw, 7rem);
            font-weight: 900;
            letter-spacing: -3px;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease-out;
            font-family: 'Montserrat', sans-serif;
        }

        .hero .subtitle {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out 0.2s backwards;
        }

        .hero p {
            font-size: 1.3rem;
            opacity: 0.7;
            max-width: 780px;
            margin: 0 auto;
            line-height: 1.6;
            animation: fadeInUp 1s ease-out 0.4s backwards;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator::after {
            content: '↓';
            font-size: 2rem;
            opacity: 0.5;
        }

       /* Portfolio Section */
        .portfolio {
            padding: 8rem 4rem;
            position: relative;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 4rem;
            letter-spacing: -2px;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
            gap: 3rem;
        }

.wip-thumbnail {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}


/* Add this to your existing styles.css or replace the portfolio-item section */

.portfolio-item {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    /* CRITICAL: Set initial state in CSS to prevent flash */
    opacity: 0;
    color: white;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1); /* Add this */
}

/* Static image styling (for CNB) */
.portfolio-item img {
    /* Smooth image appearance */
    opacity: .5;
    transition: opacity 0.3s ease-in;
}

.portfolio-item .loaded {
    opacity: 1;
}

/* Ensure overlay doesn't flash */
.portfolio-overlay {
    /* Prevent overlay from causing reflow */
    pointer-events: none;
}

/* Ensure no flash when item becomes visible */
.portfolio-item.visible {
    opacity: 1;
    transform: translateY(0);
}

        .portfolio-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('images/united/CCS+_\ TT+\ Reset\ 2025.gif'),/* url('images/united/folio-cover.png');*/ linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            background-size: contain;
            background-position: center top;
            background-repeat: no-repeat; 
            transition: opacity 0.3s;
        }

        .portfolio-item:nth-child(2)::before {
            background-image: url('images/cnb/acct-summary-dark.png'), linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        /** New Video Portfolio Item Style **/
        .portfolio-item-video::before{
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }

        .portfolio-bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .portfolio-item-video::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }
        /** End New Video Portfolio Item Style **/

        .portfolio-grid .portfolio-item:hover {
           transform: scale(1.05);
           box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
           z-index: 10;
       }
        .portfolio-item:nth-child(3)::before {
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }
        .portfolio-item:nth-child(4)::before {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }
        .portfolio-item:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            z-index: 10;
        }

        .portfolio-item:hover::before {
            opacity: 0.8;
        }

        .portfolio-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            z-index: 1;
        }

        .portfolio-content .category {
            font-size: 0.9rem;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }



/* Work In Progress Section */
.wip {
    padding: 8rem 4rem;
    background: #050505;
}

.wip .section-title {
    margin-bottom: 1rem;
}

.wip-subtitle {
    font-size: 1.2rem;
    opacity: 0.6;
    margin-bottom: 4rem;
    max-width: 600px;
}

.wip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.wip-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.wip-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    transition: opacity 0.3s;
    z-index: 0;
}

.wip-item:nth-child(2)::before {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1) 0%, rgba(245, 87, 108, 0.1) 100%);
}

.wip-item:nth-child(3)::before {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
}

.wip-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.wip-item:hover::before {
    opacity: 1.5;
}

.wip-content {
    position: relative;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    z-index: 1;
}

.wip-thumbnail {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wip-thumbnail::after {
    font-size: 2rem;
    opacity: 0.4;
}

.wip-item:nth-child(2) .wip-thumbnail {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.3) 0%, rgba(245, 87, 108, 0.3) 100%);
}

.wip-item:nth-child(3) .wip-thumbnail {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.3) 0%, rgba(0, 242, 254, 0.3) 100%);
}


.wip-item:nth-child(1) .wip-thumbnail {
    background-image: url('images/united/cargo_ai.png');
    background-size: cover;
    background-position: center;
}
.wip-item:nth-child(2) .wip-thumbnail {
    background-image: url('images/united/lighthouse.png');
    background-size: cover;
    background-position: center;
}


.wip-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wip-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.wip-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.4);
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.wip-item:nth-child(2) .wip-badge {
    background: rgba(240, 147, 251, 0.2);
    border-color: rgba(240, 147, 251, 0.4);
}

.wip-item:nth-child(3) .wip-badge {
    background: rgba(79, 172, 254, 0.2);
    border-color: rgba(79, 172, 254, 0.4);
}

.wip-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.wip-details .category {
    font-size: 0.85rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.wip-details p {
    opacity: 0.7;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.wip-progress {
    margin-top: auto;
}

.wip-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.wip-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.wip-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.wip-item:nth-child(2) .wip-progress-fill {
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
}

.wip-item:nth-child(3) .wip-progress-fill {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
}


/* ===================================
   MODAL CSS ADDITIONS
   Add these styles to your existing CSS file
   =================================== */

/* Add cursor pointer to WIP items to indicate clickability */
.wip-item {
    cursor: pointer;
}

/* Modal Styles */
.wip-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.wip-modal.active {
    display: block;
}

.wip-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.wip-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    margin: 5vh auto;
    background: #111;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto;
    animation: slideUp 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 10001;
}

.wip-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10002;
    line-height: 1;
    padding: 0;
}

.wip-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.wip-modal-body {
    padding: 3rem;
}

.wip-modal-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wip-modal-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.4);
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.wip-modal-hero h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.wip-modal-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 1rem;
    opacity: 0.7;
}

.wip-modal-section {
    margin-bottom: 2.5rem;
}

.wip-modal-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.wip-modal-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.8;
    color: #fff;
}

.wip-modal-section ul {
    list-style: none;
    padding: 0;
}

.wip-modal-section ul li {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.wip-modal-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.wip-modal-section ul li strong {
    color: #fff;
    opacity: 1;
}

.wip-modal-progress-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wip-modal-progress-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.wip-modal-progress-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wip-modal-progress-item {
    width: 100%;
}

.wip-modal-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.wip-modal-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.wip-modal-progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s ease;
}

/* Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Modal Adjustments */
@media (max-width: 768px) {
    .wip-modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 2.5vh auto;
    }

    .wip-modal-body {
        padding: 2rem 1.5rem;
    }

    .wip-modal-hero h2 {
        font-size: 2rem;
    }

    .wip-modal-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .wip-modal-close {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
    }
}





/* Responsive adjustments */
@media (max-width: 768px) {
    .wip {
        padding: 4rem 2rem;
    }

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

    .wip-content {
        flex-direction: column;
        gap: 1rem;
    }

    .wip-thumbnail {
        width: 80px;
        height: 80px;
    }

    .wip-details h3 {
        font-size: 1.3rem;
    }
}


        /* Persona Card Styles */
        .persona-card {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            border: 1px solid rgba(102, 126, 234, 0.3);
            border-radius: 20px;
            padding: 2.5rem;
            margin: 3rem 0;
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 2rem;
            align-items: start;
        }

        .persona-avatar img, .persona-avatar {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            font-weight: 700;
            color: white;
            border: 3px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .persona-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .persona-header h3 {
            font-size: 2rem;
            margin-bottom: 0.3rem;
            color: #667eea;
        }

        .persona-header .persona-title {
            font-size: 1.2rem;
            opacity: 0.8;
            font-weight: 500;
        }

        .persona-header .persona-age {
            font-size: 1rem;
            opacity: 0.6;
            margin-top: 0.2rem;
        }

        .persona-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .persona-detail-item h4 {
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            color: #667eea;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .persona-detail-item h4::before {
            content: '→';
            font-size: 1.2rem;
        }

        .persona-detail-item ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .persona-detail-item li {
            padding: 0.4rem 0;
            opacity: 0.9;
            position: relative;
            padding-left: 1.2rem;
        }

        .persona-detail-item li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: bold;
        }

        .persona-quote {
            margin-top: 1rem;
            padding: 1.5rem;
            background: rgba(0, 0, 0, 0.3);
            border-left: 4px solid #667eea;
            border-radius: 8px;
            font-style: italic;
            opacity: 0.9;
        }

        .persona-quote::before {
            content: '"';
            font-size: 2rem;
            color: #667eea;
            margin-right: 0.5rem;
        }

        .persona-quote::after {
            content: '"';
            font-size: 2rem;
            color: #667eea;
            margin-left: 0.5rem;
        }

        @media (max-width: 768px) {
            .persona-card {
                grid-template-columns: 1fr;
                padding: 1.5rem;
                text-align: center;
            }

            .persona-avatar {
                margin: 0 auto;
                width: 150px;
                height: 150px;
                font-size: 3rem;
            }

            .persona-details {
                grid-template-columns: 1fr;
            }

            .persona-detail-item {
                text-align: left;
            }
        }
        .portfolio-content h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .portfolio-content p {
            opacity: 0.8;
            font-size: 1rem;
        }

        .view-project {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 2;
            background: white;
            color: #0a0a0a;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
        }

        .portfolio-item:hover .view-project {
            opacity: 1;
        }

        /* About Section */
        .about {
            padding: 8rem 4rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            background: #111;
        }

        .about-text h2 {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 2rem;
            letter-spacing: -2px;
        }

        .about-text p {
            font-size: 1.2rem;
            line-height: 1.8;
            opacity: 0.8;
            margin-bottom: 2rem;
        }
        .about-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .about-text h2 {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 700;
            letter-spacing: -2px;
            margin: 0;  /* Changed from margin-bottom: 2rem */
        }

        .resume-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: transform 0.3s, box-shadow 0.3s;
            white-space: nowrap;
        }

        .resume-button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }
        .skills {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .skill-item {
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .skill-item h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .skill-item p {
            font-size: 0.9rem;
            opacity: 0.6;
        }

        .about-visual {
            position: relative;
            height: 600px;
        }

        .floating-card {
            position: absolute;
            width: 250px;
            height: 300px;
            border-radius: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            animation: float 6s ease-in-out infinite;
        }

        .floating-card-pic img {
            position: absolute;
            width: 450px;
            height: 450px;
            border-radius: 20px;
            animation: float 12s ease-in-out infinite;
            animation-delay: -5s;
            bottom: 100px;
            left: 150px;
        }

        .floating-card:nth-child(2) {
            top: 100px;
            right: 0;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            animation-delay: -2s;
        }

        .floating-card:nth-child(3) {
            bottom: 50px;
            left: 50px;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            animation-delay: -4s;
        }

        /* Process Section */
        .process {
            padding: 8rem 4rem;
        }

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

        .process-card {
            text-align: center;
            padding: 2rem;
        }

        .process-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .process-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .process-card p {
            opacity: 0.7;
            line-height: 1.6;
        }

        /* Contact Section */
        .contact {
            padding: 8rem 4rem;
            text-align: center;
            background: #111;
        }

        .contact h2 {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .contact p {
            font-size: 1.5rem;
            opacity: 0.7;
            margin-bottom: 3rem;
        }

        .cta-button {
            display: inline-block;
            padding: 1.5rem 3rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
        }

        /* Footer */
        footer {
            padding: 3rem 4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .copy {
            opacity: 0.6;
            font-size: 0.8rem;
        }

        .social-links {
            display: flex;
            gap: 2rem;
        }

        .social-links a {
            color: #fff;
            text-decoration: none;
            opacity: 0.6;
            transition: opacity 0.3s;
        }

        .social-links a:hover {
            opacity: 1;
        }

        .gtp .project-video {
            max-width: 100%;
            border-radius: 20px;
            padding: 4em;
            background-color: #000;
        }

        .saveup .project-video {
            max-width: 100%;
            max-height: 1024px;
            border-radius: 20px;
            padding: 4em;
            background-color: #000;
        }

        .saveup-project-image {
            width: 100%;
            height: auto;
            border-radius: 20px;
            margin: 3rem 0;
            border: 2px solid rgba(57, 57, 57, 0.8);
        }

        .gtp-project-image {
            width: 100%;
            height: auto;
            border-radius: 20px;
            margin: 3rem 0;
            border: 2px solid rgba(57, 57, 57, 0.8);
        }
        /* Apple Watch UI Mockups */
        .watch-mockups-section {
            margin: 4rem 0;
            padding: 3rem;
            background: linear-gradient(135deg, rgba(46, 46, 46, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
            border-radius: 20px;
        }

        .watch-section-title {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #FFE600;
            font-weight: 700;
            text-align: center;
        }

        .watch-section-subtitle {
            font-size: 1.1rem;
            opacity: 0.8;
            margin-bottom: 3rem;
            text-align: center;
        }

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

        .watch-mockup {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .watch-device {
            width: 280px;
            height: 340px;
            background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
            border-radius: 60px;
            padding: 15px;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .watch-device::before {
            content: '';
            position: absolute;
            top: 50%;
            right: -8px;
            width: 6px;
            height: 50px;
            background: #1a1a1a;
            border-radius: 0 3px 3px 0;
            transform: translateY(-50%);
        }

        .watch-screen {
            width: 100%;
            height: 100%;
            background: #000;
            border-radius: 48px;
            overflow: hidden;
            position: relative;
        }

        .watch-content {
            padding: 1.5rem 1rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
        }

        .watch-header {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: #fff;
            margin-bottom: 1rem;
        }

        .watch-title {
            font-weight: 600;
            font-size: 0.9rem;
        }

        .watch-time {
            font-weight: 600;
        }

        .watch-main-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            width: 100%;
        }

        .watch-icon {
            font-size: 4rem;
            margin-bottom: 0.5rem;
        }

        .watch-stat {
            font-size: 2.5rem;
            font-weight: 700;
            color: #FFE600;
            text-align: center;
            line-height: 1;
        }

        .watch-label {
            font-size: 0.85rem;
            color: #00D9FF;
            text-align: center;
            font-weight: 500;
        }

        .watch-button {
            background: rgba(255, 230, 0, 0.2);
            border: 1px solid #FFE600;
            color: #fff;
            padding: 0.6rem 1.2rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            width: 90%;
            text-align: center;
            margin-top: 1rem;
        }

        .watch-description {
            text-align: center;
            font-size: 0.75rem;
            opacity: 0.8;
            margin-top: 1rem;
            line-height: 1.4;
        }

        /* Progress Ring */
        .progress-ring-container {
            position: relative;
            width: 120px;
            height: 120px;
            margin: 1rem 0;
        }

        .progress-ring {
            transform: rotate(-90deg);
        }

        .progress-ring-circle {
            fill: none;
            stroke-width: 8;
            stroke-linecap: round;
        }

        .progress-ring-bg {
            stroke: rgba(255, 230, 0, 0.2);
        }

        .progress-ring-progress {
            stroke: #FFE600;
            stroke-dasharray: 283;
            stroke-dashoffset: 70;
            transition: stroke-dashoffset 0.5s ease;
        }

        .progress-center-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }

        .progress-number {
            font-size: 2rem;
            font-weight: 700;
            color: #FFE600;
            line-height: 1;
        }

        .progress-label {
            font-size: 0.7rem;
            color: #00D9FF;
            margin-top: 0.2rem;
        }

        /* Streak Counter */
        .streak-counter {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }

        .streak-flame {
            font-size: 2rem;
        }

        .streak-number {
            font-size: 2rem;
            font-weight: 700;
            color: #FFE600;
        }

        .streak-text {
            font-size: 0.75rem;
            color: #00D9FF;
        }

        /* Leaderboard List */
        .leaderboard-list {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .leaderboard-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 230, 0, 0.1);
            padding: 0.5rem;
            border-radius: 8px;
            font-size: 0.7rem;
        }

        .leaderboard-rank {
            font-weight: 700;
            color: #FFE600;
            width: 20px;
        }

        .leaderboard-name {
            flex: 1;
            color: #fff;
        }

        .leaderboard-score {
            color: #00D9FF;
            font-weight: 600;
        }

        .leaderboard-item.current-user {
            background: rgba(255, 230, 0, 0.25);
            border: 1px solid #FFE600;
        }

        .mockup-caption {
            text-align: center;
            font-size: 0.95rem;
            opacity: 0.9;
            max-width: 280px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .watch-screens-grid {
                grid-template-columns: 1fr;
            }

            .watch-mockups-section {
                padding: 2rem 1rem;
            }
        }
        /* Project Detail Page */
        .project-detail {
            display: none;
            min-height: 100vh;
            padding-top: 100px;
        }

        .project-detail.active {
            display: block;
        }

        .project-hero {
            padding: 4rem;
            text-align: center;
        }

        .project-hero h1 {
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .project-meta {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin: 2rem 0;
            font-size: 1.1rem;
        }

        .project-meta span {
            opacity: 0.7;
        }

        .back-button {
            display: inline-block;
            margin: 2rem 4rem;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s;
        }

        .back-button:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .project-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 4rem 8rem;
        }

        .project-section {
            margin-bottom: 4rem;
        }

        .project-section h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        iframe {
            border-radius: 20px;
        }

        .project-section p, ul li {
            font-size: 1.2rem;
            line-height: 1.8;
            opacity: 0.8;
        }

        ul li {
            padding-bottom: 1.2em;
        }

        .project-image, .project-image img {
            width: 100%;
            height: 960px;
            border-radius: 20px;
            margin: 3rem 0;
        }
        /* EY Portfolio Details */
        .ey-hero {
            background-image: url('images/ey/ey-hero.png'), linear-gradient(135deg, #f5f5f5 0%, #C9CDDC 70%);
            background-size: cover;
            background-position: center;
        }
        .saveup-hero {
            background-image: url('images/saveup/saveup-dribbble.png');
            background-size: cover;
            background-position: center;
        }
        /* Affinity Map Styles - Sticky Notes */
        .affinity-map-section {
            margin: 4rem 0;
            padding: 3rem;
            background: linear-gradient(135deg, rgba(46, 46, 46, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
            border-radius: 20px;
        }

        .affinity-map-title {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #FFE600;
            font-weight: 700;
            text-align: center;
        }

        .affinity-map-subtitle {
            font-size: 1.1rem;
            opacity: 0.8;
            margin-bottom: 3rem;
            text-align: center;
        }

        .affinity-board {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .sticky-note {
            background: var(--note-color);
            padding: 1.8rem 1.5rem;
            min-height: 180px;
            border-radius: 2px;
            box-shadow: 
                0 2px 5px rgba(0, 0, 0, 0.2),
                0 8px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            transform: rotate(var(--note-rotation, 0deg));
            cursor: pointer;
        }

        .sticky-note::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.05) 0%,
                transparent 100%
            );
            border-radius: 2px 2px 0 0;
        }

        .sticky-note:hover {
            transform: rotate(0deg) translateY(-8px) scale(1.02);
            box-shadow: 
                0 4px 10px rgba(0, 0, 0, 0.25),
                0 15px 30px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }

        /* Sticky Note Colors */
        .sticky-note.green {
            --note-color: #C8DC5F;
            color: #2E2E2E;
        }

        .sticky-note.blue {
            --note-color: #9BB5E8;
            color: #2E2E2E;
        }

        .sticky-note.pink {
            --note-color: #F4B5D3;
            color: #2E2E2E;
        }

        .sticky-note.yellow {
            --note-color: #FFE88F;
            color: #2E2E2E;
        }

        .sticky-note.orange {
            --note-color: #FFB85F;
            color: #2E2E2E;
        }

        .sticky-note.purple {
            --note-color: #D4C5F9;
            color: #2E2E2E;
        }

        /* Random rotations for natural look */
        .sticky-note:nth-child(odd) {
            --note-rotation: -2deg;
        }

        .sticky-note:nth-child(even) {
            --note-rotation: 2deg;
        }

        .sticky-note:nth-child(3n) {
            --note-rotation: -1deg;
        }

        .sticky-note:nth-child(5n) {
            --note-rotation: 1.5deg;
        }

        .note-header {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 0.8rem;
            line-height: 1.3;
            text-transform: none;
            position: relative;
            padding-top: 0.5rem;
        }

        .note-content {
            font-size: 0.9rem;
            line-height: 1.5;
            opacity: 0.85;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .theme-label {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0.6;
            margin-bottom: 0.8rem;
        }


    /* EY Personas Styles */
    .personas-section {
        margin: 4rem 0;
    }

    .personas-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
        text-align: center;
        color: #FFE600;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .personas-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .persona-card-ey {
        background: linear-gradient(135deg, rgba(46, 46, 46, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
        border: 2px solid rgba(255, 230, 0, 0.3);
        border-radius: 16px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .persona-card-ey:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(255, 230, 0, 0.3);
        border-color: rgba(255, 230, 0, 0.6);
    }

    .persona-image-section {
        position: relative;
        height: 250px;
        overflow: hidden;
        background-size: cover;
    }

    .aaron {
        background: url('images/ey/aaron.png'),linear-gradient(135deg, #af3333 0%, #18a726 100%);
    }
    .maria {
        background: url('images/ey/maria.png'),linear-gradient(135deg, #2E2E2E 0%, #1a1a1a 100%);
    }
    .persona-role-badge {
        position: absolute;
        top: 1rem;
        left: 1rem;
        background: #FFE600;
        color: #2E2E2E;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-weight: 700;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .persona-content-ey {
        padding: 2rem;
    }

    .persona-header-ey {
        margin-bottom: 1.5rem;
    }

    .persona-name {
        font-size: 1.8rem;
        font-weight: 700;
        color: #FFE600;
        margin-bottom: 0.3rem;
    }

    .persona-title-text {
        font-size: 1rem;
        opacity: 0.8;
        margin-bottom: 0.5rem;
    }

    .persona-description {
        font-size: 0.95rem;
        opacity: 0.8;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        font-style: italic;
    }

    .persona-details-ey {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .persona-detail-section {
        background: rgba(255, 230, 0, 0.05);
        padding: 1rem;
        border-radius: 8px;
        border-left: 3px solid #FFE600;
    }

    .persona-detail-section h4 {
        font-size: 1rem;
        color: #FFE600;
        margin-bottom: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 700;
    }

    .persona-detail-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .persona-detail-section li {
        padding: 0.3rem 0;
        opacity: 0.9;
        font-size: 0.9rem;
        position: relative;
        padding-left: 1.2rem;
    }

    .persona-detail-section li::before {
        content: '▸';
        position: absolute;
        left: 0;
        color: #FFE600;
        font-weight: bold;
    }

    .persona-quote-ey {
        margin-top: 1.5rem;
        padding: 1.5rem;
        background: rgba(0, 0, 0, 0.4);
        border-left: 4px solid #FFE600;
        border-radius: 8px;
        font-style: italic;
        opacity: 0.95;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .persona-quote-ey::before {
        content: '"';
        font-size: 2rem;
        color: #FFE600;
        margin-right: 0.3rem;
        line-height: 0;
    }
 /* Workflow Section */   
        .workflow-container {
            margin: 4rem 0;
            padding: 3rem;
            background: linear-gradient(135deg, rgba(255, 230, 0, 0.05) 0%, rgba(46, 46, 46, 0.1) 100%);
            border-radius: 20px;
            border: 1px solid rgba(255, 230, 0, 0.3);
        }

        .workflow-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 3rem;
            color: #FFE600;
            font-weight: 700;
        }

        .workflow-stages {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
        }

        .workflow-stages::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 12.5%;
            right: 12.5%;
            height: 3px;
            background: linear-gradient(90deg, 
                #FFE600 0%, 
                #FFD700 33%, 
                #FFC700 66%, 
                #FFE600 100%);
            z-index: 0;
        }

        .workflow-stage {
            position: relative;
            text-align: center;
            z-index: 1;
        }

        .stage-number {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            color: #2E2E2E;
            position: relative;
            box-shadow: 0 10px 30px rgba(255, 230, 0, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 3px solid #2E2E2E;
        }

        .workflow-stage:hover .stage-number {
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(255, 230, 0, 0.6);
        }

        .workflow-stage:nth-child(1) .stage-number {
            background: #FFE600;
        }

        .workflow-stage:nth-child(2) .stage-number {
            background: linear-gradient(135deg, #FFE600 0%, #FFD700 100%);
        }

        .workflow-stage:nth-child(3) .stage-number {
            background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
        }

        .workflow-stage:nth-child(4) .stage-number {
            background: linear-gradient(135deg, #FFC700 0%, #FFE600 100%);
        }

        .stage-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            filter: drop-shadow(0 4px 8px rgba(255, 230, 0, 0.3));
        }

        .stage-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: #FFE600;
        }

        .stage-description {
            font-size: 0.95rem;
            opacity: 0.8;
            line-height: 1.6;
        }

        .stage-tasks {
            margin-top: 1rem;
            padding: 1rem;
            background: rgba(46, 46, 46, 0.4);
            border-radius: 8px;
            font-size: 0.85rem;
            border: 1px solid rgba(255, 230, 0, 0.2);
        }

        .stage-tasks strong {
            color: #FFE600;
        }

        .stage-tasks ul {
            list-style: none;
            padding: 0;
            margin: 0.5rem 0 0 0;
            text-align: left;
        }

        .stage-tasks li {
            padding: 0.3rem 0;
            opacity: 0.9;
            position: relative;
            padding-left: 1.2rem;
        }

        .stage-tasks li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #FFE600;
            font-weight: bold;
        }

        .cnb-image {
            width: 100%;
            height: auto;
            margin: 2rem auto;
            border-radius: 20px;
            padding: 1rem;
        }

        .cnb-image img {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            padding: 1rem;
            background: #fcfcfc;
        }

        .phones {
            max-width: 75%;
        }

        .tt-vid video {
            width: 100%;
            height: auto;
            margin: 2rem auto;
            border-radius: 20px;
        }
        
        .united-top {
            background-image: url('images/united/united-hero.png');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .united-rd {
            background-image: url('images/united/ut-sessions.jpg'), linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .amazon {
            background-image: url('images/united/amazon-inspired-flow.png'), linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            width: 100%;
            height: 820px;
            border-radius: 20px;
            margin: 3rem 0;
        }
        .image-copy {
            font-size: 0.9rem;
            opacity: 0.6;
            text-align: center;
            margin-top: -1rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(10px);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav {
                padding: 1.5rem 2rem;
            }

            .nav-links {
                gap: 1.5rem;
                font-size: 0.8rem;
            }

            .portfolio, .about, .process, .contact {
                padding: 4rem 2rem;
            }

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

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

            .about-visual {
                display: none;
            }

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

            .project-meta {
                flex-direction: column;
                gap: 1rem;
            }

            footer {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }
        }
    

        /* Responsive */
        @media (max-width: 1024px) {
            .personas-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .persona-content-ey {
                padding: 1.5rem;
            }

            .persona-image-section {
                height: 200px;
            }
        }  

        /* Responsive */
        @media (max-width: 1024px) {
            .workflow-stages {
                grid-template-columns: repeat(2, 1fr);
            }

            .workflow-stages::before {
                display: none;
            }
        }

        @media (max-width: 640px) {
            .workflow-stages {
                grid-template-columns: 1fr;
            }

            .workflow-container {
                padding: 2rem 1.5rem;
            }
        }

        /* Responsive Stick notes */
        @media (max-width: 1024px) {
            .affinity-board {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .affinity-board {
                grid-template-columns: 1fr;
            }

            .affinity-map-section {
                padding: 2rem 1.5rem;
            }

            .sticky-note {
                min-height: 150px;
            }
        }