/* Luxury Style */

body {
  overflow-x: hidden;
  background: linear-gradient(135deg, #1c1c1c, #121212);
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.page-container {
  display: flex;
  width: 200vw;
  transition: transform 0.8s ease;
}

.convert-section {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
}

.convert-card {
  width: 100%;
  max-width: 450px;
  background-color: #2a2a2a;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  color: #f0e68c; /* Gold text */
  margin-bottom: 25px;
}

.drop-area {
  border: 2px dashed #707070;
  padding: 20px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 10px;
  color: #aaaaaa;
  transition: all 0.3s;
}

.drop-area:hover {
  background-color: #333333;
  border-color: #f0e68c; /* Gold on hover */
}

.img-preview {
  width: 100%;
  height: auto;
  display: none;
  margin-top: 10px;
  border-radius: 8px;
}

.progress {
  height: 10px;
  background-color: #444;
}

.progress-bar {
  background-color: #f0e68c; /* Gold */
}

.scroll-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(135deg, #f0e68c, #d4af37);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.scroll-button:hover {
  background: linear-gradient(135deg, #d4af37, #b8860b);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.arrow-icon {
  font-size: 24px;
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.3s;
}

.scroll-button:hover .arrow-icon {
  transform: translateX(5px); /* Move the arrow slightly */
}
