/* Spacer between sections */
.section-spacer {
  height: 50px;
  width: 100%;
  background-color: transparent;
  display: block;
  clear: both;
}

/* Additional styles for MSME Registration section */
.msme.section-bg {
  background: linear-gradient(rgba(0, 141, 210, 0.1), rgba(0, 141, 210, 0.1)), #f5f6fa;
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
  margin-top: 0;
}
.msme .row {
  position: relative;
}

/* Add connecting lines between steps on desktop */
@media (min-width: 992px) {
  .msme .row::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 25%;
    width: 50%;
    height: 3px;
    background: var(--accent-color);
    z-index: 0;
  }
  
  /* Ensure the boxes are above the line */
  .msme .icon-box {
    background: var(--white);
    position: relative;
    z-index: 2;
  }
}

/* Improve step numbers */
.msme .step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--dark-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border: 2px solid white;
}

/* Enhance icon appearance */
.msme .icon {
  position: relative;
  width: 80px;
  height: 80px;
  background: rgba(0, 141, 210, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: var(--transition);
}

.msme .icon-box:hover .icon {
  background: rgba(0, 141, 210, 0.2);
}

/* Make the button more prominent */
.msme .btn-register {
  padding: 12px 35px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(176, 203, 31, 0.4);
}

.msme .btn-register:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(176, 203, 31, 0.6);
}

/* Improve spacing for mobile */
@media (max-width: 991px) {
  .msme .col-md-6 {
    margin-bottom: 30px;
  }
  
  .msme .icon-box {
    max-width: 300px;
    margin: 0 auto;
  }
}
