.btn-work {
  position: fixed; /* stays in place even when scrolling */
  bottom: 30px;
  right: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  background: #07af58;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1000;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.5s;
}

.btn-work:hover {
  background: #0028a0;
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

/* Fade-in animation */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}



.button-row {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 1000;
}


.btn-small {
  display: inline-block;
  white-space: nowrap;        /* Prevents text from wrapping */
  font-size: 14px;
  font-weight: 500;
  background: #00b8932a;
  color: #ffffff;
  padding: 6px 28px;           /* Slim height, wider width */
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  max-width: none;
  text-decoration: none;             /* Ensures no width restriction */`
  text-transform: uppercase;
letter-spacing: 1px;

}


.btn-small:hover {
  background: #009e7f;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

