@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #0d0d0d;
  color: white;
  margin: 0;
  padding: 0;
}
/* services-section*/
.services-section {
  text-align: center;
  padding: 40px 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}
strong {
  color: #ffc107;
}
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
  max-width: 1000px;
  margin: auto;
}

.service-card {
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  font-size: 40px;
  color: #ebe4e4;
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 18px;
  color: #ffc107;
  margin-bottom: 5px;
}

.service-card p {
  font-size: 14px;
  color: #f3f3f3;
  line-height: 20px;
}
