html { background-color: #001D4A; font-family: 'Instrument Sans', Arial, Helvetica, sans-serif; }

/* --- extracted from HTML --- */

#nprogress {
      pointer-events: none;
    }

    #nprogress .bar {
      background: #4B5563;

      position: fixed;
      z-index: 1031;
      top: 0;
      left: 0;

      width: 100%;
      height: 2px;
    }

    #nprogress .peg {
      display: block;
      position: absolute;
      right: 0px;
      width: 100px;
      height: 100%;
      box-shadow: 0 0 10px #4B5563, 0 0 5px #4B5563;
      opacity: 1.0;

      transform: rotate(3deg) translate(0px, -4px);
    }

    #nprogress .spinner {
      display: block;
      position: fixed;
      z-index: 1031;
      top: 15px;
      right: 15px;
    }

    #nprogress .spinner-icon {
      width: 18px;
      height: 18px;
      box-sizing: border-box;

      border: solid 2px transparent;
      border-top-color: #4B5563;
      border-left-color: #4B5563;
      border-radius: 50%;

      animation: nprogress-spinner 400ms linear infinite;
    }

    .nprogress-custom-parent {
      overflow: hidden;
      position: relative;
    }

    .nprogress-custom-parent #nprogress .spinner,
    .nprogress-custom-parent #nprogress .bar {
      position: absolute;
    }

    @keyframes nprogress-spinner {
      0%   { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

/* Hide mobile bottom sticky bar (Call / WhatsApp / Apply) */
@media (max-width: 767px) {
  #app div.fixed.bottom-0.left-0.right-0.z-\[100\].md\:hidden {
    display: none !important;
  }

  #app main.pb-24 {
    padding-bottom: 3rem !important;
  }

  /* Keep original hero layout, only anchor banner to top */
  #app main > section.relative picture img {
    object-position: top center !important;
  }
}

html {
  scroll-behavior: smooth;
}

/* Reviews slider - horizontal scroll */
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide floating WhatsApp icon */
a[aria-label="Chat with us on WhatsApp"] {
  display: none !important;
}
