.public-projects {
    background: var(--main-bg);
    padding: 60px 2%;
    color: #fff;
}

.projects-wrapper {
    display: flex;
    max-width: 100%;
    margin: 0 auto;
    gap: 40px;
}

/* Sol Video Alanı */
.main-display {
    flex: 2;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

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

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.slide-overlay h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Sağ Navigasyon Alanı */
.projects-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav-header h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--title);
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-item {
    color: var(--title);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--second-bg);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid var(--title);
}

.nav-item:hover,
.nav-item.active {
    color: #fff;
    background: var(--title);
    border-left-color: var(--accent);
    transform: translateX(10px);
}

.nav-item .number {
    font-weight: bold;
    opacity: 0.5;
}

.nav-item.active .number {
    color: var(--accent);
    opacity: 1;
}

.nav-item h4 {
    margin: 0;
    font-size: 1.1rem;
}
.nav-item small {
    opacity: 0.6;
}

/* Butonlar */
.nav-footer {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.custom-btn {
    position: static !important;
    width: 50px !important;
    height: 50px !important;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-btn::after {
    display: none;
} /* Swiper default okunu gizle */

@media (max-width: 992px) {
    .projects-wrapper {
        flex-direction: column;
    }
    .main-display {
        height: 350px;
    }
}
