 .slider-wrapper {
     overflow: hidden;
     position: relative;
     width: 100%;
     touch-action: pan-y;
     /* dikey scroll bozulmasın */
 }

 .slider-track {
     display: flex;
     gap: 30px;
     width: max-content;
     will-change: transform;
     user-select: none;
 }


 .project-card {
     flex: 0 0 420px;
     /* büyük ekran */
     height: 420px;
     position: relative;
     border-radius: 20px;
     overflow: hidden;
 }

 .project-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 1.2s ease;
 }

 .project-card:hover img {
     transform: scale(1.05);
 }

 .project-overlay {
     position: absolute;
     bottom: 0;
     width: 100%;
     padding: 35px 25px;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
     color: white;
 }

 /* ✅ Tablet */
 @media (max-width: 992px) {
     .project-card {
         flex: 0 0 320px;
         height: 350px;
     }
 }

 /* ✅ Mobil */
 @media (max-width: 576px) {
     .project-card {
         flex: 0 0 260px;
         height: 300px;
     }
 }