/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f8faff;
  color: #222;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  min-height: 100vh;
}

/* Section */
.services {
  width: 100%;
  max-width: 1200px;
  padding: 100px 6% 60px;
  text-align: center;
}

/* Header */
/* .section-header h2 {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 10px;
}

.section-header h2 span {
  color: #007bff;
}

.section-header p {
  color: #555;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
} */

/* Grid Layout */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Service Card */
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  animation: fadeUp 0.8s ease forwards;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Icon */
.service-card .icon {
  margin-bottom: 20px;
  color: #007bff;
}

.service-card .icon i {
  width: 40px;
  height: 40px;
}

/* Title */
.service-card h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 10px;
}

/* Description */
.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Buttons */
.card-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1.5px solid transparent;
}

.btn.primary {
  background: #007bff;
  color: #fff;
}

.btn.primary:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.btn.pricing {
  background: transparent;
  border-color: #007bff;
  color: #007bff;
}

.btn.pricing:hover {
  background: #007bff;
  color: #fff;
  transform: translateY(-2px);
}

/* Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .services {
    padding-top: 120px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .card-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
