/* =====================================
   SERVICES PAGE – COMPLETE CSS
   Compatible with your HTML
===================================== */

/* ===============================
   CORE SERVICES
================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.service-card {
  background: linear-gradient(135deg, #fafafa, #ffffff);
  padding: 28px 26px;
  border-radius: 16px;
  border: 1px solid #e9e2cf;
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
  border-color: #C8A04F;
}

/* subtle metallic shine */
.service-card::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 140%;
  height: 300%;
  background: linear-gradient(
    60deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.7s ease;
  opacity: 0;
}

.service-card:hover::after {
  transform: translateX(120%);
  opacity: 1;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #C8A04F;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14.5px;
  color: #444;
  line-height: 1.55;
}

/* ===============================
   TOOLS & TECHNOLOGY
================================ */

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 45px;
}

.tool-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px 24px;
  border: 1px solid #eadcb8;
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  border-color: #C8A04F;
}

.tool-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: #C8A04F;
  margin-bottom: 6px;
}

.tool-card p {
  font-size: 14.5px;
  color: #444;
  line-height: 1.55;
}

/* ===============================
   INDUSTRIES SERVED
================================ */

.industries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
}

.industry-item {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid #e9e2cf;
  background: #ffffff;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: 0.25s ease;
}

.industry-item:hover {
  background: #C8A04F;
  color: #fff;
  border-color: #C8A04F;
}

/* ===============================
   CTA CENTER FIX
================================ */

.section.center {
  text-align: center;
}

.section.center h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.section.center p {
  font-size: 16px;
  color: #555;
  margin-bottom: 26px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1000px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }

  .section.center h2 {
    font-size: 26px;
  }
}
