/* Background Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: white;
  background: url('images/d4d98730d5.jpg') no-repeat center center fixed;
  background-size: cover;
  position: relative;
  z-index: 1;
}

/* Dark overlay to improve text readability */
.background-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

/* Header */
header {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Buttons */
.add-money,
.hero-btn {
  background: #ffcc00;
  color: black;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.add-money:hover,
.hero-btn:hover {
  background: #ffc107;
}

/* Hero Section */
.hero {
  padding: 60px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  margin: 20px;
  border-radius: 10px;
}

/* Bottom Navbar */
.navbar {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  padding: 12px;
  display: flex;
  justify-content: space-around;
  z-index: 2;
}

.navbar button {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.navbar button:hover {
  background: #fff;
  color: #000;
}

/* Input Container (if used on other pages) */
.container {
  max-width: 400px;
  margin: 50px auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  color: white;
}

input[type="text"],
input[type="number"],
input[type="tel"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 6px;
}
