/* Services */
.services-section {
  padding: 50px 20px;
  background: #fff;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card h3 {
  margin: 15px 0 10px;
  font-size: 18px;
  font-weight: bold;
  color: #003366;
}

.service-card h3 a {
  text-decoration: none;
  color: inherit;
}

.service-card p {
  font-size: 14px;
  color: #444;
}

/* Animation */
.service-card {
  opacity: 0;
  transform: translateY(50px);
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-in-out;
}
/* Services End */
