 

.processStepsGrid {
  display: flex;
 flex-wrap: wrap;
  gap: 30px;
 
  margin: 90px auto 40px;
}

.processStepCard {
  background: #fff;
  border: 1px solid #CFDEF0;
  border-radius: 30px;
  padding: 28px 24px 25px;
  max-width: 270px;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
  
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.processStepCard:hover {
  border-color: #0554E6;
  box-shadow: 0 6px 20px rgba(5, 84, 230, 0.15);
transform: scale(1.05);
}

.stepIcon {
 
  font-size: 40px;
  margin: 0 0 12px;
      line-height: 150%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.stepIcon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.processStepCard h3 {
  font-size: 16px;
  font-weight: 500;
  color: #231F20;
  margin-bottom: 7px;
  line-height: 100%;
}

.processStepCard p {
  font-size: 13px;
  color: #6F6F6F;
  font-weight: 400;
  line-height: 190%;
  margin: 0;
}

.processFooter {
  text-align: center;
  max-width: 950px;
  margin: 50px auto 0;

}

.processFooter p {
 
font-weight: 400;
 
font-size: 13px;
 
line-height: 100%;
letter-spacing: 0%;
color: #3B5F8B;
}

 

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .processStepsGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .howprocessworkSec {
    padding: 40px 16px;
  }

  .howprocessworkSec .secTitlewrap {
    margin-bottom: 40px;
  }

  .howprocessworkSec .secTitlewrap h2 {
    font-size: 28px;
  }

  .howprocessworkSec .secTitlewrap p {
    font-size: 14px;
  }

  .processStepsGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .processStepCard {
    padding: 24px 16px;
  }

  .stepIcon {
    width: 45px;
    height: 45px;
  }

  .processStepCard h3 {
    font-size: 15px;
  }

  .processStepCard p {
    font-size: 13px;
  }
}

@media screen and (max-width:575px) {
  .howprocessworkSec .secTitlewrap h2 {
    font-size: 24px;
  }

  .processStepsGrid {

    gap: 16px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
        margin: 30px auto 40px;
        padding: 20px 0;
  }
/* Webkit browsers (Chrome, Safari, Edge) */
.processStepsGrid::-webkit-scrollbar {
  width: 6px;                  /* Very thin – matches your image */
  height: 6px;
}

.processStepsGrid::-webkit-scrollbar-track {
 background: #E9F4FF;     /* Fully transparent track */
  border-radius: 10px;
}

.processStepsGrid::-webkit-scrollbar-thumb {
  background: #0554E6;        /* Very light blue-gray when inactive */
  border-radius: 10px;
  transition: background 0.2s ease;
}

.processStepsGrid::-webkit-scrollbar-thumb:hover,
.processStepsGrid::-webkit-scrollbar-thumb:active {
  background: #0554E6         /* Bright blue when hovering or scrolling (exactly like your image) */
}

/* Optional: make corner fully clean */
.processStepsGrid::-webkit-scrollbar-corner {
  background: #E9F4FF;
}
  .processStepCard {
    padding: 24px 20px;
    max-width: 310px;
    flex: 0 0 280px;
  }

  .processFooter {
    padding: 16px;
  }

  .processFooter p {
    font-size: 14px;
  }
  .stepIcon {
    font-size: 32px;
    margin: 0 0 8px;
 
}
.processFooter p {

    line-height: 150%;

}

}

/* CTA Button */
.process-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.process-cta-wrapper .hollow-cta-btn {
  display: inline-block;
  max-width: max-content;
  padding: 13px 18px;
  background: transparent;
  border: 1px solid #0654E6;
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #0654E6;
  text-decoration: none;
  transition: all 0.3s ease;
}

.process-cta-wrapper .hollow-cta-btn:hover {
  background: #0654E6;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 84, 230, 0.3);
}
