/* ==========================================================================
   HİZMETLERİMİZ SAYFASI STİLLERİ
   ========================================================================== */

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hizmetlerimiz-hero {
  background-image: url("../../img/hizmetlerimiz.png");
  background-size: cover;
  background-position: center center;
  min-height: 320px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.hizmetlerimiz-hero::before {
  background: linear-gradient(
    to right,
    rgba(7, 29, 73, 0.85) 0%,
    rgba(7, 29, 73, 0.7) 40%,
    rgba(7, 29, 73, 0.5) 100%
  );
}

/* --------------------------------------------------------------------------
   SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-section {
  padding: 4rem 0;
}

.service-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 23, 66, 0.85) 100%
  );
}

.service-card-content {
  position: relative;
  padding: 1.5rem;
  width: 100%;
}

.service-card-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .service-card {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 575.98px) {
  .service-card {
    aspect-ratio: 3 / 2;
  }
}

