/* Single typography system for all pages */
:root {
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-md: 18px;
    --font-size-lg: 20px;
    --font-size-xl: 24px;
    --font-size-2xl: 32px;
    --font-size-3xl: 36px;
    --font-size-4xl: 60px;
    --line-height-tight: 1.4;
    --line-height-base: 1.6;
    --line-height-relaxed: 1.8;
    --color-text: #333;
    --color-text-muted: #666;
    --color-heading: #1a1a1a;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

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

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background: #ffffff;
}

.container {
    display: flex;
    min-height: 100vh;
    width: 100%;
    background: #ffffff;
}

/* Left Column - Image Slider */
.left-column {
    width: calc(45% - 40px);
    height: calc(100vh - 40px);
    margin: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: clip-path 0.3s ease;
}

.left-column.home-shape {
    clip-path: url(#leftColumnShape);
    -webkit-clip-path: url(#leftColumnShape);
}

.selected-projects-label {
    position: fixed;
    bottom: 40px;
    left: 60px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--color-heading);
    z-index: 35;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    pointer-events: none;
    display: none;
}

.left-column.home-shape ~ .selected-projects-label {
    display: block;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.project-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 16px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
    z-index: 20;
    white-space: nowrap;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.slide.project-slide {
    cursor: pointer;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.slide:hover .slide-overlay {
    opacity: 1;
}

.slide.active:hover .slide-overlay {
    opacity: 1;
}

.slide:hover img {
    transform: scale(1.05);
    filter: blur(2px);
}

.slide.active:hover img {
    transform: scale(1.05);
    filter: blur(2px);
}

.slide-hover-description {
    color: #ffffff;
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-tight);
    text-align: center;
    margin: 0;
    max-width: 90%;
    padding: 24px;
}


/* Single Photo Container (for About page) */
.single-photo-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.single-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.single-photo-container .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
    pointer-events: none;
}

/* Don't show overlay on image hover - only on project row hover */
.single-photo-container:hover .slide-overlay {
    opacity: 0;
}

.single-photo-container:hover img {
    transform: none;
    filter: none;
}

/* Overlay only visible when project row is hovered */
.single-photo-container.project-hovered .slide-overlay {
    opacity: 1;
}

.single-photo-container.project-hovered img {
    transform: scale(1.05);
    filter: blur(2px);
}

/* Projects Slider Container */
.projects-slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.projects-slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.projects-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: none;
}

.projects-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.projects-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
    transform: none;
    filter: none;
}

.projects-slide .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.projects-slide:hover .slide-overlay,
.projects-slide.project-hovered .slide-overlay {
    opacity: 1;
}

.projects-slide:hover img,
.projects-slide.project-hovered img {
    transform: scale(1.05);
    filter: blur(2px);
}

.projects-slider-container .featured-badge-projects {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(200, 210, 220, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: #ffffff;
    z-index: 20;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.projects-slider-container .featured-badge-projects svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}


/* Testimonial Slider Container */
.testimonial-slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.testimonial-slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Next Button - Apple Liquid Glass Design */
.slider-next-btn {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.slider-next-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.slider-next-btn:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.2);
}

.slider-next-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    width: 24px;
    border-radius: 16px;
}

/* Timer progress animation for projects slider only */
#projectsSliderContainer .indicator.active {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
}

#projectsSliderContainer .indicator.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: white;
    border-radius: 16px;
    animation: indicatorProgress 4s linear forwards;
    z-index: 1;
    will-change: width;
    pointer-events: none;
}

#projectsSliderContainer .indicator.active.paused::before {
    animation-play-state: paused;
}

@keyframes indicatorProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Right Column - Content */
.right-column {
    width: 55%;
    margin-left: 45%;
    background: #ffffff;
    padding: 20px 40px;
    padding-top: 100px; /* Add top padding to account for fixed tabs */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

/* Navigation Tabs */
.tabs {
    position: fixed;
    top: 0;
    left: 45%;
    right: 0;
    display: flex;
    gap: 6px;
    padding: 20px 60px;
    background: #ffffff;
    z-index: 100;
}

.tab-button {
    background: none;
    border: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 10px 16px;
    border-radius: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-button:hover {
    color: var(--color-text);
}

.tab-button.active {
    background: #f5f5f5;
    color: var(--color-text);
}

.tab-button.active::after {
    display: none;
}

/* Tab Content */
.tab-content {
    flex: 1;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-pane.active {
    display: block;
}

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

.content-section {
    max-width: calc(100% - 120px);
    width: 100%;
    margin: 0 60px;
}

.headline {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: 30px;
    color: var(--color-heading);
}

.headline-main {
    display: block;
}

.description {
    font-size: var(--font-size-md);
    line-height: var(--line-height-relaxed);
    color: var(--color-text);
    margin-bottom: 40px;
}

/* Availability Badge */
.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 8px 8px;
    background: #DBEFDF;
    border-radius: 16px;
}

.badge-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #008624;
    display: inline-block;
    flex-shrink: 0;
}

.badge-text {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: #008624;
}

/* Call to Action Button */
.cta-button {
    background: #8c9282;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.cta-button:hover {
    background: #7a8070;
    transform: translateY(-1px);
}


.cta-button:active {
    transform: translateY(0);
}

/* Companies Section */
.companies-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
    position: relative;
    overflow: hidden;
}

.companies-wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
}

.companies-wrapper::before,
.companies-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.companies-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    transition: background 0.3s ease;
}

.companies-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    transition: background 0.3s ease;
}



.companies-scroll {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.companies-scroll-1 {
    animation: scroll-left 35s linear infinite;
}

.companies-scroll-2 {
    animation: scroll-left 35s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.company-logo {
    flex-shrink: 0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.company-logo:hover {
    opacity: 1;
}

.company-logo img {
    max-height: 100%;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.company-logo:hover img {
    filter: grayscale(0%);
}



.single-photo-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.single-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.single-photo-container:hover .slide-overlay {
    opacity: 1;
}

.single-photo-container:hover img {
    transform: scale(1.05);
    filter: blur(2px);
}

.featured-badge-projects {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(200, 210, 220, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: #ffffff;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-badge-projects svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.content-section h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-heading);
    transition: color 0.3s ease;
}

.content-section p {
    font-size: var(--font-size-md);
    line-height: 1.8;
    color: var(--color-text);
    transition: color 0.3s ease;
}



/* Testimonials Page Styles */
.testimonials-content {
    max-width: 80%;
    width: 100%;
    margin: 0 auto;
}

.testimonials-heading {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--color-heading);
    transition: color 0.3s ease;
}


.testimonial-card-container {
    position: relative;
}

.testimonial-card {
    background: #fafcfa;
    border-radius: 16px;
    padding: 40px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-quote-mark {
    font-size: var(--font-size-4xl);
    font-weight: 300;
    color: #999;
    line-height: 1;
    text-align: center;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.testimonial-card-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
    justify-content: space-between;
}

.testimonial-card-text {
    font-size: var(--font-size-md);
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
    transition: color 0.3s ease;
}

.testimonial-card-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-self: flex-start;
}

.testimonial-card-name {
    font-size: var(--font-size-md);
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.testimonial-card-title {
    font-size: var(--font-size-md);
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}


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

/* About Page Styles */
.about-content {
    max-width: calc(100% - 120px);
    width: 100%;
    margin: 0 60px;
}

.about-section {
    margin-bottom: 60px;
    background: #fafcfa;
    border-radius: 16px;
    padding: 32px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-heading {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-heading);
    transition: color 0.3s ease;
}


.about-text {
    font-size: var(--font-size-md);
    line-height: 1.8;
    color: var(--color-text);
    transition: color 0.3s ease;
}


.about-text .highlight {
    color: #557A5A;
    font-weight: 500;
}


/* Design Values */
.design-values {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.design-value-item {
    margin-bottom: 0;
}

.value-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.value-title-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.value-number {
    font-size: var(--font-size-md);
    font-weight: 500;
    color: #999;
    transition: color 0.3s ease;
}

.value-text {
    font-size: var(--font-size-md);
    font-weight: 500;
    color: var(--color-heading);
    transition: color 0.3s ease;
}



.value-chevron {
    color: #999;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.design-value-item.active .value-chevron {
    transform: rotate(180deg);
}

.value-header:hover .value-chevron {
    color: var(--color-heading);
}


.value-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.design-value-item.active .value-content {
    max-height: 500px;
    padding: 16px 0;
}

.value-description {
    font-size: var(--font-size-base);
    line-height: 1.8;
    color: var(--color-text-muted);
    margin: 0;
    transition: color 0.3s ease;
}


.value-divider {
    height: 1px;
    background: #e5e5e5;
    width: 100%;
}

/* Happiness Images */
.happiness-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.happiness-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
}

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

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

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        flex-direction: column;
    }

    .left-column {
        width: 100%;
        height: 50vh;
        min-height: 400px;
        position: relative;
        margin: 0;
        border-radius: 0;
    }

    .right-column {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        padding: 30px 40px;
        padding-top: 100px;
        border-radius: 0;
        min-height: 100vh;
    }

    .content-section,
    .about-content,
    .testimonials-content {
        max-width: 100%;
        margin: 0;
    }

    .tabs {
        left: 0;
        padding: 15px 20px;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-button {
        font-size: var(--font-size-sm);
        padding: 8px 16px;
        flex-shrink: 0;
    }

    .headline {
        font-size: var(--font-size-3xl);
    }

    .description {
        font-size: var(--font-size-base);
    }
}

@media (max-width: 640px) {
    .right-column {
        padding: 20px 30px;
        padding-top: 90px;
        margin: 0;
        border-radius: 0;
    }

    .tabs {
        padding: 12px 15px;
        gap: 6px;
        overflow-x: auto;
    }

    .tab-button {
        font-size: var(--font-size-xs);
        padding: 6px 12px;
    }

    .headline {
        font-size: var(--font-size-xl);
    }

    .description {
        font-size: var(--font-size-sm);
    }

    .companies-section {
        padding-top: 30px;
    }

    .companies-wrapper::before,
    .companies-wrapper::after {
        width: 60px;
    }

    .companies-scroll {
        gap: 30px;
    }

    .company-logo {
        height: 35px;
    }

    .company-logo img {
        max-width: 100px;
    }

    .slider-next-btn {
        width: 48px;
        height: 48px;
        right: 20px;
        bottom: 20px;
    }

    .slider-next-btn svg {
        width: 18px;
        height: 18px;
    }

    .about-heading {
        font-size: var(--font-size-xl);
    }

    .about-text {
        font-size: var(--font-size-base);
    }

    .happiness-images {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .value-number,
    .value-text {
        font-size: var(--font-size-base);
    }

    .testimonials-content {
        max-width: 100%;
        margin: 0;
    }

    .testimonials-heading {
        font-size: var(--font-size-xl);
        margin-bottom: 30px;
    }

    .testimonial-card {
        flex-direction: column;
        padding: 24px;
        gap: 20px;
    }

    .testimonial-card-avatar {
        width: 60px;
        height: 60px;
        align-self: flex-start;
    }

    .testimonial-card-text {
        font-size: var(--font-size-sm);
    }

    .testimonial-card-name,
    .testimonial-card-title {
        font-size: var(--font-size-sm);
    }
}

/* Projects Header */
.projects-header {
    max-width: calc(100% - 120px);
    margin: 0 60px 60px 60px;
    padding-top: 20px;
}

.projects-heading {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-heading);
    margin: 0 0 12px 0;
}

.projects-tagline {
    font-size: var(--font-size-md);
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Projects Scroll Container */
.projects-scroll-container {
    max-width: calc(100% - 120px);
    margin: 0 60px;
    padding: 0;
    padding-top: 20px;
    overflow-y: auto;
    max-height: calc(100vh - 200px);
    padding-right: 0;
}

/* Hide scrollbar but keep scrolling functionality */
.projects-scroll-container::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.projects-scroll-container {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Project Table Row Styling */
.project-row {
    display: flex;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid #F0F0F0;
    border-bottom: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    width: 100%;
}

.project-row:first-child {
    border-top: none;
}

.project-row:last-child {
    border-bottom: none;
}

.project-row:hover {
    background-color: #F5F5F5;
    opacity: 1;
    padding-left: 12px;
    padding-right: 12px;
    margin-left: -12px;
    margin-right: -12px;
    transform: scale(0.98);
}

.project-name {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-size-md);
    font-weight: 500;
    color: var(--color-heading);
    text-align: left;
}

.project-name span:first-child {
    font-weight: 500;
    color: var(--color-heading);
}

.project-star {
    display: inline-block;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-left: 4px;
}

.project-type {
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--color-heading);
    text-align: left;
    margin-right: 32px;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nda-tag {
    font-size: var(--font-size-xs);
    color: #d32f2f;
    font-weight: 600;
    padding: 3px 8px;
    border: 1px solid #d32f2f;
    border-radius: 4px;
    background: #ffebee;
}

.project-year {
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--color-heading);
    text-align: right;
    margin-right: 16px;
    min-width: 50px;
}

.project-arrow {
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--color-heading);
    text-align: right;
    min-width: 20px;
}

/* Responsive adjustments for Projects page */
@media (max-width: 968px) {
    .projects-scroll-container {
        margin: 0 40px;
        max-width: calc(100% - 80px);
    }

    .project-name {
        font-size: var(--font-size-base);
    }

    .project-type,
    .project-year,
    .project-arrow {
        font-size: var(--font-size-sm);
    }

    .project-type {
        min-width: 150px;
        margin-right: 24px;
    }
}

@media (max-width: 640px) {
    .projects-scroll-container {
        margin: 0 20px;
        max-width: calc(100% - 40px);
    }

    .project-row {
        flex-wrap: wrap;
        padding: 20px 0;
    }

    .project-name {
        width: 100%;
        margin-bottom: 8px;
        font-size: var(--font-size-base);
    }

    .project-type {
        margin-right: 16px;
        min-width: auto;
        font-size: var(--font-size-sm);
    }

    .project-year {
        margin-right: 12px;
        min-width: auto;
        font-size: var(--font-size-sm);
    }

    .project-arrow {
        font-size: var(--font-size-sm);
    }
}
