.border-y{
    border: solid 1px #EAB308;
}
.social-icon {
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  .social-icon:hover {
    transform: scale(1.1);
    background-color: #facc15;
  }
  .chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #facc15;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 9999px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 50;
  }
  .chat-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  }
  #chatPopup {
    transition: opacity 0.3s ease;
  }
  .footer-link {
    transition: color 0.3s ease;
  }
  .footer-link:hover {
    color: #facc15;
  }
  html {
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  body {
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .height{
    height: 100px;
  }
  .border-w{
    border: solid #facc15 ;
  }
  #chatPopup:hover {
    transform: scale(1.02);
    transition: all 0.3s ease;
  }
  .border-z {
    border: solid 1px black; 
  }
  
  
  