body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: url('abu-dhabi-skyline.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #333;
  margin-top: 60px;
}

/* Container */
.container {
  max-width: 400px;
  margin: 30px auto;
  background: rgba(255, 255, 255, 0.6);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  color: #2b3a67;
}

label {
  display: block;
  margin-top: 8px;
  font-weight: 400;
}

input, select {
  width: 100%;
  padding: 8px;
  margin-top: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

button {
  margin-top: 20px;
  background: #2b3a67;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  background: #1f2951;
}

.hidden {
  display: none;
}

.result {
  margin-top: 25px;
  background: #eef1f8;
  padding: 15px;
  border-radius: 8px;
}

.breakdown {
  margin-top: 15px;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}

.success {
  color: green;
  margin-top: 10px;
  font-weight: 600;
}

.download-btn {
  background: #0078d7;
  margin-left: 10px;
}

/* Marquee */
.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  background: #f4f6fa;
  padding: 10px 0;
  border-top: 2px solid #e0e0e0;
  border-bottom: 2px solid #e0e0e0;
  font-family: 'Poppins', sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.marquee div {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 35s linear infinite;
  font-size: 15px;
  color: #2b3a67;
  font-weight: 500;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
