.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 40px;
}

.service-item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
  text-align: center;
}

.service-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.btn-default {
  display: inline-block;
  padding: 8px 15px;
  background: #ff6a3d;
  color: #fff;
  text-decoration: blue;
  border-radius: 8px;
  font-size: 20px;
  transition: background 0.3s;
}

.btn-default:hover {
  background: #e65528;
}
