@charset "UTF-8";

.service-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 320px;
}

.service-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.service-card-content {
    position: relative;
    margin-left: 20%;
    margin-top: 30px;
    margin-bottom: 30px;
    background: #fff;
    padding: 25px 25px 25px 30px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-title {
    position: relative;
    padding-left: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
}

.service-card-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #208fc5;
}

.service-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
}

.service-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background-color: #208fc5;
}

.services-grid {
    padding: 30px 0;
}

.service-col {
    margin-bottom: 20px;
}

/* Placeholder image backgrounds */
.service-card-image-1 {
    background-image: url('/assets/images/services/service-card-image-1.png');
    background-color: #1a2a3a;
}

.service-card-image-2 {
    background-image: url('/assets/images/services/service-card-image-2.png');
    background-color: #4a4a4a;
}

.service-card-image-3 {
    background-image: url('/assets/images/services/service-card-image-3.png');
    background-color: #2a3a4a;
}

.service-card-image-4 {
    background-image: url('/assets/images/services/service-card-image-4.png');
    background-color: #3a3a3a;
}