:root {
    --brand-blue: #0b4a94;
    --brand-magenta: #9c2183;
    --brand-cyan: #00acaf;
}
body {
    font-family: "Instrument Sans", sans-serif;
}
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.logo-wrap {
    height: 5rem;
    background: #fff;
    display: flex;
    align-items: center;
    border-radius: 15px;
}
.logo-wrap img {
    height: 5rem;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
}
.logo-slider img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-slider img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}
#home2MobileNav {
  position: fixed;
  top: env(safe-area-inset-top, 0);
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh; /* ensures full viewport height */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
}