.main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.subheading {
  font-size: 1rem;
  font-weight: 400;
  color: #4a5568;
}
.btn-custom {
  background-color: #f6c344;
  color: #1a202c;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.btn-custom:hover {
  background-color: #e5b633;
  text-decoration: none;
}
.btn-custom i {
  margin-left: 0.5rem;
}
.stats {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #2b6cb0;
}
.stat-label {
  font-size: 1rem;
  font-weight: 400;
  color: #4a5568;
}

.index-input {
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid var(--bs-gray);
  width: 10rem;
  padding: 0.5rem;
}

@media only screen and (min-width: 768px) {
  .index-input {
    width: 20rem;
  }
}

.index-input::placeholder {
  color: black;
}
