.img-team {
    height: 300px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.top-5 {
    top: 5px;
}

.hero-img {
    height: 500px;
    width: 100%;
    object-fit: cover;
}

/* Container setup */
.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #ccc;
}

/* Hide native checkbox */
.custom-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #999;
    border-radius: 4px;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s, border-color 0.2s;
}

/* Custom checkmark (shown on :checked) */
.custom-checkbox input[type="checkbox"]::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s;
}

/* Checked state */
.custom-checkbox input[type="checkbox"]:checked {
    background-color: #198754;

    /* green */
    border-color: #198754;
}

/* Show checkmark when checked */
.custom-checkbox input[type="checkbox"]:checked::after {
    opacity: 1;
}

/* Label styling */
.custom-checkbox label {
    cursor: pointer;
    user-select: none;
    line-height: 1.3;
}

.custom-checkbox label a {
    color: #fff;
    text-decoration: underline;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
}

.modal-content {
    background-color: #fff;
    color: #333;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 2rem;
    border-radius: 8px;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
}

.navbar-toggler-button {
    all: unset;
    display: none;
    border: 1px solid var(--bs-light);
    padding: 7px;
}

.navbar-toggler-button svg {
    fill: var(--bs-light);
}

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



