body {
  font-family: "Poppins", sans-serif;
  background: white !important;
  overflow-x: hidden;
}

.section-title {
  position: relative;
  padding-bottom: 15px;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
}

.section-title::after {
  content: "";
  position: absolute;
  align-content: center;
  left: 50%;
  right: 50%;
  bottom: 0;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 3px;
  background-color: #0d6efd;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}
