.icon-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  .icon-box i {
    font-size: 1.5rem;
  }

  .rpo-step {
    border-left: 4px solid #0d6efd;
    padding-left: 1rem;
  }
  .feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  }
  
    /* Custom animation timing */
  [data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition-property: transform, opacity;
  }
  
  [data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .rounded-4 {
    border-radius: 1rem !important;
  }
  
  @media (max-width: 768px) {
    .py-6 {
      padding-top: 3rem !important;
      padding-bottom: 3rem !important;
    }
    .p-lg-5 {
      padding: 1.5rem !important;
    }
    .display-5 {
      font-size: 2rem !important;
    }
  }
  
  .rpo-process-section {
    background: linear-gradient(135deg, #f8fafd 0%, #e8f0fa 100%);
    margin-top: 78px;
  }
  
  .rpo-process-header {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .rpo-process-title {
    font-size: 2.25rem;
    color: #2c3e50;
  }
  
  .rpo-process-subtitle {
    font-size: 1.1rem;
    max-width: 500px;
  }
  
  .rpo-process-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .rpo-process-card {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .rpo-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  
  .rpo-step-number {
    background: #4b6cb7;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1.5rem;
    flex-shrink: 0;
  }
  
  .rpo-step-content {
    flex-grow: 1;
  }
  
  .rpo-step-title {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
  }
  
  .rpo-step-description {
    color: #6c757d;
    margin-bottom: 0;
  }
  
  .rpo-step-connector {
    position: absolute;
    left: 20px;
    top: 60px;
    bottom: -2rem;
    width: 2px;
    background: #e0e6f0;
  }
  
  @media (max-width: 768px) {
    .rpo-process-card {
      padding: 1.5rem;
      flex-direction: column;
    }
    
    .rpo-step-number {
      margin-right: 0;
      margin-bottom: 1rem;
    }
    
    .rpo-step-connector {
      left: 20px;
      top: 40px;
      bottom: -2rem;
    }
    
    .rpo-process-title {
      font-size: 1.75rem;
    }
  }
  
       .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;
}