/* Back To Top Component */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color, #00a7f3);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    transition: transform 0.2s ease, background 0.2s ease;
  }
  
  .back-to-top:hover {
    background: #008fd1;
    transform: translateY(-2px);
  }
  
  @media (max-width: 768px) {
    .back-to-top {
      right: 16px;
      bottom: 24px;
      width: 48px;
      height: 48px;
      font-size: 20px;
    }
  }
  