.tab-item:hover,
.tab-item.active-tab {
  background-color: #30446e;
  color: #fb7705ed !important;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
  }

.progress-line {
    position: absolute;
    top: 30%;
    left: 75px;
    right: 75px;
    transform: translateY(-50%);
    height: 4px;
    background: #ccc;
    z-index: -1;
  }

.progress {
    position: absolute;
      top: 30%;
      left: 75px;
      height: 4px;
      background: #fb7705ed;
      width: 0;
      transform: translateY(-50%);
      transition: width 0.8s ease;
      z-index: -1;
  }

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
  }

.icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border: 3px solid #ccc;
    transition: border-color 0.6s ease, background 0.6s ease;
  }
  .icon img {
      max-width: 40px;
    }
.step p {
margin: 0;
font-size: 16px;
color: #fb7705ed;
font-weight: bold;
}
.step.active .icon {
      border-color: #fb7705ed;
      background: #fff8f0;
    }
    
    .step.active .icon img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(93%) saturate(432%) hue-rotate(359deg) brightness(97%) contrast(97%);
}
@media (max-width: 768px) {
.steps-container {
flex-direction: column;
align-items: center;
}
.progress-line, .progress {
display: none;
}
}
.bank-details td{
  color: #30446e;
}
.bank-details tr:hover td{
  color: #fb7705ed;
}