.services-img {
    height: 200px;
    object-fit: cover;
}

.custom-alert {
    position: fixed;
    top: 0;
    right: -400px;
    height: 100vh;
    width: 300px;
    background-color: #28a745;
    color: white;
    padding: 15px 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    font-weight: 500;
    transition: right 0.4s ease-in-out;
    z-index: 9999;
    box-sizing: content-box;
}

.custom-alert.show {
    right: 0;

    /* Slide into view */
}

.alert-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    cursor: pointer;
    font-size: 20px;
    margin-left: 10px;
}

.poster-custom {
    background-position: center;
    background-size: cover;
    width: 100%;
}

.card-about {
    height: 300px;
    background-position: center;
    background-size: cover;
}

.text-shadow {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
}

.toggler-btn-custom {
    all: unset;
    display: none;
    padding: 4px 7px 4px 7px;
    border-radius: 5px;
    border: 1px solid var(--bs-light);
}

.toggler-btn-custom svg {
    color: var(--bs-light);
}

@media (max-width: 991px) {
    .toggler-btn-custom {
        display: inline-block;
    }
}