.edu_site {
    font-size: 15px;
    padding: 1px 0; /* Vertical padding for better appearance */
    border-block: 1px solid; /* Ticker border */
    overflow: hidden;
    user-select: none;
    display: flex;
    position: fixed;   /* or use 'fixed' if you want it always at the top */
    top: 0;             /* Stick it to the top */
    z-index: 9999;      /* Ensure it stays above other elements */
    background-color: white; /* Optional: Add background to prevent overlap issues */

    --gap: 10px;
    gap: var(--gap);
  }
  
  .edu_site ul {
    list-style: none; /* Remove bullets */
    flex-shrink: 0;
    min-width: 100%;
    display: flex; /* Horizontal layout */
    justify-content: space-between; /* Space between items */
    align-items: center;
    gap: var(--gap);
  
    animation: scroll 30s linear infinite;
  }
  
  @keyframes scroll {
    to {
      transform: translateX(
        calc(-100% - var(--gap))
      ); /* Move fully off-screen left */
    }
  }
  
  .edu_site:hover ul {
    animation-play-state: paused;
  }
  
  li span {
    font-weight: bold;
    font-size: 24px;
  }
  
  /* Styling for individual items */
  .edu_site li {
    display: flex;
    align-items: center;
  }
  