/* Floating Social Icons */
.floating-social {
    position: fixed;
    top: 40%;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
  }
  
  .floating-social a {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: 1px solid #e6cfc2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #d89c7c;
    text-decoration: none;
    font-size: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: background 0.3s, color 0.3s;
  }
  
  .floating-social a:hover {
    background-color: #fcefed;
    color: #a66c48;
  }
  