   
    .carousel-inner img {
        height: 100%;
        width: 100%;
        object-fit: cover; /* Keeps aspect ratio, fills space, crops overflow */
    }
.process-steps {
    position: relative;
}

.process-steps .col-lg-3 {
    position: relative;
}

.process-steps .col-lg-3:not(:last-child)::after {
    content: "\f061"; /* Font Awesome arrow-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #ffc107;
}

@media (max-width: 991px) {
    .process-steps .col-lg-3::after {
        display: none;
    }
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ffc107; /* Icon color: amber */
}


.custom-carousel-item {
  width: 250px !important;
  height: 200px !important;
  margin: 0 auto; /* center horizontally */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
}

.custom-carousel-item .card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 767px) {
  .custom-carousel-item {
    width: 90% !important;
    height: auto !important;
    margin-left: auto;
    margin-right: auto;
     padding: 5px; /* smaller padding on mobile */
  }

  .custom-carousel-item .card {
    height: auto;
    padding: 1rem;
    text-align: center; /* center text on mobile */
  }
}