  /* Scrollbar styles matching .col-bg */
 
 
 @font-face {
  font-family: 'Frutiger';
  src: url('../fonts/Frutiger LT Arabic 65 Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
  ::-webkit-scrollbar {
    width:5px; /* scrollbar width similar to border thickness */
}

::-webkit-scrollbar-track {
    background: transparent; /* transparent to blend with .col-bg */
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5); /* matches border color of .col-bg */
    border-radius: 15px; /* matches border-radius of .col-bg */
    backdrop-filter: blur(5px); /* consistent frosted effect */
}