*,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    max-width: 1276px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

input,select,textarea,button {
    outline: none;
}

a {
    text-decoration: none;
}

/* li,h1,h2,h3,h4, p, span, a, button{
  color: #fff
} */

/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #ffd700;
  color: #000;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
  z-index: 999;
}

.scroll-top-btn:hover {
  transform: scale(1.1);
}

/* Show button */
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}
