
        .section-title {
            margin: 50px 0 30px;
            font-weight: bold;
            text-align: center;
        }
        .feature-icon {
            font-size: 50px;
            color: #007BFF;
        }
 .fire-btn {
  position: relative;
  background: linear-gradient(45deg, #ff5722, #ffc107);
  color: white;
  border: none;
  font-weight: bold;
  transition: transform 0.3s ease;
  overflow: hidden;
  z-index: 1;
}

.fire-btn::before,
.fire-btn::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle, #ff9800 0%, transparent 70%);
  opacity: 0.5;
  animation: flames 1.5s infinite alternate ease-in-out;
}

.fire-btn::after {
  animation-delay: 0.75s;
}

@keyframes flames {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-10px) scale(1.05);
    opacity: 1;
  }
}

.fire-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #ff6d00;
}
