
    /* Customer Logo Banner */
    .customer-banner {
        width: 100%;
        overflow: hidden;
        background: rgb(22, 22, 22);
        padding: 4rem 0;
        margin: 4rem 0;
        position: relative;
    }

    .customer-banner::before,
    .customer-banner::after {
        content: "";
        position: absolute;
        top: 0;
        width: 200px;
        height: 100%;
        z-index: 2;
    }

    .customer-banner::before {
        left: 0;
        background: linear-gradient(to right, rgb(22, 22, 22) 0%, rgba(22, 22, 22, 0) 100%);
    }

    .customer-banner::after {
        right: 0;
        background: linear-gradient(to left, rgb(22, 22, 22) 0%, rgba(22, 22, 22, 0) 100%);
    }

    .logo-container {
        display: flex;
        position: relative;
        overflow: visible;
        width: 100%;
    }

    .logo-container .logo-group {
        display: flex;
        gap: 7rem;
        flex-shrink: 0;
        min-width: 100%;
        justify-content: space-around;
        animation: scrollLogos 2500s linear infinite;
        margin-right: 9rem;
        align-items: center;
        height: 8rem;
    }

    .logo-container .logo-group.primary {
        animation: none;
    }

    .logo-group.primary {
        opacity: 0%;
    }

    .logo-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 9rem;
    }

    .logo-wrapper:not(:has(.customer-logo[src*="skykopf.png"])) {
        margin: 0 1rem;
    }

    .logo-wrapper:has(.customer-logo[src*="hostly.png"]) {
        margin-right: 0;
    }

    .logo-wrapper:has(.customer-logo[src*="rs_calvarienberg.png"]) {
        margin-left: 0;
    }

    .customer-logo {
        object-fit: contain;
        filter: grayscale(100%) brightness(200%);
        transition: filter 0.3s ease;
        flex-shrink: 0;
        max-height: 100%;
        width: auto;
    }

    /* Individuelle Logo-Größen */
    .customer-logo[src*="skykopf.png"] {
        max-height: 8.5rem;
    }

    .customer-logo[src*="rs_calvarienberg.png"] {
        max-height: 7.7rem;
    }

    .customer-logo[src*="rbu.png"] {
        max-height: 5.3rem;
    }

    .customer-logo[src*="fealinqss.png"] {
        max-height: 5.2rem;
    }

    .customer-logo[src*="gs_kunden_partner.png"] {
        max-height: 4.5rem;
    }

    .customer-logo[src*="netlixor.png"] {
        max-height: 6.5rem;
    }

    .customer-logo[src*="vf_studios.png"] {
        max-height: 6.5rem;
    }

    .customer-logo[src*="tjc_news.png"] {
        max-height: 5.2rem;
    }

    .customer-logo[src*="hostly.png"] {
        max-height: 5.2rem;
    }

    .customer-logo:hover {
        filter: grayscale(0%) brightness(100%);
    }

    @keyframes scrollLogos {
        0% {
            transform: translateX(calc(-100% - 6rem));
        }
        100% {
            transform: translateX(calc(-200% - 6rem));
        }
    }

    @media (max-width: 768px) {
        .logo-container .logo-group {
            gap: 5rem;
        }
    }




    /* Project Sections */
    .projects-section {
        padding: 0;
        background: var(--bg-secondary);
        backdrop-filter: var(--backdrop-blur);
        -webkit-backdrop-filter: var(--backdrop-blur);
        height: 100%;
        width: 100%;
        margin-top: -4rem;
        padding: 0 2rem;
    }
   
    .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin: -4rem 0 2rem;
        padding-top: 5rem;
        font-weight: 600;
    }

    .project-list {
        max-width: 1400px;
        margin: 0 auto;
        padding: 2rem 0;
    }

    .project-section {
        display: flex;
        gap: 3rem;
        padding: 3rem 0;
        border-bottom: 1px solid var(--card-border);
        position: relative;
    }

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

    .project-section .mouse-glow {
        position: absolute;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 40%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.3s ease-out;
        z-index: 1;
        filter: blur(45px);
    }

    .project-image-container {
        flex: 0 0 40%;
        position: relative;
        height: 0;
        padding-bottom: 22.5%; /* 16:9 Ratio für 40% der Breite */
        background: var(--nav-bg);
        border: 1px solid var(--card-border);
        border-radius: 8px;
        overflow: hidden;
        transition: 0.3s ease;
    }

    .project-image-container:hover {
        transform: scale(1.015) rotate(0.5deg);
        transition: 0.3s ease;
    }

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

    .placeholder-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--color-border-heavy);
        font-size: 1.2rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .project-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .project-title {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: var(--color-primary);
    }

    .project-description {
        font-size: 1rem;
        color: var(--color-primary-dark);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .project-button {
        display: inline-block;
        padding: 0.8rem 1.5rem;
        background: var(--card-border);
        border: 1px solid var(--color-border-medium);
        border-radius: 8px;
        color: var(--color-primary);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        width: fit-content;
    }

    .project-button:hover {
        background: var(--color-border-medium);
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        .project-section {
            flex-direction: column;
            gap: 2rem;
            padding: 2rem 0;
        }

        .project-image-container {
            padding-bottom: 56.25%; /* 16:9 Ratio für volle Breite auf Mobilgeräten */
        }
    }