/* Machine Cards - Equal Heights (Performance Optimized) */
.our-services .single-our-service {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 30px;
}

.our-services .single-our-service .img-box {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #f9f9f9;
    flex-shrink: 0;
}

.our-services .single-our-service .img-box a {
    display: block;
    width: 100%;
    height: 100%;
}

.our-services .single-our-service .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Removed heavy transform for performance */
}

.our-services .single-our-service h4 {
    min-height: 52px;
    display: flex;
    align-items: center;
    line-height: 1.4;
    overflow: hidden;
}

.our-services .single-our-service p {
    flex: 1;
    min-height: 66px;
    line-height: 1.5;
    overflow: hidden;
}

/* Force column flex for equal heights */
.our-services .row .col-md-4,
.our-services .row .col-sm-6 {
    display: flex;
}