.services-carousel {
    display: none;
    position: relative;
    width: 80%;
    max-width: 600px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 5%;
    touch-action: pan-y;
  }

  .services-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .services-carousel-item {
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center;
    background-color: #fd8914;
    color: white;
    padding: 0 5%;
    box-sizing: border-box;
  }

  .services-carousel-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    padding: 0 5%;
    box-sizing: border-box;
    z-index: 5;
    pointer-events: none; /* Buton dışındaki alan tıklanamaz */

  }

  .services-carousel-button {
    background-color: rgba(0, 0, 0, 0.0);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 1.2rem;
    pointer-events: auto; /* Ama butonların kendisi tıklanabilir */

  }

  .services-carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.0);
  }

  .carousel-card-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: 150vh;

}

.carousel-card-icon img{
    width: 10vh;
    padding: 10px;
}

.carousel-card-title{
    max-height: 10vh;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
}

.carousel-card-p{
    height: 15vh;
    align-self: flex-end;
    text-align: center;
    font-family: "Noto Sans", serif;
}

.carousel-card-p p{
    padding: 0 30px 20px 30px;
}

.carousel-explore-btn{
    display: inline-block;
    padding: 12px 24px; /* Buton boyutu */
    color: #fff;
    background-color: transparent;
    width: 30%;
    font-size: 16px; /* Yazı boyutu */
    font-weight: bold; /* Yazı kalınlığı */
    text-align: center; /* Yazıyı ortalama */
    border: 2px solid #fff;
    border-radius: 8px; /* Köşeleri yuvarlatma */
    transition: all 0.3s ease; /* Geçiş animasyonu */
    cursor: pointer; /* Tıklanabilir işareti */
    margin: 0 auto;
    text-decoration: none;
    font-family: "Noto Sans", serif;
    z-index: 199;
    position: relative;
}


  @media (max-width: 768px) {
    
    .services-carousel {
      display: block;
    }
  }