
/* css/neon_button.css */



        button-neon {
          color: white; /* কালো রং */
          font-size: 12px;
          font-weight: bolder;
          padding: 10px 30px;
          background: #330971;
          border: none;
          border-radius: 10px;
          cursor: pointer;
          box-shadow: 0 0 5px #330971;
          transition: 0.5s;
        }

        button-neon:hover {
        box-shadow: 0 0 5px #330971, 0 0 25px #330971, 0 0 50px #330971, 0 0 100px #330971;
        }

button {
  color: white;
  font-size: 12px;
  font-weight: bolder;
  padding: 10px 30px;
  background: #330971;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 5px #330971;
  transition: transform 0.3s ease;
  transform-origin: center;
  position: relative;
  z-index: auto; /* default */
}

button:hover {
  transform: scale(1.1);
  box-shadow: none;
  z-index: 9999; /* নিশ্চিতভাবে উপরে রাখে */
}


  .floating-buttons {
    position: fixed;
    top: 33%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-buttons button {
    margin: 0;
    padding: 10px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.floating-buttons button:hover {
    transform: scale(1.05);
    background-color: #444; /* Optional hover effect */
}

.floating-buttons a {
    text-decoration: none;
    color: white;
}

       
        
