/*   01 - General & Basic Styles   */

@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap");
@import url("https://fonts.cdnfonts.com/css/neo-sans-arabic");
/*@font-face {*/
/*  font-family: "neosans";*/
/*  src: url("/fonts/Neo\ Sans\ Arabic\ Regular.ttf");*/
/*}*/
/*@font-face {*/
/*  font-family: "AlmaraiBold";*/
/*  src: url("/fonts/Almarai-Bold.ttf");*/
/*}*/
/*@font-face {*/
/*  font-family: "Almarai";*/
/*  src: url("/fonts/Almarai-Regular.ttf");*/
/*}*/
/*@font-face {*/
/*  font-family: "AlmaraiLight";*/
/*  src: url("/fonts/Almarai-Light.ttf");*/
/*}*/
:root {
  --fontFamily: "Almarai";
  --whiteColor: #ffffff;
  --blackColor: #272d38;
  --grayColor: #f6f6f6;

  --grayscale: #4e4b66;
  --fontSize: 1rem;
  --transition: 0.5s;
  --blue: rgba(7, 78, 232, 1);
}
body {
  padding: 0;
  margin: 0;
  font-size: var(--fontSize);
  font-family: "Almarai", sans-serif;
  direction: rtl;
  text-align: right;
  background-color: rgba(250, 250, 255, 1);
}
* {
  font-family: "Almarai", sans-serif;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}
a {
  color: var(--blackColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-decoration: none;
  outline: 0 !important;
}
a:hover {
  color: var(--blue);
  text-decoration: none;
}
:focus {
  outline: 0 !important;
}
img,
svg {
  max-width: 100%;
  height: auto;
}
p {
  color: var(--grayscale);
  font-size: var(--fontSize);
  margin-bottom: 15px;
  line-height: 2.2;
}
p:last-child {
  margin-bottom: 0;
}
html {
  scroll-behavior: smooth;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  list-style: none;
}
b,
strong {
  font-weight: 700 !important;
}

button:focus {
  outline: none !important;
}

/*   02 - Header Styles   		   */
a.navbar-brand {
  max-width: 150px;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.header .nav-link {
  font-size: 20px;
  color: var(--grayscale);
  font-weight: 400;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.header .navbar-nav .nav-link.active,
.header .nav-link:hover {
  color: var(--blue) !important;
}

.sec-title {
  text-align: center;
  margin-bottom: 2rem;
}
.sec-title p {
  font-size: 18px;
  color: var(--grayscale);
  font-weight: 400;
  margin-bottom: 5px;
}
.sec-title h3 {
  color: #272d38;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0;
}
.features-sec {
  padding: 4rem 0;
}

/*   04 - banner Styles   */
.slide-content h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 5.5rem;
  margin-bottom: 2rem;
}

.white-btm {
  border-radius: 8px;
  border: 0.2px solid #6e7191;
  background: #fcfcfc;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.05);
  padding: 8px 16px;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--grayscale);
}

.app-sec {
  padding: 4rem 0;
  text-align: center;
}
.app-sec h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

/* footer  */
.footer {
  background: #f7f7fc;
  padding: 4rem 0 0 0;
}
h4.footer-title {
  color: #272d38;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-list a {
  font-size: 16px;
  font-weight: 400;
  display: block;
  padding: 0.5rem 0;
}
.footer p {
  font-size: 16px;
  font-weight: 400;
}
.copyrights {
  text-align: center;
  padding: 1rem 0;
}

/* ----------------- mobile view  ------------- */
.mobile-view {
  display: none;
}
.mobile-header {
  padding: 5px 0;
}
.logo-div {
  margin-bottom: 0;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.m-logo {
  max-width: 40%;
  margin-right: auto;
}
.menu-button {
  color: #1f2839;
  /*font-size: 30px;*/
  margin-left: auto;
}
.mobile-menu-overlay {
  width: 100%;
  left: 0;
  visibility: hidden;
  background-color: rgba(51, 51, 51, 0.51);
}
.menu-mobile,
.mobile-menu-overlay {
  height: 100%;
  position: fixed;
  top: 0;
  right: -12px;
  bottom: 0;
  z-index: 9999;
}
.menu-mobile {
  min-width: 100px;
  width: 280px;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow: auto;
}
.menu-mobile .body-menu-mobile .fa-times,
.menu-mobile .header-menu-mobile .fa-times {
  cursor: pointer;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transition: transform 0.4s ease-in-out;
}
.menu-mobile-active {
  transform: translateX(0);
  transition: transform 0.4s ease-in-out;
  z-index: 99999;
  background: #ffffff;
}
.close-menu {
  position: absolute;
  left: 10px;
  top: 10px;
  color: var(--grayscale);
}
.header-menu-mobile .logo-opacity-bg {
  padding: 15px 25px;
  background: #ffffff;
  text-align: center;
}
.header-menu-mobile .logo {
  width: 85%;
}

.body-menu-mobile .fixed-menu {
  height: 100%;
  position: unset;
  width: 100%;
}
.body-menu-mobile .list-group-item.active {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.125);
}
.body-menu-mobile .list-group-item.active a {
  color: var(--blackColor);
}
.body-menu-mobile .list-group-item {
  padding: 0.5rem 0.5rem;
}
.university-name {
  font-family: "AlmaraiLight";
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  text-align: right;
  color: rgba(78, 75, 102, 1);
}
.back-to-website {
  background-image: url("../images/right-sign.png");
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: right 14px top 7px;

  color: rgba(78, 75, 102, 1);
  padding-right: 2.5rem !important;

  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-align: right;
  border: 0.5px solid rgba(217, 219, 233, 1);
}
.back-to-website:hover {
  background-color: rgb(217, 220, 227);
}
.subject-title-h {
  font-family: "Neo Sans Arabic";
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  text-align: right;
  color: rgba(20, 20, 43, 1);
}
.points-h {
  font-family: "AlmaraiLight";
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  text-align: right;
  color: rgba(20, 20, 43, 1);
}
/* //// */
.error-div {
  width: 454px;
}
.error-div h3 {
  font-family: "Almarai";
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
}
.error-div p {
  font-family: "AlmaraiLight";
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
}

.text-blue {
  color: var(--blue);
}
.result-h {
  font-family: "AlmaraiLight";
  font-size: 32px;
  font-weight: 400;
  line-height: 56px;
  text-align: center;
}
.result-num {
  font-weight: 700;
}
.first-result-p {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
}
.btn-check + .btn-outline-primary {
  font-size: 20px; /* حجم النص */
  padding: 15px 30px; /* المسافات الداخلية */
  border: 1px solid rgba(217, 219, 233, 1); /* عرض الحدود */
  border-radius: 10px; /* لتدوير الحواف */
  min-width: 150px; /* عرض الزر */
  text-align: center;
  position: relative; /* لإضافة الصورة */
  display: inline-block;
  width: 100%;
  color: rgba(78, 75, 102, 1); /* تغيير لون النص */
  border-color: rgba(111, 155, 251, 1); /* تغيير لون الحدود */
}
.btn-check:checked + .btn-outline-primary {
  background-color: rgba(244, 247, 254, 1); /* تغيير الخلفية */
  color: var(--blue); /* تغيير لون النص */
  border: 1px solid rgba(111, 155, 251, 1); /* عرض الحدود */
}

/* إضافة الأيقونة عند الاختيار */
.btn-check + .btn-outline-primary .checkmark {
  height: 25px;
  position: absolute;
  top: 50%;
  right: 35%;
  transform: translateY(-50%);
  display: none; /* مخفية افتراضيًا */
}

/* إظهار علامة الصح عند الاختيار */
.btn-check:checked + .btn-outline-primary .checkmark {
  display: block; /* تظهر فقط عند الاختيار */
}

/* تحسين النص */

.here-link {
  text-decoration: underline;
}
.feedback-label {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  text-align: right;
}

textarea {
  border-radius: 10px;
}
/* لضمان ظهور الراديو قبل النص */
.form-check-input {
  margin-left: 0.5rem; /* مسافة صغيرة بين الراديو والنص */
}
.form-input {
  width: 24px !important;
  height: 24px !important;
  gap: 0px;
  border-radius: 8px !important;
  background-color: rgba(217, 219, 233, 1) !important;
}
.feedback-radio-div input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  border-radius: 8px; /* يجعل الشكل مربعًا */
  display: inline-block;
  position: relative;
  outline: none;
  cursor: pointer;
}
.feedback-radio-div input[type="radio"]:checked {
  background-image: url("../images/Check.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
}
#opinion-textarea {
  resize: none;
}
.more-specialties {
  background-color: rgba(7, 78, 232, 0.1);
  color: rgba(7, 78, 232, 1);

  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
}
.feedback-btn {
  background-color: rgba(7, 78, 232, 1);
  color: #fff;
  border-radius: 8px;
  padding: 10px 20px;
}
.custom-card {
  background-color: rgba(247, 247, 252, 1);
  border: none;
  border-radius: 16px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.custom-card-h {
  font-size: 80px;
  font-weight: 800;
  line-height: 89.28px;
}
.custom-card-h span {
  font-size: 16px;
  font-weight: 800;
  line-height: 17.86px;
  text-align: center;
}
.allSpecialization-searchDiv {
  position: relative;
}
.allSpecialization-search {
  position: absolute;
  left: 10px;
  top: 20%;
  background-color: inherit;
}

/* Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
  .step-info-h {
    font-size: 23px;
  }
  .placementTitle,
  .placement-h3 {
    font-size: 20px !important;
  }
  .placement-p {
    font-size: 16px;
  }

  .subject-row {
    width: 100% !important;
  }
  .q-div {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .result-div {
    flex-direction: column;
    gap: 15px;
  }
  .collage-row {
    flex-direction: column;
    gap: 15px;
  }
  .college-h {
    font-family: "Neo Sans Arabic";
    font-size: 36px;
    font-weight: 400;
    line-height: 48px;
    text-align: right;
  }
  .collage-name {
    font-family: "Almarai";
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    text-align: right;
    color: rgba(38, 35, 56, 1);
  }
  .result-row {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .progress-bar-wrapper {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .progress-sub {
    gap: 0.2rem !important;
  }
  .step-content {
    padding-right: 0.2rem !important;
  }

  .btn-check + .btn-outline-primary .checkmark {
    position: absolute;
    top: 50%;
    right: 17% !important;
  }
  .subject-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 20px !important;
  }
  #introForm {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .form-container {
    padding: 20px;
  }
  .share-btn {
    background-position: right 18px center;
  }
  .slide-content h1 {
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 1rem;
  }
  .mee-2 {
    margin-inline-end: 0;
  }
  .slide-content .d-flex {
    flex-direction: column;
  }
  .slide-content .btn {
    margin-bottom: 10px;
  }
  .sec-title h3 {
    font-size: 2rem;
  }
  .slide-content h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 3rem;
    margin-bottom: 1rem;
  }

  .app-sec h2 {
    font-size: 2rem;
  }
  .mobile-hide {
    display: none;
  }
  .mobile-show {
    display: block;
  }
  .mobile-view {
    display: block;
  }
  .top-header,
  .menu-header {
    display: none;
  }

  .content-sec {
    padding: 4rem 0;
  }
  .content-sec p {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--grayscale);
  }
  .sec-title {
    text-align: right !important;
  }
  .sec-title h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: right;
  }
  .right-side {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .container {
    padding: 8px 24px 8px;
  }
  .landing-heading {
    margin-bottom: 10px !important;
  }

  .app-div {
    flex-direction: column !important;
  }

  .owl-item {
    margin-left: 10px;
    margin-right: 10px;
    /* width: 230px !important; */
  }
  .article-items {
    width: 250px;
    padding: 32px 26px 32px 26px;
  }
  .owl-carousel {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .app-sec {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .breadcrumb-sec h2 {
    font-size: 2rem;
  }
  .breadcrumb-sec p {
    font-size: 1rem;
  }
  .breadcrumb-sec svg {
    max-width: 4rem;
    margin-inline-end: 0.5rem;
  }
  .accordion-button {
    font-size: 1.25rem;
  }
  .accordion-body {
    padding: 1rem;
    font-size: 1.25rem;
  }
  .show-in-mobile {
    display: block !important;
  }
  .show-in-desktop {
    display: none;
  }
}

/*// Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) {
  .slide-content h1 {
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 1rem;
  }
  .mee-2 {
    margin-inline-end: 0;
  }
  .slide-content .d-flex {
    flex-direction: column;
  }
  .slide-content .btn {
    margin-bottom: 10px;
  }
  .sec-title h3 {
    font-size: 2rem;
  }
  .slide-content h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 3rem;
    margin-bottom: 1rem;
  }
  .banner-sec .bg-gray {
    background-color: #fafafa;
    padding: 1rem 1rem;
    margin-top: 2rem;
  }
  .app-sec h2 {
    font-size: 2rem;
  }
  .mobile-hide {
    display: none;
  }
  .mobile-show {
    display: block;
  }
  .mobile-view {
    display: block;
  }
  .top-header,
  .menu-header {
    display: none;
  }
  .breadcrumb-sec h2 {
    font-size: 2rem;
  }

  .breadcrumb-sec p {
    font-size: 1rem;
  }
  .contact-form {
    margin-bottom: 2rem;
  }
  .show-in-mobile {
    display: block !important;
  }
  .show-in-desktop {
    display: none;
  }
}
/* landing page */
.landing-heading {
  font-size: 64px;
  font-weight: 700;
  line-height: 71.42px;
  text-align: right;
}
.slide-content p {
  font-size: 20px;
  font-weight: 400;
  line-height: 31px;
  text-align: right;
}
.sec-title h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 44px;
  text-align: center;
}
.feature-layout {
  padding: 24px 10px 24px 10px;
  height: calc(100% - 20px);
  background-color: var(--whiteColor);
}
.feature-layout h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.feature-layout p {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  padding-right: 10px;
}

.darkBlue-btn {
  border-radius: 8px;
  background: var(--blue);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
  padding: 8px 16px;
  font-size: 1.125rem;
  font-weight: 400;
  color: #ffffff;
}
.owl-carousel .owl-stage {
  display: flex;
}
/*(2) the direct div of each element in the owl carousel*/
.article-items {
  background-color: rgba(239, 240, 246, 1);

  padding: 32px 16px 32px 16px;
  position: relative;
}
.slider-name {
  font-size: 13px;

  line-height: 16px;
  margin-top: auto;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
#demos .owl-carousel .item-video {
  height: 300px;
}
#demos #setup {
  margin-top: 4rem;
}
#demos .demo-list h5 {
  margin: 0;
}

.owl-carousel .owl-item {
  float: right !important;
}
.owl-carousel .item {
  border-radius: 10px !important;
}

.owl-carousel .owl-wrapper-outer {
  direction: rtl !important;
}
.owl-nav {
  display: none;
}
.owl-dots {
  margin-top: 20px;
}
.slider-p {
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;

  color: rgba(78, 75, 102, 1);
}
.owl-carousel .owl-item img {
  width: auto;
}
.concat-div {
  background: rgba(239, 240, 246, 1);
}
.concat-btn {
  padding: 6.75px 13.51px 6.75px 13.51px;
  gap: 6.75px;
  border-radius: 6.75px 0px 0px 0px;
  border: 0.17px 0px 0px 0px;
  background-color: rgba(252, 252, 252, 1);
}
.blue-color {
  color: rgba(3, 33, 98, 1);
}
footer span {
  font-size: 16px;

  line-height: 28px;
  text-align: right;
  color: rgba(110, 113, 145, 1);
}
.st-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  color: rgba(20, 20, 43, 1);
}
.font-13 {
  font-size: 13px;
}
.font-18 {
  font-size: 18px;
}
.line-16 {
  line-height: 16px;
}
.describe {
  height: 40px;
}
.light-blue-color {
  color: #074ee8;
}
.breadcrumb-sec {
  background-color: #ebecfe;
  padding: 5rem 0;
}
.breadcrumb-sec h2 {
  font-size: 3rem;
  color: #272d38;
  font-weight: 700;
}
.breadcrumb-sec p {
  font-size: 1.125rem;
  font-weight: 400;
}

.breadcrumb-sec svg {
  max-width: 7rem;
  margin-inline-end: 1rem;
}

.accordion-item {
  color: var(--grayscale);
  background-color: #fcfcfc;
  border: 0;
  margin-bottom: 0.5rem;
}
.accordion-button::after {
  margin-left: 0;
  margin-right: auto;
}
.accordion-button {
  background-color: #eff0f6;
  font-size: 1.25rem;
  color: #262338;
  font-weight: 400;
  text-align: right;
}
.accordion-button:not(.collapsed) {
  background-color: #eff0f6;
  color: #262338;
  box-shadow: none;
}
.accordion-body {
  padding: 2rem;
  font-size: 1.125rem;
  color: var(--grayscale);
  background-color: #fcfcfc;
}
.ccontact-info {
  margin-top: 2rem;
}

.form-control:focus {
  outline: 0;
  box-shadow: none;
}
.form-control {
  border-radius: 8px;
}
.padt-50 {
  padding-top: 50px;
}

/* start testmonial section */
/*05 leader Style*/
.dropdown-btn {
  background-color: #eff0f6;
  font-size: 1.25rem;
  color: #262338;
  font-weight: 400;
  text-align: right !important;
  border: none !important;
}
.dropdown-btn:hover {
  background-color: #eff0f6;
}

.dropdown-btn:after {
  content: url("../images/downarrow.png");
  font-weight: bold;
  margin-left: 20px;
  margin-top: 20px;
  border: none;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
}
.dropdown-menu {
  width: 100%;
}
.student-details {
  background-color: #eff0f6;
}
.comment-btn {
  background-color: #d9dbe966;
  color: #074ee8;
}
.comment-btn:hover {
  background-color: #d9dbe966;
}

.details-span {
  color: #6e7191;
}
.black-color {
  color: #14142b;
}
.green-color {
  color: #008a00;
}
.student-badge {
  background-color: #ebecfe;
}
.gray-color {
  color: var(--grayscale);
}
.modal-p {
  line-height: 20px;
  font-size: 15px;
}
.student-grade {
  line-height: 16px;
}
.line-24 {
  line-height: 24px !important;
}
.page-link {
  border-radius: 0 !important;
  background-color: #eff0f6;
  color: #4e4b66;
}
.page-link.active {
  border-radius: 0 !important;
  background-color: #6f9bfb33 !important;
  color: #074ee8 !important;
  border: 0;
}

.stretch {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.table-header-name {
  background-color: #b9cefd66;
}
.leader-img {
  height: 50px !important;
  width: 50px !important;
}
.column-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-align: right;
}
.odd-row {
  background-color: #eff0f6;
}
.even-row {
  background-color: #d9dbe9;
}
.table-span {
  color: #4e4b66;
}
.student-name {
  color: #14142b !important;

  font-size: 18px !important;
  font-weight: 400 !important;
}
.row-without-margin {
  margin: unset;
  max-width: unset;
}
/* ///////////////////////////////////////////////// */

/* determind the Specialties  page */
.boxShadow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.placementTitle-row {
  /* padding: 80px 120px 80px 120px; */

  background-color: rgba(235, 236, 254, 1);
}
.placementTitle {
  font-family: "Almarai" !important;
  font-size: 48px !important;
  font-weight: 700;
  line-height: 56px;
  text-align: right;
}
.links {
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
  text-align: right;
  color: rgba(78, 75, 102, 1);
}
.placement-h3 {
  font-family: "Neo Sans Arabic";
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  text-align: right;
  color: rgba(38, 35, 56, 1);
}
.placement-p {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  text-align: right;
  color: rgba(78, 75, 102, 1);
}
.color-box {
  width: 16px;
  height: 16px;
}
.square-div {
  align-items: baseline !important;
}
/* ////// steps page/////// */
.first-screen-div {
  background-color: rgba(227, 254, 255, 0.5);
  color: rgba(0, 91, 212, 1);

  font-family: "AlmaraiLight";
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  border: 1px solid rgba(7, 78, 232, 1);
  border-radius: 8px;
}
.step-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.step {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
  width: 100%;
}
.step2 {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
  width: 100%;
}

.step-number {
  font-size: 17px;

  line-height: 24px;
  text-align: center;
}

.progress-bar-wrapper {
  position: relative;
  width: 100%;
  height: 4px;
  background-color: #ddd;
  flex-grow: 1;
  margin: 0 15px; /* Adjust spacing between steps */
  margin-bottom: 15px;
}

.progress-bar {
  height: 100%;
  background-color: rgba(7, 78, 232, 1); /* Color of the active step */
  width: 0%;
  transition: width 0.3s ease;
}

.step-content {
  display: flex;
  gap: 10px;
  align-items: center;

  text-align: center;
}

.step-name {
  font-family: "Almarai";
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;

  color: rgba(110, 113, 145, 1);
}

.question-container {
  margin-top: 30px;
  text-align: center;
}

.question-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  color: rgba(78, 75, 102, 1);
}

.options-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.question {
  display: none; /* Hide all questions by default */
}

.question.active {
  display: block; /* Show only the active question */
}

.stage {
  display: none; /* Hide all stages by default */
}
.form-container {
  max-width: 450px;
  margin: auto;

  background-color: #ffffff;
}
.form-container h6 {
  font-family: "AlmaraiLight";
  color: rgba(20, 20, 43, 1);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
}
.form-container .form-control {
  background-color: rgba(239, 240, 246, 1);

  padding: 12px 20px;
  border: none;
  border-radius: 16px;
  opacity: 0px;
}
.select-arrow {
  background-image: url("../images/Down.svg");
  background-position: left 10px center;
  background-repeat: no-repeat;
}

.stage.active {
  display: block; /* Show only the active stage */
}
.subject-container {
  padding: 8px;
  gap: 8px;
  border-radius: 16px;
}
.btn-subject {
  padding: 8px;
  gap: 4px;

  border: 1px solid rgba(217, 219, 233, 1);
  background-color: rgba(255, 255, 255, 1);
  color: rgba(78, 75, 102, 1);
}
.btn2-subject {
  padding: 8px;
  gap: 4px;

  border: 1px solid rgba(217, 219, 233, 1);
  background-color: rgba(255, 255, 255, 1);
  color: rgba(78, 75, 102, 1);
}
.btn-group-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.nav-button {
  width: 100px;
  margin: 10px auto;
}

.step-info-h {
  font-family: "Neo Sans Arabic";
  font-size: 36px;
  font-weight: 400;
  line-height: 48px;
  text-align: center;
  color: rgba(20, 20, 43, 1);
  margin-bottom: 0;
}
.q-div {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.next-step-info {
  background-color: rgba(7, 78, 232, 1);

  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  height: 48px;
}
/* If you need custom styling, make sure to apply !important here */

.second-q {
  display: none;
}
.third-q {
  display: none;
}
.fourth-q {
  display: none;
}
.step1-info.d-none,
.step2-info.d-none,
.step3-info.d-none,
.step4-info.d-none {
  display: none !important;
}
.q1.d-block,
.q2.d-block,
.q3.d-block,
.q4.d-block {
  display: block !important;
}
.q-num {
  font-size: 18px;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
}
.btn-option {
  gap: 4px;
  border-radius: 8px;
  border: 1px solid rgba(217, 219, 233, 1);
  color: rgba(78, 75, 102, 1);
  flex: 1;
  text-align: center;
}
.btn-option:hover {
  background-color: inherit !important;
  color: #6e7191 !important;
}
.back-btn {
  gap: 8px;
  border-radius: 16px;
  background-color: rgba(230, 237, 253, 1);
  font-family: "AlmaraiLight";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  color: rgba(7, 78, 232, 1);

  height: 48px;
  padding: 8px 48px 8px 48px;
}
.back-btn:hover {
  background-color: #f6f6f6 !important;
}
.next-btn {
  gap: 8px;
  border-radius: 16px;
  background-color: rgba(7, 78, 232, 1);
  font-family: "AlmaraiLight";
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;

  height: 48px;
  padding: 8px 48px 8px 48px;
}
.next-btn:hover {
  color: #6e7191 !important;
  background-color: #f6f6f6 !important;
}
.green-div {
  background-color: rgba(0, 138, 0, 0.05) !important;
}
.pink-div {
  background-color: rgba(202, 2, 79, 0.05) !important;
}
.yellow-div {
  background-color: rgba(234, 172, 48, 0.05) !important;
}
.blue-div {
  background-color: rgba(7, 78, 232, 0.05) !important;
}
.green-div .btn-subject.active,
.green-div .btn2-subject.active {
  background-color: rgba(0, 138, 0, 0.1) !important;
  border-color: rgba(0, 138, 0, 1) !important;
  color: rgba(78, 75, 102, 1) !important;
}
.pink-div .btn-subject.active,
.pink-div .btn2-subject.active {
  background-color: rgba(202, 2, 79, 0.1) !important;
  border-color: rgba(202, 2, 79, 1) !important;
  color: rgba(78, 75, 102, 1) !important;
}
.yellow-div .btn-subject.active,
.yellow-div .btn2-subject.active {
  background-color: rgba(234, 172, 48, 0.1) !important;
  border-color: rgba(234, 172, 48, 1) !important;
  color: rgba(78, 75, 102, 1) !important;
}
.blue-div .btn-subject.active,
.blue-div .btn2-subject.active {
  background-color: rgba(7, 78, 232, 0.1) !important;
  border-color: rgba(7, 78, 232, 1) !important;
  color: rgba(78, 75, 102, 1) !important;
}
.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0f0f0; /* خلفية افتراضية */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.sub-step-circle {
  width: 15px;
  height: 14px;
  border-radius: 50%;
  background-color: #f0f0f0; /* خلفية افتراضية */
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.step-circle .step-number {
  display: none !important; /* إخفاء الرقم بشكل افتراضي */
}

.step.active .step-icon {
  display: none !important; /* إخفاء الصورة عندما تكون الخطوة نشطة */
}

.step.active .step-number {
  display: inline !important; /* عرض الرقم عندما تكون الخطوة نشطة */
}
.step.step.active .yellow-namev,
.q1 .q-num {
  color: rgba(234, 172, 48, 1);
}
.step.active .yellow-circle,
#stage-1 .btn.selected {
  color: rgba(234, 172, 48, 1);
  background-color: rgba(234, 172, 48, 0.2);
  border: 0.5px solid rgba(234, 172, 48, 1);
}
.step.step.active .green-name,
.q2 .q-num {
  color: rgba(0, 138, 0, 1);
}
.step.active .green-circle {
  color: rgba(0, 138, 0, 1);
  background-color: rgba(0, 138, 0, 0.2);
  border: 0.5px solid rgba(0, 138, 0, 1);
}
.step.step.active .purple-name,
.q3 .q-num {
  color: rgba(151, 71, 255, 1);
}
.step.active .purple-circle,
#stage-3 .btn.selected {
  color: rgba(151, 71, 255, 1);
  background-color: rgba(151, 71, 255, 0.2);
  border: 0.5px solid rgba(151, 71, 255, 1);
}
.step.step.active .pink-name,
.q4 .q-num {
  color: rgba(202, 2, 79, 1);
}
.step.active .pink-circle {
  color: rgba(202, 2, 79, 1);
  background-color: rgba(202, 2, 79, 0.1);
  border: 0.5px solid rgba(202, 2, 79, 1);
}
.step-circle.step-completed {
  background-color: #af844c !important; /* لون الخلفية عند اكتمال الخطوة */
  color: white; /* لون النص */
}

.subject-card {
  border: 0.5px solid rgba(217, 219, 233, 1);
  border-radius: 8px;

  /* text-align: center; */

  background-image: url("../images/chevron-left.svg");
  background-size: 28px;
  background-repeat: no-repeat;
  background-position: left 15px bottom 14px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.02);
}
.subject-icon {
  font-size: 2rem;
  margin-right: 10px;
  color: #6c757d;
}
.subject-link {
  color: inherit;
  text-decoration: none;
}
.subject-title {
  font-family: "Almarai";
  font-size: 12px;
  font-weight: 700;
  line-height: 13.39px;
  color: rgba(78, 75, 102, 1);
}

.share {
  background-image: url("../images/share-2.svg");
}
.save {
  background-image: url("../images/Icons\ \(4\).svg");
}
.share-btn {
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-color: rgba(7, 78, 232, 0.1);
  color: rgba(7, 78, 232, 1);
  padding-right: 2.5rem !important;

  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
}
.share-btn:hover {
  background-color: rgb(217, 220, 227);
}
/* ////// */

.college-row {
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
  align-items: center;
}

.btn-website {
  border: 0.5px solid rgba(217, 219, 233, 1);
  background-image: url("../images/external-link.svg");
  background-position: right 5px center;
  background-repeat: no-repeat;

  font-family: Almarai;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  padding-right: 34px !important;
}
.btn-website:hover {
  background-color: rgba(7, 78, 232, 1);
}

.btn-filter {
  border: 1px solid rgba(217, 219, 233, 1);
  padding: 8px 16px !important;
  border-radius: 8px;
}
.btn-filter.active {
  background-color: rgba(244, 247, 254, 1);
  border-color: rgba(111, 155, 251, 1);
  color: rgba(7, 78, 232, 1);
}
.btn-filter.active .blue-check {
  display: inline-block !important;
}
.pos-card {
  background-color: rgba(239, 240, 246, 1);
}
/* End testmonial section */
.pos-card .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.page-num {
  border-radius: 2px !important;
}

.page-num .page-link {
  background-color: rgba(239, 240, 246, 1) !important;
  font-size: 20px !important;
  color: rgba(78, 75, 102, 1) !important;
  line-height: 24px !important;
  border-radius: 2px !important;

  outline: none !important;
  box-shadow: none !important;
}
.pagination .page-item.active .page-link,
.pagination .page-link:focus,
.pagination .page-link:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.active > .page-link,
.page-link.active {
  z-index: 3;
  color: rgba(7, 78, 232, 1) !important;
  background-color: rgba(111, 155, 251, 0.2);
}
.search-input {
  background-color: rgba(239, 240, 246, 1) !important;
}
.custom-dropdown-btn {
  position: relative;
  background: none !important;
  border: 1px solid #ccc;
  text-align: right;
  padding-right: 30px;
}

.custom-dropdown-btn::after {
  content: url("../images/Down.svg");
  font-family: "Bootstrap-icons";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 0 !important;
}
.search-input input::placeholder {
  color: rgba(110, 113, 145, 1);
}

@media (min-width: 992px) {
  .banner-sec {
    height: 100vh !important ;
  }
}
@media (min-width: 1200px) {
  .banner-heading {
    margin-top: 3rem !important;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .container {
    padding: 8px 24px 8px;
  }
  .large-header {
    display: none;
  }
  .placementTitle {
    font-size: 39px !important;
  }
  .step-info-h {
    font-size: 33px;
  }

  .slide-content h1 {
    font-size: 37px;

    line-height: 3.5rem;
  }
  .landing-heading {
    font-size: 41px;
  }
  .confused {
    line-height: 9.42px;
  }
  .st-name {
    font-size: 16px !important;
  }
  .feature-layout h5 {
    font-size: 13px;
  }
  .footer span {
    font-size: 15px;
  }
  .footer-list a {
    font-size: 13px;
  }
  .mobile-hide {
    display: none;
  }
  .mobile-show {
    display: block;
  }
  .mobile-view {
    display: block;
  }
  .breadcrumb-sec h2 {
    font-size: 2rem;
  }
  .breadcrumb-sec p {
    font-size: 1rem;
  }
  .breadcrumb-sec svg {
    max-width: 4rem;
    margin-inline-end: 0.5rem;
  }
  .accordion-button {
    font-size: 1rem;
  }
  .accordion-body {
    padding: 1rem;
    font-size: 1rem;
  }
  .content-sec {
    padding: 3rem 0;
  }
  .content-sec p {
    font-size: 1rem;
  }
  .result-h {
    font-size: 40px;
    flex-direction: column;
  }
  .subject-row {
    width: 100% !important;
  }
  .btn-check + .btn-outline-primary .checkmark {
    position: absolute;
    top: 50%;
    right: 25% !important;
  }
}
@media (max-width: 768px) and (min-width: 576px) {
  .mobile-view {
    display: block;
  }
  .top-header,
  .menu-header {
    display: none;
  }
  .placementTitle {
    font-size: 26px !important;
  }
  .step-info-h {
    font-size: 23px;
  }

  .placement-p {
    font-size: 16px;
  }
  .next-step-info {
    width: 100% !important;
  }

  .subject-row {
    width: 100% !important;
  }
  .q-div {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .result-div {
    flex-direction: column;
    gap: 15px;
  }

  .subject-card {
    padding: 0.5rem !important;
  }
  .result-row {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .btn-check + .btn-outline-primary .checkmark {
    position: absolute;
    top: 50%;
    right: 20% !important;
  }
  .share-btn {
    width: 100%;
    background-position: right 80px center;
  }
}
@media (max-width: 767.98px) {
  .slide-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .h1 {
    font-size: 32px !important;
    line-height: 35.71px !important;
  }
  .slider-container {
    padding-left: 0px !important;
    padding-right: 0px !important ;
  }
  .footer-margin {
    margin-bottom: 3rem !important;
  }
  .concat-div {
    padding: 24px 32px 24px 32px !important;
  }
  .hero-img {
    width: 70%;
  }
  .result-btns {
    flex-direction: column;
  }
  .subject-card {
    padding: 10px !important;

    background-size: 16px;
    gap: 5px !important;
  }
  .subject-title {
    font-size: 16px;
  }
  .step-container {
    flex-direction: column;
    gap: 10px;
  }
  .share-sav-div {
    flex-direction: column;
  }

  .step1-info {
    padding: 0rem !important;
  }
  .step-container {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .share-btn {
    background-position: right 10px center;
  }
  .custom-select {
    width: 100% !important;
  }
  .pos-title {
    width: 100% !important;
  }
  .pos-card .card-title {
    font-size: 14px !important;
  }
  .pos-sub-title {
    font-size: 12px !important;
  }
}

@media (max-width: 991px) {
  .navbar-expand-lg {
    display: none !important;
  }
  .mobile-view {
    display: block;
  }
  .result-div-p {
    width: 100% !important;
  }
  .back-to-website {
    margin-bottom: 10px;
  }
  .custom-card-h {
    font-size: 58px;
  }
}
@media (max-width: 575px) {
  body {
    overflow-x: hidden;
    margin: 0 auto !important;
  }
  .step-info-h {
    font-size: 32px !important;
  }
  #sub-progress-container-1 {
    flex-wrap: wrap !important;
  }
  .btn-filter-group {
    flex-wrap: wrap;
  }

  .pos-sub-title {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .font-18 {
    font-size: 14 !important;
  }
  body {
    overflow-x: hidden;
    margin: 0 auto !important;
  }
}
.address-color{
  color:#888888;
}
.pos-card .card-body .card-title {
  line-height: 1.5;
}

.pos-img-div {
  /*
  max-height: 236px; !* ارتفاع ثابت للجزء الذي يحتوي على الصورة *!
  */
  height: 200px; /* ارتفاع ثابت للجزء الذي يحتوي على الصورة */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pos-img-div img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}