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

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.preload {
    opacity: 0;
}

:root {
    --primary-color: #000000;
    --secondary-color: #666666;
    --background-color: #ffffff;
    --accent-color: #0066ff;
    --dark-yellow: #FF9900;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--background-color);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    z-index: 1001;
}

.logo img {
    height: 32px;
    width: auto;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.2s ease;
}

.desktop-nav a:hover {
    opacity: 0.7;
}

/* Mobile Navigation Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle .material-icons {
    font-size: 24px;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.mobile-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
}


/* Mobile Styles */
@media (max-width: 767px) {
    nav {
        padding: 1rem;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16rem 2rem 2rem;
}

main > h1 {
    font-size: 64px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

main > p {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 4rem;

    line-height: 1.5;
}


/* About Page Styles */
main h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 4rem;
}

main h1 em {
    font-style: normal;
}

main h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin-bottom: 4rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.6;
}

.highlight {
    color: #FF9900;
    font-weight: 500;
}

.download-resume {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.2s ease;
}

.download-resume:hover {
    background-color: #f5f5f5;
    transform: translateY(-1px);
}


/* Work Experience */
.work-experience {
    margin-bottom: 4rem;
}

.experience-item {
    margin-bottom: 4rem;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.experience-header h3 {
    font-size: 1.25rem;
    font-weight: 500;
}

.visit-link {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    border: 1px solid #E5E5E5;
}

.date {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.experience-item ul {
    list-style: none;
    padding: 0;
}

.experience-item li {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .experience-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Awards Section */
.awards-list {
    margin-bottom: 4rem;
}

.award-item {
    margin-bottom: 1.5rem;
}

.award-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.award-header h3 {
    font-size: 1.25rem;
    font-weight: 500;
}

.award-category {
    color: var(--secondary-color);
}

/* Mobile Styles */
@media (max-width: 768px) {
    main h1 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .award-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Experience Section Styles - matching Awards layout */
.experience-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.experience-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.experience-info h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.experience-info p {
    color: var(--secondary-color);
    font-size: 16px;
}

.experience-details p {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.experience-details p:last-child {
    margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .experience-header {
        flex-direction: column;
        gap: 16px;
    }
    
    .experience-row {
        padding-bottom: 32px;
    }
}

.project-hero {
    width: 100%;
    margin-bottom: 4rem;
}

.project-hero img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.project-content {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 4rem;
}

.challenge-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.challenge,
.solution {
    background: #F8F9FC;
    padding: 2rem;
    border-radius: 12px;
}

.challenge h2,
.solution h2 {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.challenge p,
.solution p {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.intro-text {
    font-size: 16px;
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 4rem;
    max-width: 800px;
}

.intro-text .highlight {
    color: var(--dark-yellow);
    font-weight: 500;
}

/* Design Approach */
.design-approach {
    margin-bottom: 4rem;
}

.design-approach h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.design-approach p {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .challenge-solution {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* More Projects Section */
.more-projects {
    margin: 6rem 0;
}

.more-projects-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.more-projects-header h2 {
    font-size: 24px;
    margin: 0;
}

.project-nav {
    display: flex;
    gap: 1rem;
}

.nav-arrow {
    background: none;
    border: 1px solid #E5E5E5;
    border-radius: 100px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-arrow:hover {
    background: #F5F5F5;
}


/* Experience Section Styles - matching Awards layout */
.experience-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.experience-info h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.experience-info p {
    color: var(--secondary-color);
    font-size: 16px;
}

.experience-details p {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.experience-details p:last-child {
    margin-bottom: 0;
}


/* Desktop Styles */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        gap: 2rem;
    }

    .menu-toggle {
        display: none;
    }

    .mobile-nav {
        display: none !important;
    }
}


/* Responsive styles */
@media (max-width: 768px) {
    .about-content {
        margin-bottom: 3rem;
    }
    
    .about-content p {
        font-size: 15px;
    }
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .launching h3 {
        font-size: 32px;
    }

    .timeline-header {
        display: none;
    }

    .timeline-content {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-column: 1 !important;
        margin-bottom: 1rem;
    }
}


.visit-link {
    padding: 8px 16px;
    border-radius: 100px;
    text-decoration: none;
    color: #000;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.visit-link:hover {
    background-color: #f5f5f5;
    transform: translateY(-1px);
}

/* Project Page Styles */

.subtitle {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.metadata {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.metadata-item h3 {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.metadata-item p {
    font-size: 14px;
    color: var(--primary-color);
    line-height: 1.4;
}


/* Project Container and Back Link */


/* Metadata Grid */
.metadata {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.metadata-item h3 {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.metadata-item p {
    font-size: 14px;
    color: var(--primary-color);
    line-height: 1.4;
}


/* Launching Section */
.launching {
    margin-bottom: 6rem;
    padding: 0;
}

.launching h2 {
    font-size: 24px;
    margin-bottom: 1rem;
}

.launching h3 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.launching p {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 4rem;
    max-width: 1000px;
}

/* Timeline */
.timeline {
    position: relative;
    width: 100%;
}

.timeline-header {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-bottom: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
}

.timeline-header span {
    font-size: 14px;
    color: var(--secondary-color);
}

.timeline-content {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    position: relative;
}

.timeline-item {
    background: #F0F7FF;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.timeline-icon {
    width: 32px;
    height: 32px;
    background: #0066FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon .material-icons {
    color: white;
    font-size: 18px;
}

.timeline-item p {
    font-size: 14px;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.4;
}


/* Responsive styles */
@media (max-width: 768px) {
    .award-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 24px 0;
    }

    .visit-link {
        align-self: flex-start;
    }
}


.design-approach p {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.6;
}


.timeline-item p {
    font-size: 14px;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.4;
}

.project-card:hover img {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.project-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.project-card p {
    color: var(--secondary-color);
}


.carousel-nav {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
    padding: 0 2rem;
}


/* Contact Section */
.contact {
    text-align: center;
    margin: 120px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.contact h1 {
    font-size: 48px;
    margin-bottom: 24px;
}


/* Experience Section Styles - matching Awards layout */
.experience-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.experience-info h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.experience-info p {
    color: var(--secondary-color);
    font-size: 16px;
}

.experience-details p {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.experience-details p:last-child {
    margin-bottom: 0;
}

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

.project-card {
    text-decoration: none;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);
}

.project-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.project-card h3 {
    font-size: 20px;
    margin-bottom: 0.5rem;
}

.project-card p {
    color: var(--secondary-color);
    font-size: 16px;
}

.footer-nav {
    max-width: 1200px;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Footer */
footer {
    background: #000;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer > div {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer p {
    color: #666;
    font-size: 14px;
}

footer nav {
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

footer nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s ease;
}

footer nav a:hover {
    opacity: 0.7;
}

/* Footer Responsive */
@media (max-width: 768px) {
    footer > div {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    footer nav {
        flex-wrap: wrap;
        gap: 16px;
    }
}


/* Key Features Section */
.key-features {
    margin-bottom: 6rem;
}

.key-features h2 {
    font-size: 24px;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #E5E5E5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
}

.feature-card.blue {
    background: #0066FF;
    color: white;
    border: none;
}

.feature-card.white {
    background: white;
}

.feature-card .feature-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin-bottom: 1rem;
}

.feature-card.blue .feature-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-card.white .feature-number {
    background: rgba(0, 102, 255, 0.1);
    color: #0066FF;
}

.feature-card h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.feature-card.blue p {
    color: rgba(255, 255, 255, 0.8);
}

.feature-card.white p {
    color: var(--secondary-color);
}

.feature-showcase {
    background: #000;
    border-radius: 12px;
    padding: 2rem;
    aspect-ratio: 16/9;
    width: 100%;
    position: relative;
}

.feature-showcase iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

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

    .feature-showcase {
        padding: 1rem;
    }
}

/* Navigation Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    position: relative;
}

.logo img {
    height: 40px;
}

.desktop-nav {
    display: none;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle .material-icons {
    font-size: 24px;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        gap: 30px;
    }

    .desktop-nav a {
        color: #333;
        text-decoration: none;
        font-size: 16px;
    }

    .menu-toggle {
        display: none;
    }
}

/* Responsive Adjustments */


@media (max-width: 480px) {
    .metadata {
        grid-template-columns: 1fr;
    }
}



/* Mobile Styles */
@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    main {
        padding: 12rem 1rem 2rem;
    }

    main > h1 {
        font-size: 48px;
    }

    main > p {
        font-size: 18px;
        margin-bottom: 3rem;
    }
}

/* Overview and Project Background Sections */
.overview,
.project-background {
    margin-bottom: 4rem;
}

.overview h2,
.project-background h2 {
    font-size: 24px;
    margin-bottom: 1.5rem;
}

.overview-content,
.background-content {
    max-width: 1000px;
}

.overview-content p,
.background-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-color);
}

.overview {
    background: #F8F9FC;
    border-radius: 12px;
    padding: 2rem;
}

@media (max-width: 768px) {
    .overview,
    .project-background {
        margin-bottom: 3rem;
    }

    .overview {
        padding: 1.5rem;
    }
}

/* Section Styles */
.section {
    margin-bottom: 6rem;
}

.section h2 {
    font-size: 24px;
    margin-bottom: 2rem;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.image-item {
    border-radius: 12px;
    overflow: hidden;
}

.image-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .section {
        margin-bottom: 4rem;
    }

    .image-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Web Image Section */
.web-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.web-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}


/* Intro Section */
.intro-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
}

.app-logo {
    flex-shrink: 0;
}

.app-logo img {
    width: 64px;
    height: auto;
}

.intro-text h2 {
    font-size: 24px;
    margin-bottom: 1rem;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-color);
}

/* Background Section */
.background {
    margin-bottom: 4rem;
}

.background h2 {
    font-size: 24px;
    margin-bottom: 1rem;
}

.background p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-color);
}

/* Pain Points */
.pain-points {
    margin-bottom: 4rem;
}

.pain-points h2 {
    font-size: 24px;
    margin-bottom: 1rem;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.pain-point-card {
    background: #F8F9FC;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
}

.pain-point-card .number {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pain-point-card p {
    font-size: 16px;
    line-height: 1.4;
    color: var(--secondary-color);
}

/* Problem Statement */
.problem-statement {
    margin-bottom: 4rem;
}

.problem-statement h2 {
    font-size: 24px;
    margin-bottom: 1rem;
}

.problem-statement p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-color);
}

/* Persona */
.persona {
    margin-bottom: 4rem;
}

.persona h2 {
    font-size: 24px;
    margin-bottom: 1rem;
}

.persona img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Solution Content */
.solution-content {
    margin-bottom: 4rem;
}

.solution-content h2 {
    font-size: 24px;
    margin-bottom: 1rem;
}

.solution-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-color);
}

/* Wireframe */
.wireframe {
    margin-bottom: 4rem;
}

.wireframe h2 {
    font-size: 24px;
    margin-bottom: 1rem;
}

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

.wireframe-images img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.wireframe-description p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-color);
}

/* User Flow */
.user-flow {
    margin-bottom: 4rem;
}

.user-flow h2 {
    font-size: 24px;
    margin-bottom: 1rem;
}

.features-cards {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-card {
    background: #F8F9FC;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
}

.feature-card.purple {
    background: #E0E7FF;
}

.feature-card.active {
    background: #D1D5DB;
}

.feature-card .feature-number {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.4;
    color: var(--secondary-color);
}

.flow-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.flow-section {
    display: none;
}

.flow-section.active {
    display: block;
}

.flow-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.step {
    text-align: center;
}

.step img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.step p {
    font-size: 14px;
    line-height: 1.4;
    color: var(--secondary-color);
    margin-top: 0.5rem;
}

/* iPad Version */
.ipad-version {
    margin-bottom: 4rem;
}

.ipad-version h2 {
    font-size: 24px;
    margin-bottom: 1rem;
}

.ipad-version p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.device-images {
    display: flex;
    gap: 2rem;
}

.device-images img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Reflection */
.reflection {
    margin-bottom: 4rem;
}

.reflection h2 {
    font-size: 24px;
    margin-bottom: 1rem;
}

.reflection p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.award-images {
    display: flex;
    gap: 2rem;
}

.award-images img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* More Projects */
.more-projects {
    margin-bottom: 4rem;
}

.more-projects-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.more-projects-header h2 {
    font-size: 24px;
    margin: 0;
}

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

.project-card {
    text-decoration: none;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);
}

.project-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.project-card h3 {
    font-size: 20px;
    margin-bottom: 0.5rem;
}

.project-card p {
    color: var(--secondary-color);
    font-size: 16px;
}

.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-bottom: 6rem;
}

.contact-label {
    color: #666;
    margin-bottom: 1rem;
    font-size: 16px;
}

.contact-section h2 {
    font-size: 48px;
    margin-bottom: 2rem;
}

.lets-talk-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: white;
    color: black;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.lets-talk-btn:hover {
    transform: translateY(-2px);
}


/* Challenge Screens */
.challenge-screens {
    position: relative;
    padding-top: 2rem;
}


.nav-arrow {
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 100px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}


.screens-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.screen-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.screen-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: opacity 0.15s ease-in-out;
}

@media (max-width: 1200px) {
    .challenge-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

/* Add smooth transition for carousel */
.screen-group {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Results Section */
.results-content {
    max-width: 1000px;
}

.results-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .section {
        margin-bottom: 4rem;
    }
}

.project-content h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 600;
}


/* Value Section */
.value {
    margin-bottom: 6rem;
}

.value h2 {
    font-size: 24px;
    margin-bottom: 1rem;
}

.value > p {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 16px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.value-item {
    background: #F8F9FC;
    border-radius: 12px;
    padding: 2rem;
}

.value-number {
    width: 32px;
    height: 32px;
    background: #0066FF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0066FF;
}

.value-item p {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.5;
}


@media (max-width: 768px) {
    .value-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
}

.project-card {
    text-decoration: none;
    color: var(--primary-color);
}

.project-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Project Container Layout */

.subtitle {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 3rem;
    max-width: 800px;
}


/* Updated Footer Styles */
.site-footer {
    background: #000;
    padding: 6rem 0;
    color: white;
}



/* Design Challenges Section */
.design-challenges {
    margin-bottom: 6rem;
}

.design-challenges h2 {
    font-size: 24px;
    margin-bottom: 3rem;
}

.challenge-block {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background: #F8F9FC;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}

.challenge-content h3 {
    font-size: 20px;
    margin-bottom: 2rem;
}

.challenge-section {
    margin-bottom: 2rem;
}

.challenge-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.challenge-section p {
    color: var(--secondary-color);
    line-height: 1.6;
    font-size: 16px;
}


/* Add these styles to your existing CSS */
.screen-group {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screen-group.active {
    display: grid;
    opacity: 1;
}

/* Update the existing screens-grid styles */
.screens-grid {
    margin-top: 1rem;
    position: relative;
}


/* Results Section */
.results-content p {
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
}


.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.experience-header h3 {
    font-size: 1.25rem;
    font-weight: 500;
}

.visit-link {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    border: 1px solid #E5E5E5;
}

.date {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.experience-item ul {
    list-style: none;
    padding: 0;
}

.experience-item li {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Experience Section Styles - matching Awards layout */
.experience-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.experience-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.experience-info h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.experience-info p {
    color: var(--secondary-color);
    font-size: 16px;
}

.experience-details p {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.experience-details p:last-child {
    margin-bottom: 0;
}


/* Awards Section Styles */
.awards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 80px;
}

.award-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.award-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.award-info h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

.award-info p {
    font-size: 16px;
    color: #666;
    margin: 0;
}


.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s ease;
}

.footer-nav a:hover {
    opacity: 0.7;
}

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

    .contact-section h2 {
        font-size: 32px;
    }

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

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Results Section */
.results {
    margin-bottom: 4rem;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.results-text h2 {
    font-size: 24px;
    margin-bottom: 1.5rem;
}

.results-text p {
    color: var(--secondary-color);
    line-height: 1.6;
}

.results-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .reflection-grid,
    .results-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .results-text {
        order: 1;
    }
    
    .results-image {
        order: 2;
    }
}

/* Reflection Section */
.reflection {
    margin-bottom: 6rem;
}

.reflection h2 {
    font-size: 24px;
    margin-bottom: 1.5rem;
}

.reflection > p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 1000px;
}

.reflection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.reflection-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}



/* Project Hero */
.project-hero {
    margin-bottom: 4rem;
}

.project-hero img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Project Container and Back Link */
.project-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    background: #F5F5F5;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 4rem;
}

.back-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .project-container {
        padding: 12rem 1rem 2rem;
    }

    .project-content h1 {
        font-size: 48px;
    }

    .subtitle {
        font-size: 20px;
    }

    .metadata {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Project Container Layout */
.project-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 2rem;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    background: #F5F5F5;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 4rem;
}

.back-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Project Header */
.project-container h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Reflection Section */
.reflection {
    margin-bottom: 6rem;
}

.reflection h2 {
    font-size: 24px;
    margin-bottom: 1.5rem;
}

.reflection > p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* Creates 3 equal columns */
    grid-template-rows: repeat(2, auto);    /* Creates 2 rows */
    gap: 24px;                             /* Space between cards */
    margin: 48px 0;
}

.feedback-card {
    padding: 32px;
    border-radius: 8px;
    background-color: #F6FBFF;
}

.feedback-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

/* Responsive layout */
@media (max-width: 1024px) {
    .feedback-grid {
        grid-template-columns: repeat(2, 1fr);  /* 2 columns on medium screens */
    }
}

@media (max-width: 768px) {
    .feedback-grid {
        grid-template-columns: 1fr;  /* 1 column on mobile */
    }
}

.problem-research {
    margin-bottom: 4rem;
}

.problem-research h2 {
    font-size: 24px;
    margin-bottom: 2rem;
}

.research-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* Creates 2 equal columns */
    gap: 24px;
    margin-bottom: 48px;
}

.research-images img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}


.research-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.research-card {
    background: #F6FBFF;
    border-radius: 12px;
    padding: 32px;
}

.research-card .number {
    width: 32px;
    height: 32px;
    background: #0066FF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin-bottom: 1rem;
}

.research-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

@media (max-width: 768px) {
    .research-images {
        flex-direction: column;
    }
    
    .research-images img {
        width: 100%;
        grid-template-columns: 1fr;
    }
    
    .research-cards {
        grid-template-columns: 1fr;
    }
}

/* Design System Section */
.design-system {
    margin-bottom: 4rem;
}

.design-system h2 {
    font-size: 24px;
    margin-bottom: 2rem;
}

.design-system img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Userflow Section */
.userfl {
    margin-bottom: 4rem;
}

.userfl h2 {
    font-size: 24px;
    margin-bottom: 2rem;
}

.userfl .persona-content {
    width: 100%;
}

.userfl .persona-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
}




/* Responsive adjustments */
@media (max-width: 768px) {
    .design-system {
        margin-bottom: 3rem;
    }
}

.sitemap {
    margin-bottom: 4rem;
}

.sitemap h2 {
    font-size: 24px;
    margin-bottom: 2rem;
}

.sitemap-content {
    width: 100%;
}

.sitemap-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    max-width: 100%;
}

@media (max-width: 768px) {
    .sitemap {
        margin-bottom: 3rem;
    }
}

/* Design Approach Section Styles */
.design-approach {
    margin-bottom: 4rem;
}

.design-approach h2 {
    font-size: 24px;
    margin-bottom: 2rem;
}

.design-approach img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    object-fit: cover;
}

/* Video Section Styles */
.video-section {
    margin: 4rem 0;
}

.video-section h2 {
    font-size: 24px;
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .design-approach {
        margin-bottom: 3rem;
    }
    
    .design-approach img {
        margin: 1.5rem 0;
    }
    
    .video-section {
        margin: 3rem 0;
    }
}