.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
  }

  .floating-buttons a {
    background-color: #003973;
    color: #fff;
    padding: 12px 14px;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s;
  }

  .floating-buttons a:hover {
    background-color: #075ab9;
    text-decoration: none;
  }



  /* second  */


  .floating-buttons2 {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
  }

  .floating-buttons2 a {
    background-color: #003973;
    color: #fff;
    padding: 12px 14px;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s;
  }

  .floating-buttons2 a:hover {
    background-color: #075ab9;
    text-decoration: none;
  }