/* =========================
   SERVICES PAGE
========================= */

.services-section {
  padding: 50px 0;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Service Card */
.service-card {
  background: #111827;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: 0.4s ease;
  text-align: center;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #1f2937;
}

/* Caption */
.service-card h3 {
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.7);
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-section {
    padding: 70px 0;
  }
}
