.itw-service-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.itw-service-card-image {
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
    height: 300px; /* Adjust as needed */
}

.itw-service-card:hover .itw-service-card-image {
    transform: scale(1.1);
}

.itw-service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.5;
}

.itw-service-card-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    margin: 0;
    padding: 0;
    font-size: 24px; /* Adjust as needed */
}
