body {
  font-family: 'Cairo', sans-serif;
  background: #f7f9fc;
  margin: 0;
  padding: 0;
  background: white;
  
}
.container {
  width: 90%;
  max-width: 900px;
  margin: 40px auto;
  background: white;
  border-radius: 12px;
  padding: 20px 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h2 {
  text-align: center;
  color: #333;
}
fieldset {
  border: none;
  margin-bottom: 20px;
}
legend {
  font-weight: bold;
  color: #ff0000;
  margin-bottom: 10px;
}
input, select {
  width: 100%;
  padding: 8px;
  margin: 6px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
}
button {
  background: #ff0000;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
}
button:hover {
  background: #0056b3;
}
.agree {
  margin-top: 15px;
  text-align: center;
}


 

/* 🔹 إخفاء كل الأقسام افتراضياً وإظهار النشط فقط */
fieldset {
  display: none; 
  border: none;
}
fieldset.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

/* 🔹 تأثير ظهور ناعم عند الانتقال */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 🔹 شريط التقدم (الدوائر العلوية) */
.steps-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}
.steps-progress::before {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 2px;
  background: #ddd;
  z-index: 1;
  transform: translateY(-50%);
}
.step-circle {
  width: 35px;
  height: 35px;
  background: white;
  border: 2px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 2;
  transition: 0.3s;
}
.step-circle.active {
  border-color: #ff0000;
  color: #ff0000;
  transform: scale(1.1);
}
.step-circle.finish {
  background: #ff0000;
  border-color: #ff0000;
  color: white;
}

/* 🔹 تنسيق أزرار التنقل */
.button-group {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.prev-btn {
  background: #6c757d !important;
}
