.services-section {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #15191d;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-left 0.2s;
  border-left: 5px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #0072c6;
}

.service-card h2 {
  font-size: 1.4rem;
  color: #000000;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 15px;
}

.learn-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #0073c69d;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: bold;
  transition: background 0.3s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.learn-btn:hover {
  background: #005ea6;
}

.service-icon {
  font-size: 2.5rem;
  color: #0072c6;
  margin-bottom: 15px;
  animation: bounceIcon 2s infinite;
}

@keyframes bounceIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
