.services .service-item{
    background: none;
}
.modal-backdrop{
    --bs-backdrop-zindex : 0px;
}

.card.hover-expand::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Set directly for default state */
    transition: background-color 0.3s ease; /* Keep the transition for hover */
    z-index: -1;
}

.card.hover-expand:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.modal-body, .modal-title{
    color: black;
}

.text-white {
    color: black !important;
}

.opposite-video {
    position: static; /* Change from fixed to static positioning */
    top: auto;
    left: auto;
    min-width: auto;
    min-height: auto;
    width: 100%;
    height: 100%;
    z-index: auto;
    transform: none; /* Remove the translate transform */
}

/* Additional styling if needed */
.opposite-video {
    opacity: 1; /* Full opacity */
}


