.text-color-orange {
    color: #f66014;
}
.service-box {
    cursor: pointer;
    padding: 15px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out;
}
.active-service {
    background-color: black !important;
    /* Light gray highlight for the active service */
}
#serviceContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: inset 0 0 20px 0px rgb(0, 0, 0);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
#serviceDescription {
    text-align: center;
}
/* General Styling */
.content-card {
    position: relative;
    z-index: 2;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: inset 0px 0px 30px rgba(0, 0, 0, 0.253);
    width: 100%;
    max-width: 600px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.image-container,
.image-container-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image Styling */
.image-container img,
.image-container-right img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 600px;
    height: 360px;
    border-radius: 20px;
    object-fit: fill;
    z-index: 1;
}

/* Left Side Image */
.image-container img {
    left: -25%;
}

/* Right Side Image */
.image-container-right img {
    right: -25%;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .image-container img,
    .image-container-right img {
        position: static;
        transform: none;
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: 10px;
        margin: auto;
        display: block;
    }
    .content-card {
        padding: 20px;
    }
}