.logo img {
  left: 15vw;
  z-index: 999;
  filter: none;
}

.nav a{
    color: #005a56;
}

.language-dropdown select {
    color: #005a56;
}

.page-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #005a56;
    margin-bottom: 30px;
}

.layout-wrapper {
    padding: 2rem 1rem; /* sağ-sol padding */
    max-width: 1200px;  /* container maksimum genişliği */
    margin: 0 auto;     /* ortala */
    margin-top: 15vh;
    padding: 2rem;
}

.services-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.services-left .services-subtitle {
  display: flex;
  font-size: 16px;
  color: #888;
  margin-bottom: 10px;
}

.services-left .services-title {
  font-size: 5vw;
  font-weight: 700;
  color: #22555a;
  margin: 0 0 20px;
}

.services-left .services-text {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.services-left{
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: flex-end;
}

.services-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-card {
  background: #e5e5e5;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  transition: background 0.3s, transform 0.3s;
  cursor: default;
  text-decoration: none;
  color: #005a56;
}

.service-card:hover {
  background: #d1d1d1;
  transform: translateY(-5px);
}

.boxslider {
    width: 88.23vw;
    height: 20.37vh;
    margin-top: 9.26vh;
    margin-left: 5.99vw;
    background-color: #FFFFFF;
    border: 0.05vw solid #FFFFFF;
    box-shadow: 0.52vw 0.93vh 1.85vh #FFFFFF,
                -0.52vw -0.93vh 1.85vh #FFFFFF;
    }

    @keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
    }

    .logos {
    overflow: hidden;
    padding: 5.56vh 0;
    background: #FFFFFF;
    white-space: nowrap;
    position: relative;
    margin-top: 1.39vh;
    }

    .logos:before,
    .logos:after {
    position: absolute;
    top: 0;
    width: 24.02vw;
    height: 100%;
    content: "";
    z-index: 2;
    }

    .logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), #ffffff);
    }

    .logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff);
    }

    .logos:hover .logos-slide {
    animation-play-state: paused;
    }

    .logos-slide {
    display: inline-block;
    animation: 45s slide infinite linear;
    }

    .logos-slide img {
    height: 12.63vh;
    margin: 0 2.08vw;
    }

/* News section title overflow handling */
.news-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive */
@media (max-width: 992px) {
  .services-container {
    grid-template-columns: 1fr;
  }
  .services-right {
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
  }
}

@media (max-width: 600px) {
  .services-right {
    grid-template-columns: 1fr;
  }
  .services-left .services-title {
    font-size: 36px;
  }
}