
  
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #f9f9f9;
      margin: 0;
      padding: 0;
      position: relative;
      overflow-x: hidden;
    }

    /* Particle background */
    #particles-js {
      position: fixed;
      width: 100%;
      height: 100%;
      z-index: -1;
      top: 0;
      left: 0;
      background: #f9f9f9;
    }

    .ecommerce-section {
      padding: 60px 20px;
      background-color: transparent;
    }

    .ecommerce-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .ecommerce-header h2 {
      font-size: 36px;
      font-weight: bold;
      margin-bottom: 10px;
      color: #333;
    }

    .ecommerce-header p {
      font-size: 16px;
      color: #777;
      max-width: 600px;
      margin: 0 auto;
    }

    .ecommerce-container {
      max-width: 1100px;
      margin: 0 auto;
      margin-top: 112px;
    }

    .ecommerce-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .ecommerce-card {
      background-color: #fff;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      transition: transform 0.5s, box-shadow 0.5s;
      text-align: center;
      height: 100%;
    }

    .ecommerce-card:hover {
      transform: scale(1.05);
      box-shadow: 0 20px 30px rgba(0,0,0,0.1);
    }

    .ecommerce-icon {
      font-size: 60px;
      margin-bottom: 20px;
      color: #ff6600;
    }

    .pulse-animation {
      animation: pulse 2s infinite;
    }

    .spin-animation {
      animation: spin 4s linear infinite;
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .ecommerce-card-title {
      font-weight: bold;
      font-size: 22px;
      margin-top: 15px;
      color: #333;
    }

    .ecommerce-card-text {
      font-size: 15px;
      color: #666;
      margin-top: 10px;
    }

    

    @media (max-width: 600px) {
      .ecommerce-header h2 {
        font-size: 28px;
      }

      .ecommerce-header p {
        font-size: 14px;
      }
    }
     .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;
}
 