#container {
    position: fixed;
    top: 140px;
    left: 0px;
    padding: 0px;
    list-style: none;
    z-index: 100;
  }

  /* Side social strip removed site-wide; keep hidden as a safety fallback */
  #container {
    display: none !important;
  }
  
  #container li a {
    display: block;
    text-decoration: none;
    color: white;
  }
  
  #container li a i {
    display: block;
    max-width: 50px;
    padding: 10px;
    transition: all 0.2 ease-in-out;
  }
  
  #container li a:hover i {
    background: rgba(0, 0, 0, 0.2);
  }
  .float{
    position: fixed;
    width: 64px;
    height: 64px;
    right: 20px;
    bottom: 24px;
    background-color: #25d366;
    color: #fff;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    line-height: 1;
    box-shadow: 2px 2px 3px #999;
    z-index: 999;
    
  
  }

  .float i {
    display: block;
    line-height: 1;
  }

  @media (max-width: 991px) {
    .float {
      width: 58px;
      height: 58px;
      right: 16px;
      bottom: 18px;
      font-size: 30px;
    }
  }

  @media (max-width: 575px) {
    .float {
      width: 52px;
      height: 52px;
      right: 12px;
      bottom: 14px;
      font-size: 27px;
      box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
    }
  }
  
