.brand {
    font-weight: bold;
    color: #d32f2f;
    cursor: pointer; /* موس به شکل انگشت */
    position: relative;
    display: inline-block;
  }
  
  .logo-hover {
    position: absolute;
    bottom: 55px;
    right: 850px;
    width: 200px;
    height: 200px;
    opacity: 0; /* شروع محو */
    transition: opacity 0.4s ease-in-out;
    pointer-events: none;
    z-index: 9999;
  }
  
  .brand:hover .logo-hover {
    opacity: 1; /* فقط موقع هاور دیده بشه */
  }

  .typewriter {
    font-weight: 350;
    font-size: 1.15rem;
    color: #ffff;
    text-align: center;
    margin: 0 0 0.6em 0;
    line-height: 1.9;
  }
  
  .tw-word {
    opacity: 0;
    display: inline-block;
    transition: opacity .35s ease;
  }
  .tw-word.show { opacity: 1; }
  
  .typewriter::after {
    content: "";
    display:none;
    width: 2px;
    height: 1em;
    margin-left: .2ch;
    background: currentColor;
    vertical-align: -0.15em;
    animation: tw-blink 2s steps(2,end) infinite;
  }
  @keyframes tw-blink {
    0%, 49% { opacity: 1; }
    50%,100% { opacity: 0; }
  }
  
