#intro-test-app {
    max-width: 800px;
    margin: auto;
    font-family: 'Cairo', sans-serif;
    text-align: right;
}

#progress-bar-container {
    height: 10px;
    background: #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}
#progress-bar {
    height: 100%;
    background: linear-gradient(to right, #00b2b2, #026888);
    transition: width 0.3s;
}

.options-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.options-group label {
    flex: 1 1 calc(50% - 15px);
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 10px;
    background: #f9f9f9;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    transition: all 0.2s ease-in-out;
}
.options-group input[type="radio"] {
    display: none;
}
.options-group label:hover,
.options-group input[type="radio"]:checked + label {
    background-color: #e7f9ff;
    border-color: #00b2b2;
}

.navigation-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.navigation-buttons button {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.navigation-buttons .button-primary {
    background-color: #007cba;
    color: white;
}
.navigation-buttons .button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
/* =================== تنسيق الباقات =================== */


/* صندوق الباقة */
.package-card {
	background: #fff;
	padding: 25px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease-in-out;
	width: 100%;
	max-width: 300px;
	position: relative;
}



/* شارة الباقة المشهورة */
.package-card.popular h4 span {
	background: #fff;
	color: #007cba;
	font-size: 11px;
	border-radius: 15px;
	padding: 2px 8px;
	margin-right: 5px;
}

/* السعر */
.package-card .package-price {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
	display: block;
}

/* خصائص */
.package-card .package-features {
	padding: 0;
	margin: 0 0 15px 0;
	list-style: none;
	text-align: right;
	direction: rtl;
}
.package-card .package-features li {
	margin-bottom: 5px;
	font-size: 14px;
}

  .package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  }
  
  .package-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #007cba;
  }
  
  .package-card p {
    color: #555;
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .package-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
  }
  
  .package-card ul li {
    margin-bottom: 8px;
    padding-right: 20px;
    position: relative;
    color: #333;
    font-size: 14px;
    text-align: right;
  }
  

  
  .package-card button {
    background: #007cba;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
  }
  
  .package-card button:hover {
    background: #005f8c;
  }

  
  .package-card.popular h4,
  .package-card.popular p,
  .package-card.popular ul li {
    color: #fff;
  }
  
  .package-card.popular button {
    background: #fff;
    color: #007cba !important;
  }
  
  .package-card.popular button:hover {
    background: #eee;
  }  
  .popular-label {
    background: #007cba;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 12px;
    margin-right: 6px;
}
.package-price {
    font-size: 20px;
    font-weight: bold;
    color: #222;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: right;
}
/* ################## */


/* نخليها في النص باستخدام order لما يكون فيه 3 عناصر */


/* عشان العناصر تظهر كويس جنب بعض */
.package-card h4,
.package-card p,
.package-card ul,
.package-card button {
    color: inherit;
}

.package-card ul li {
    text-align: right;
}

/* البادج بتاع (الأكثر شهرة) */
.package-card .badge-popular {
    background: #fff;
    color: #007cba;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 12px;
    position: absolute;
    top: 10px;
    left: 10px;
}

.package-slot {
	flex: 1 1 30%;
	display: flex;
	justify-content: center;
}
.package-card .check-icon {
	color: #007cba;
	font-weight: bold;
	margin-left: 5px;
}

.package-card.popular .check-icon {
	color: #fff;
}
/* ################################ كود popup التسجيل قبل اكمال الاختبار#################################### */
/* خلفية شفافة */
#intro-register-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

/* الصندوق الأبيض */
#intro-register-box {
	background: #fff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(0,0,0,0.3);
	max-width: 500px;
	width: 90%;
	position: relative;
}

/* الحقول */
#intro-register-box input,
#intro-register-box select {
	width: 100%;
	margin-bottom: 15px;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #ccc;
}

/* زر التسجيل */
#intro-register-box button {
	width: 100%;
	background: #007cba;
	color: #fff;
	padding: 12px;
	border: none;
	border-radius: 5px;
	font-weight: bold;
	cursor: pointer;
}

#intro-register-box button:hover {
	background: #005f8c;
}

/* تنبيه أعلى الفورم */
#intro-register-box h3 {
	margin-bottom: 15px;
	font-size: 18px;
	text-align: center;
}
.overlay-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}
.popup-content {
	background: #fff;
	padding: 30px;
	border-radius: 10px;
	max-width: 500px;
	width: 90%;
	text-align: right;
	direction: rtl;
}
.popup-content input,
.popup-content select {
	width: 100%;
	margin-bottom: 10px;
	padding: 10px;
}
.popup-content button {
	background: #007cba;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
}
/*#packages {*/
/*	display: flex;*/
/*	justify-content: center;*/
/*	gap: 20px;*/
/*}*/


/*.package-slot {*/
/*	flex: 1;*/
/*	display: flex;*/
/*	justify-content: center;*/
/*}*/
.package-card {
	width: 100%;
	max-width: 300px;
}



.package-card.popular {
	background-color: #007cba;
	color: #fff;
	transform: scale(1.05);
	order: 2 !important;
	z-index: 1;
}
/* ########### */
#intro-test-app button{
	padding: 10px 20px !important;
	font-size: 14px;
	border-radius: 8px;
}
#pay-now{font-size: 16px;}
#pay-later{font-size: 16px;}
#test-content{text-align: center;}
#intro-test-app  #prev-step{
  background-color: #fff;
  border: 1px solid #ddd;
}