@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
.services {
  font-family: 'Poppins', sans-serif;
  background-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  padding: 2rem;
  text-align: center;
}
.services__title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ce3235;
  font-weight: 600;
  /* Bold title */
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.services .service {
  background-color: #06163a;
  padding: 1.5rem;
  border-radius: 10px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.services .service i.icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}
.services .service h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-weight: 600;
  /* Semi-bold headings */
}
.services .service p {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 400;
  /* Regular weight for text */
}
.services .service:hover {
  background-color: #ce3235;
  transform: translateY(-10px);
  color: #ffffff;
}
.services .service:hover h3, .services .service:hover p {
  color: #ffffff;
}
.services .service.active {
  background-color: #006ea7;
  color: #ffffff;
}
.services .service.active h3, .services .service.active p {
  color: #ffffff;
}

