

.ser_items1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 15px;
    margin: 16px 0px 0px;
}
.ser_text h1{
    font-size: 42px;
    font-weight: 800;
}
.underline1{
    height: 5px;
    width: 90px;
    background: #184059;
    margin: 20px auto;
    position: relative;
    border-radius: 30px;
}
.underline1::before{
    content: '';
    position: absolute;
    left: 0;
    top: -2.7px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #4B83A6;
    animation: move 3s infinite alternate-reverse;
}

#services_cards{
    padding-top: 50px;
    padding-bottom: 70px;
    background: #fff;
    /* margin: 0px; */
}


.cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* All cards SAME size */
.card {
  flex: 0 0 calc(33.33% - 20px);
  max-width: calc(33.33% - 20px);
  height: 140px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #1e5bff;
  border-radius: 6px;
  background: #fff;
  font-weight: 600;
}

/* Invisible filler to center last row */
.cards-wrapper::after {
  content: "";
  flex: 0 0 calc(33.33% - 20px);
}




@keyframes move{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(88px);
    }

}