.how-nmbremit-works {
  background: #f7f8fc;
  padding: 60px;
  border-radius: 25px;
  text-align: center;
}

.how-nmbremit-works .section-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}

.how-nmbremit-works .row {
  margin: 0 -15px;
}

.how-nmbremit-works .step {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  height: 35rem;
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
}

.how-nmbremit-works .step:hover {
  background: #f7f8fc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.how-nmbremit-works .step-number {
  font-size: 48px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.how-nmbremit-works .step-content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.how-nmbremit-works .screenshot {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 20px;
}

.how-nmbremit-works .svg-arrows {
  justify-content: space-between;
  margin-top: -50px;
}

.how-nmbremit-works .arrow {
  max-width: 100px;
  height: auto;
}
.step-wrapper {
  padding: 30px;
  background: #f7f8fc;
  border-radius: 25px;
  text-align: center;
  transition: all 0.3s;
}

.step-wrapper img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.step-wrapper h3 {
  margin-bottom: 10px;
}

.step-wrapper p {
  font-size: 16px;
  line-height: 1.5;
}

/* Hover effect */
.step-wrapper:hover {
  background: #e6e7f2;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-wrapper {
  padding: 30px;
  background: #f7f8fc;
  border-radius: 25px;
  text-align: center;
  transition: all 0.3s;
}

.step-wrapper img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.step-wrapper h3 {
  margin-bottom: 10px;
}

.step-wrapper p {
  font-size: 16px;
  line-height: 1.5;
}

/* Hover effect */
.step-wrapper:hover {
  background: #e6e7f2;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.arrow1,
.arrow2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 50px;
  height: auto;
}

.arrow1 {
  left: 33.333%;
}

.arrow2 {
  left: 66.666%;
}

@media (max-width: 1199px) {
  .arrow1,
  .arrow2 {
    max-width: 40px;
  }
}

@media (max-width: 991px) {
  .arrow1,
  .arrow2 {
    max-width: 30px;
  }
}

@media (max-width: 767px) {
  .arrow1,
  .arrow2 {
    display: none;
  }
}

.custom-bg-block {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh; /* Adjust this value if you want the section height to be less than the full viewport height */
}

/* Optional: Add a semi-transparent overlay for better text readability */
.custom-bg-block::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3); /* Adjust the rgba values for the desired overlay color and opacity */
  z-index: -1;
}


