body {
  font-family: 'Tajawal', sans-serif;
  direction: rtl;
  background-color: #f9f7f2;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 3.5rem;
}

/* Navbar */
.navbar {
  background-color: #004c3f; /* dark green */
  color: #f5c842; /* gold */
  padding: 1rem 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.nav-title {
  font-size: 3.5rem;
  font-weight: 600;
}

/* Centered main area */
.main-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px; /* so content doesn’t hide under navbar */
}

/* Box */
.main-container {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 420px;
  width: 90%;
  text-align: center;
}

h1 {
  color: #004c3f;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
  padding: 15px 30px;
  font-size: 1.5rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-primary {
  background-color: #004c3f;
  color: #f5c842;
}

.btn-primary:hover {
  background-color: #00352d;
  box-shadow: 0 0 10px rgba(245, 200, 66, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #f5c842;
  color: #004c3f;
}

.btn-secondary:hover {
  background-color: #e0b837;
  box-shadow: 0 0 10px rgba(0, 76, 63, 0.3);
  transform: translateY(-2px);
}
