.services-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.services-section h1 {
  font-size: 3.5rem;
  text-align: center;
  font-weight: bold;
  padding: 10px;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  margin-bottom: 50px;
  color: #2c3e50;
}

.service-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: white;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card .card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card .fa-3x {
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .fa-3x {
  transform: scale(1.1);
}

.service-card .card-title {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.5rem;
}

.service-card .card-text {
  color: #7f8c8d;
  line-height: 1.6;
  text-align: center;
}

.text-primary {
  color: #007bff !important;
}
.text-success {
  color: #28a745 !important;
}
.text-info {
  color: #17a2b8 !important;
}
.text-warning {
  color: #ffc107 !important;
}
.text-danger {
  color: #dc3545 !important;
}
.text-secondary {
  color: #6c757d !important;
}

/* Testimonials */
.testimonial-card {
  padding: 30px;
  border-radius: 10px;
  background: rgb(253, 241, 218);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
