@media (min-width: 576px){
  .nav-masthead .nav-link {
    padding: .25rem 0;
    font-weight: 700;
    /*color: rgba(255, 255, 255, .5);*/
    background-color: transparent;
    border-bottom: .25rem solid transparent;
  }
  .nav-masthead .nav-link:hover,
  .nav-masthead .nav-link:focus {
    border-bottom-color: rgba(128, 128, 128, .25);
  }
  .nav-masthead .nav-link + .nav-link {
    margin-left: 1rem;
  }
  .nav-masthead .active {
    color: #808080;
    border-bottom-color: #808080;
  }
}

.offcanvas.show .nav-masthead .dropdown-item.active, 
.offcanvas.show .nav-masthead .nav-link.active {
    background: rgb(248, 249, 250);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    font-weight: bolder;
}
.offcanvas.show .nav-masthead .dropdown-item,
.offcanvas.show .nav-masthead .nav-link{
    line-height: 60px;
    padding: 0 40px;
    font-size: large;
    font-weight: normal;
}

.background-fade {
    position: relative;
    width: 100%;
    height: 80vh; /* Adjust height as needed */
    background: url('/assets/images/background1.jpg') no-repeat center center;
    background-size: cover;
}

.fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.floating-btn {
    position: fixed;
    bottom: 70px;
    right: 20px;
    z-index: 1000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background-color: #0c44b0;
    color: white;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.floating-btn i {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
