.herobg {
    position: relative;
    z-index: 1;
}

.herobg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
    z-index: -1;
}

.py-10 {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.qlbutton {
    width: 14rem;
    height: 10rem;
    border: 1px solid #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background-image: url('https://picsfordevsite.blob.core.windows.net/devpicstore/quick-link-image-2.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative; /* Added for overlay */
}

.qlbutton::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0ab6; /* Overlay with 50% opacity */
    border-radius: 10px; /* Match the border radius */
    z-index: 1; /* Ensure overlay is on top */
}

.qlbutton:hover {
    background-color: #c9c9c9; /* Darker background color on hover */
    border-color: #ccc; /* Lighter border color on hover */
    cursor: pointer; /* Change cursor to pointer on hover */
}

.qltext{
    z-index: 2; /* Ensure text is on top of the overlay */
}

.formItem {
    width: 10rem;
}

@media (min-width: 992px) {
    .formItem {
        width: 10rem;
    }
}

.helpbutton {
    display: none;
    z-index: 4;
}

@media (min-width: 1200px) {
    .helpbutton {
        display: block;
    }
}

.dropdown-item.active, 
.dropdown-item:active {
  background-color: white !important; /* Keep the background white */
  color: #0069da !important; /* Replace with your primary color hex */
  text-decoration: none; /* Optional: Ensures clean look */
}

.heroimage{
    width: 75%;

    @media (min-width: 1400px) {
        width: 50%;
    }

    
}
