.img-team {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
}

/* form submit logic */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Modal box */
.popup-box {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

/* Optional: smooth fade-in */
.popup-overlay.show {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.checkbox-custom {
    margin-right: 5px;
    width: 20px;
    height: 20px;
}

.checkbox-custom:checked {
    background-color: var(--bs-warning);
}

.price-container {
    height: 400px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.transparent-bg-custom {
    background-color: #1c252c90;
}

.price-description {
    min-height: 35%;
}

.img-preview {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

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

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

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




