  .explore-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: auto;
  padding: 8px 18px;
  font-size: 18px;
  font-weight: 600 !important;
  background: #f9fafb !important;
  border: 2px solid #f9fafb;
  border-radius: 9999px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  z-index: 1;
  transition: color 0.3s ease;
  color:#D01D2F !important;
}

/* Green hover splash */
.explore-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #D01D2F;
  border-radius: 9999px;
  left: -100%;
  transition: all 0.7s ease;
  z-index: -1;
}

.explore-btn:hover::before {
  left: 0;
  transform: scale(1.5);
}

.explore-btn:hover {
  color: #ffffff !important;
}

/* Icon circle */
.icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #D01D2F;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  transition: all 0.3s linear;
}

.icon-wrap i {
  font-size: 14px;
  color: #1f2937;
}

/* Hover icon animation */
.explore-btn:hover .icon-wrap {
  transform: rotate(90deg);
  background: #f9fafb;
  border: none;
}