/* Services Section Styles */
#services {
  padding: 3rem 1rem;
  background: linear-gradient(120deg, #e0eafc 0%, #a1c4fd 100%);
}

.services-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #333;
  letter-spacing: 1px;
}

.services-wrapper {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.18);
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  padding: 2rem 1rem;
  backdrop-filter: blur(10px);
  margin: 0 auto;
  max-width: 1100px;
}

.service-card {
  background: rgba(255,255,255,0.32);
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.15);
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.16);
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 220px;
  max-width: 260px;
  flex: 1 1 220px;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.22);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
  color: #00c6ff;
  filter: drop-shadow(0 2px 4px rgba(31,38,135,0.10));
}

.service-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #007bff;
  letter-spacing: 0.5px;
}

.service-description {
  font-size: 1rem;
  color: #555;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .services-wrapper {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.2rem 0.5rem;
    max-width: 100%;
  }
  .service-card {
    max-width: 100%;
    min-width: 0;
  }
}

@media (max-width: 600px) {
  #services {
    padding: 1.2rem 0.2rem;
  }
  .services-title {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .services-wrapper {
    padding: 0.2rem;
    border-radius: 10px;
    gap: 1.2rem;
  }
  .service-card {
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
  }
  .service-icon {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
  }
  .service-title {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
  .service-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 400px) {
  .services-wrapper {
    padding: 0.1rem;
    gap: 0.7rem;
  }
  .service-card {
    padding: 0.6rem;
    border-radius: 7px;
    font-size: 0.9rem;
  }
  .service-icon {
    font-size: 1.2rem;
  }
}