.service-section {
    width: 100%;         
    background: #f5f5f5; /* dilersen renk ekleyebilirsin */
}

.service-section-container {
    width: 1100px;
    padding: 20px; 
    max-width: 95%;
    margin: 0 auto; /* ortalama */
    font-size: 18px;
    background: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 0px 20px 30px 20px;
}

.service-item {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #333;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  transition: all .3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.service-image-wrapper {
  position: relative;
  overflow: hidden;
}

.service-image-wrapper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .4s ease;
}

.service-item:hover img {
  transform: scale(1.08);
}

.service-item:hover .service-title {
  color: #71ffff;
  transform: scale(1.08);
}

/* Resmin sol altındaki title */
.service-title {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
}

/* Resmin altındaki kısa metin */
.service-desc {
  text-align: center;
  font-size: 15px;
  padding: 15px;
  line-height: 1.4;
  height: 80px;
  overflow: hidden;
  display: -webkit-box; /* çok satırlı kısaltma */
  -webkit-box-orient: vertical;
  text-overflow:  ellipsis;
}

/* Responsive */
@media ( max-width : 768px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media ( max-width : 480px) {
  .service-grid {
    grid-template-columns:  1fr;
  }
}

.blur {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: blur(12px);
  transition: filter .5s ease, transform .4s ease;
}

.blur-loaded {
  filter:  blur(0) !important;
}