.study-case-container {
  padding: 50px 0;
  text-align: center;
  margin-bottom: 150px;
}
.study-case-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
}
.swiper-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.swiper-wrapper{
  height: auto !important;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 12px;
}
.custom-pagination {
  margin-top: 15px;
  font-weight: bold;
}

.swiper-slide {
  user-select: none;          /* Metin seçimini engeller */
  -webkit-user-drag: none;    /* Görsel sürüklemeyi kapatır */
  outline: none;              /* Mavi kenarlığı engeller */
}

.swiper-slide img {
  pointer-events: none;       /* Görsel üzerine tıklamayı pasifleştirir (isteğe bağlı) */
}

.swiper-slide:focus,
.swiper-slide:active {
  outline: none !important;   /* Her türlü focus kenarlığını kaldır */
}


.swiper-button-next,
  .swiper-button-prev {
    color: orange;
  }
@media (max-width: 768px) {
  .swiper-container { 
    width: 30%;
  }

  .swiper-button-next,
  .swiper-button-prev {
    top: var(--swiper-navigation-top-offset,28%);
  }

  .custom-pagination{
    margin-top: -100px;
  }

  .swiper-slide img {
    max-height: 300px;
  }

  .studycase-scratch{
    width: 80% !important;
    height: 40% !important;
    margin-bottom: 30px !important;
  }
}