/* SERVICES SECTION */
.services-section {
  padding: 100px 20px;
  background: #111;
  color: #fff;
  text-align: center;
}

.services-section .container {
  max-width: 1100px;
  margin: auto;
}

.services-section h1 {
  font-size: 2.5rem;
  color: #f1c40f;
  margin-bottom: 20px;
}

.services-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 40px;
}

.service-card {
  background: #1c1c1c;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255,255,255,0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-card h2 {
  font-size: 1.3rem;
  color: #f1c40f;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #ccc;
}
