/* ---------- Section Wrapper ---------- */
.services-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  background: #fdfdfd;
}

/* ---------- Section Title ---------- */
.section-title {
  font-size: 36px;
  color: #222;
  margin-bottom: 40px;
  font-weight: 700;
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* ---------- Service Box ---------- */
.service-box {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 320px;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* ---------- Icons ---------- */
.service-box i {
  font-size: 40px;
  color: #007BFF;
  margin-bottom: 16px;
}

/* ---------- Service Title ---------- */
.service-box h3 {
  font-size: 20px;
  margin: 12px 0 8px;
  color: #333;
}

/* ---------- Description ---------- */
.service-box p {
  font-size: 15px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ---------- Button ---------- */
.service-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.service-btn:hover {
  background-color: #0056b3;
}

/* ---------- Responsive Tweaks ---------- */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .service-box {
    max-width: 100%;
  }
}
