.herobg {
    background-image: url('https://picsfordevsite.blob.core.windows.net/temp-phipps-care/Jay&Patty 2-wp.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    @media (min-width: 992px) {
        background-image: url('https://picsfordevsite.blob.core.windows.net/temp-phipps-care/storefront-2.webp');
        background-position: left;
        background-size: cover;
        background-repeat: no-repeat;
        min-height: 500px;
    }

    @media (min-width: 1200px) {
        background-position: center;
    }
}

.mobileHero{
    min-height: 300px;

    @media (min-width: 992px) {
        min-height: unset;
    }
}

.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: 60%;
    }

    
}

.heromessage{
    background-color: hsl(0, 0%, 100%);
    max-height: 600px;
    @media (min-width: 992px) {
        margin-inline-start: 2rem;
    }

    /* @media (min-width: 1200px) {
        max-height: 700px;
    } */

}

.navbarImage{
    width: 60%;

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

.splash1photo{
    max-width: 450px;
    
}

@media (min-width: 992px) {
    .mt-6 {
        margin-top: 3.6rem !important; /* Adjust as needed and override other margins */
    }
}

.nhrbg{
    background: linear-gradient(to bottom right, #ffcccc, #c74f31);
}

.nhrshadow{
    box-shadow: 0 30px 40px rgba(0, 0, 0, 0.63);
}

.nhrshadow-header{
    box-shadow: 0 12px 15px rgba(0, 0, 0, 0.63);
}

.icons { 
    transition: transform 0.3s ease; /* Smooth transition for scaling */ 
} 

.icons:hover { 
    transform: scale(1.1); /* Scale up to 110% */ 
    cursor: pointer; 
} 

.icon-badge { 
    background-color: #000000;   /* icon background */ 
    border: 2px solid #00000000;   /* black border */ 
    border-radius: 9999px;       /* full rounded */ 
    padding: 0.25rem 0.5rem; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    margin-left: 0.5rem; 
    font-weight: bold; 
    color: white; 
  } 

  .ftrshadow { 
    box-shadow: 
    0px 6px 12px rgba(0, 0, 0, 0.9); /* Thicker and cleaner black shadow */
  } 