
    body {
      margin: 0;
      font-family: 'Times New Roman', sans-serif;
      background: #f9f9f9;
      padding: 0;
      position: relative;
      min-height: 100vh;
      overflow-x: hidden;
    }

    #animated-bg {
      position: fixed;
      width: 100%;
      height: 100%;
      z-index: -1;
      top: 0;
      left: 0;
    }

    .crm_container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
      padding: 50px 0;
    }

    .crm-services h2 {
      text-align: center;
      font-size: 36px;
      color: #333;
      margin-bottom: 50px;
      position: relative;
      animation: slideInDown 1s ease-out;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    .tilt-card {
      background: transparent;
      border-radius: 20px;
      perspective: 1000px;
      transform-style: preserve-3d;
      transition: transform 0.3s ease;
      will-change: transform;
    }

.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;
}
    
