 .flexiloan-steps-section {
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    background-color: #f9fafe;
    font-family: 'Poppins', sans-serif;
  }

  .steps-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
    position: relative;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
  }

  .step-box {
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
    z-index: 2;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    border: none;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }



  @keyframes bounce {
    0%, 100% { transform: translateY(0) scale(1.15); }
    50% { transform: translateY(-8px) scale(1.15); }
  }

  .box-1:hover { background: linear-gradient(135deg, #eef2ff 0%, #d6e4ff 100%); }
  .box-2:hover { background: linear-gradient(135deg, #e8f7ff 0%, #c7edff 100%); }
  .box-3:hover { background: linear-gradient(135deg, #e6f9ff 0%, #bdefff 100%); }
  .box-4:hover { background: linear-gradient(135deg, #edf0ff 0%, #d0ddff 100%); }

  .step-box:nth-child(1) { animation-delay: 0.1s; }
  .step-box:nth-child(2) { animation-delay: 0.2s; }
  .step-box:nth-child(3) { animation-delay: 0.3s; }
  .step-box:nth-child(4) { animation-delay: 0.4s; }

  @keyframes fadeInUp {
    from {
      transform: translateY(20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .step-box:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

  .step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
  }

  /* Different number circle colors */
  .box-1 .step-number { background: linear-gradient(135deg, #283052 0%, #6a8cff 100%); }
  .box-2 .step-number { background: linear-gradient(135deg, #283052 0%, #6a8cff 100%); }
  .box-3 .step-number { background: linear-gradient(135deg, #283052 0%, #6a8cff 100%); }
  .box-4 .step-number { background: linear-gradient(135deg, #283052 0%, #6a8cff 100%); }

  /* .step-box:hover .step-number {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    animation: pulse 1.2s infinite;P
  }

  @keyframes pulse {
    0% { transform: scale(1.1) rotate(8deg); }
    50% { transform: scale(1.12) rotate(8deg); }
    100% { transform: scale(1.1) rotate(8deg); }
  } */

  .step-number::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    border: 2px dashed white;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
  }

  .step-box:hover .step-number::after {
    opacity: 0.6;
    transform: rotate(180deg);
  }

  .step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
  }

  /* Different title colors */
  .box-1 .step-title { color: #465aa2; }
  .box-2 .step-title { color: #465aa2; }
  .box-3 .step-title { color: #465aa2; }
  .box-4 .step-title { color: #465aa2; }

  .step-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
  }

  .step-box:hover .step-title::after {
    width: 100%;
  }

  .step-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    transition: all 0.3s ease;
    margin-bottom: 10px;
  }

  .step-box:hover .step-desc {
    color: #555;
  }

  /* Animated connecting line */
  .arrow-line {
    position: absolute;
    top: 70px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, rgba(74, 107, 255, 0.2) 0%, rgba(0, 198, 255, 0.6) 50%, rgba(90, 125, 255, 0.2) 100%);
    z-index: 0;
    border-radius: 2px;
    overflow: hidden;
  }

  .arrow-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shine 3s infinite linear;
  }

  @keyframes shine {
    100% {
      left: 100%;
    }
  }

  .arrow-point {
    position: absolute;
    top: 65px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #00c6ff;
    z-index: 2;
    animation: arrowFloat 1.8s ease-in-out infinite;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
  }

  .arrow-point.arrow-1 { left: 24.5%; animation-delay: 0.1s; border-left-color: #4a6bff; }
  .arrow-point.arrow-2 { left: 49.5%; animation-delay: 0.2s; border-left-color: #00c6ff; }
  .arrow-point.arrow-3 { left: 74.5%; animation-delay: 0.3s; border-left-color: #5a7dff; }

  @keyframes arrowFloat {
    0%, 100% { transform: translateX(0) scale(1); }
    50% { transform: translateX(6px) scale(1.05); }
  }

  .floating-shape {
    position: absolute;
    opacity: 0.08;
    z-index: 0;
    animation: float 12s ease-in-out infinite;
  }

  .shape-1 {
    width: 150px;
    height: 150px;
    background: #4a6bff;
    top: -30px;
    left: -30px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  .shape-2 {
    width: 200px;
    height: 200px;
    background: #00c6ff;
    bottom: -70px;
    right: -70px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-delay: 2s;
  }

  .shape-3 {
    width: 120px;
    height: 120px;
    background: #5a7dff;
    top: 50%;
    right: 10%;
    border-radius: 50% 50% 20% 80% / 60% 40% 60% 40%;
    animation-delay: 4s;
  }

  @keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, 10px) rotate(3deg); }
    50% { transform: translate(0, 15px) rotate(0deg); }
    75% { transform: translate(-10px, 10px) rotate(-3deg); }
  }

  .section-title h2 {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #6258A8;
    margin-bottom: 40px;
    animation: fadeIn 0.8s ease-in-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Responsive styles */
  @media (max-width: 991px) {
    .steps-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

    .arrow-line, .arrow-point {
      display: none;
    }

    .step-box {
      padding: 25px 15px;
    }

    .section-title h2 {
      font-size: 20px;
      margin-bottom: 30px;
    }
  }

  @media (max-width: 575px) {
    .flexiloan-steps-section {
      padding: 40px 15px;
    }

    .steps-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .step-box {
      padding: 22px 15px;
    }

    .step-number {
      width: 42px;
      height: 42px;
      font-size: 16px;
    }

    .step-icon {
      font-size: 28px;
    }

    .step-title {
      font-size: 16px;
    }

    .step-desc {
      font-size: 13px;
    }
  }
