/* ── Grup Başlığı ───────────────────────────────────────────────────────── */
.services .section-title {
  font-size: 1.75rem;              /* Kurumsal başlık boyutu */
  font-weight: 600;                /* Biraz kalın */
  color: #212529;                  /* Kurumsal metin rengi */
  border-bottom: 3px solid #40e0d0;/* Vurgu için turkuaz alt çizgi */
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

/* ── Kart Konteyneri ─────────────────────────────────────────────────────── */
.services .service-card {
  display: block;
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
  overflow: hidden;                /* Hover’da taşmayı engeller */
  text-decoration: none;
  color: #fff;
  padding: 3rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Overlay karartma */
.services .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
  z-index: 1;
}

/* Kart hover efektleri */
.services .service-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.15);
}
.services .service-card:hover::before {
  background: rgba(0, 0, 0, 0.6);
}

/* İçerik öne çıksın */
.services .service-card .service-content {
  position: relative;
  z-index: 2;
}

/* Metin hizalamasını sırayla değiştir */
.services .service-card:nth-of-type(odd) .service-content {
  text-align: left;
}
.services .service-card:nth-of-type(even) .service-content {
  text-align: right;
}

/* Başlık animasyonu ve taşmayı önlemek için origin ayarı */
.services .service-card .card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  transform-origin: center;
}
.services .service-card:nth-of-type(odd) .card-title {
  transform-origin: left center;
}
.services .service-card:nth-of-type(even) .card-title {
  transform-origin: right center;
}
.services .service-card:hover .card-title {
  transform: scale(1.05);          /* Taşmayı engelleyecek makul ölçek */
}

/* Liste maddelerinin okunaklılığı */
.services .service-card ul li {
  transition: color 0.3s ease;
}
.services .service-card:hover ul li {
  color: #f1f1f1;
}

/* Mobilde dikey düzen */
@media (max-width: 767.98px) {
  .services .service-card {
    padding: 2rem 1rem;
  }
  .services .service-card .service-content {
    text-align: left !important;
  }
}
