body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f4f9f9;
  color: #2a2a2a;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.services-hero {
  background: linear-gradient(135deg, #748DAE, #748DAE);
  color: white;
  text-align: center;
  padding: 70px 20px;
}

.services-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.services-hero p {
  font-size: 18px;
  opacity: 0.9;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  max-width: 340px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-card h3 {
  margin: 10px 0;
  color: #748DAE;
  font-size: 20px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #748DAE;
  color: #ffffff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.card-btn:hover {
  background-color: #1960bd;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}
