/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 21 2025 | 21:40:28 */
/* خط حديث */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;600;700&display=swap');

.cf7-multi-step {
  font-family: 'Tajawal', sans-serif;
  background: #f9fbff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: 0 auto;
}

.cf7-multi-step h3 {
  color: #0d6efd;
  margin-bottom: 15px;
  font-weight: 700;
}

.form-step {
  display: none;
}
.form-step.active {
  display: block;
}

/* Progress Bar */
.progressbar {
  display: flex;
  justify-content: space-between;
  counter-reset: step;
  margin-bottom: 30px;
  list-style: none;
  padding: 0;
}

.progressbar li {
  position: relative;
  flex: 1;
  text-align: center;
  color: #999;
  font-weight: 600;
}
.progressbar li::before {
  content: counter(step);
  counter-increment: step;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border: 2px solid #ccc;
  display: block;
  text-align: center;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: white;
  color: #999;
  font-weight: bold;
}
.progressbar li.active::before {
  border-color: #0d6efd;
  background: #0d6efd;
  color: white;
}
.progressbar li::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: #ccc;
  top: 17px;
  left: -50%;
  z-index: -1;
}
.progressbar li:first-child::after {content: none;}
.progressbar li.active + li::after {
  background: #0d6efd;
}

/* Buttons */
.next-step, .prev-step, #add-student, .final-submit {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 10px 25px;
  margin: 10px 5px 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.prev-step {background: #6c757d;}
#add-student {background: #28a745;}
.next-step:hover, .prev-step:hover, #add-student:hover {
  opacity: 0.85;
}

/* Inputs */
.wpcf7 input, .wpcf7 select, .wpcf7 textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  font-size: 15px;
  margin-bottom: 10px;
}
