
@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Cairo:wght@200..1000&family=Dancing+Script:wght@400..700&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Tagesschrift&family=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap');
body {

  background-color: #ffffff85;
    font-family: "Cairo", sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}
header {
  background: url('/photo/graduation/FB_IMG_1751034557079.jpg') no-repeat center center/cover;
  height: 300px;
  position: relative;
  color: white;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

header h1 {
  font-size: 3rem;
  z-index: 1;
}

.app-article__apply-now-container {
  top: 0;
  right: 0;
  background-color: #ffffff85;
  display: flex;
  justify-content: end;
}
.breadcrumb{
top: -50px;
  position: relative;
}

.app-article__apply-now{
    position: relative;
    display: flex;
    justify-content: start;
    max-width: fit-content;
      margin-bottom: 0px;

}


.step_mina {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 10px;
  margin: 0 auto;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
}

#admission{
    padding-top: 0px !important;

}.step_mina {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 40px auto;
  max-width: 1100px;
  padding: 0 20px;
}

.step {
    opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.step-number {
     font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-size: 3rem;
  color: #004766;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}

.step-text {
    font-family: "Vollkorn", "Cairo";
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.95rem;
  color: #1a1a1a;
  line-height: 1.5;
}

.step::after {
  content: "";
  position: absolute;
  top: 50px;
  right: -50px;
  width: calc(100% + 10px);
  height: 1px;
  border-top: 1px dotted #999;
  z-index: -1;
}

.step.visible {
  opacity: 1;
  transform: translateY(0);
}

 

    @media (max-width: 768px) {

      .apply-button {
        position: static;
        display: block;
        margin: 2rem auto;
        text-align: center;
      }
    }

@media screen and (min-width: 768px) and (max-width: 1420px) {

  .step_mina {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px 10px;
  }

  .step {
    flex: 1 1 calc(45% - 20px);
    margin: 10px;
    padding: 25px 15px;
    height: auto;
    max-width: 100%;
  }

  .step-number {
    font-size: 32px;
  }

  .step-text {
    font-size: 16px;
    line-height: 1.5;
  }



  .admission-wrapper {
    gap: 5%;
    padding: 10px;
  }

  .admission-wrapper > div {
    flex: 1 1 45%;
    max-width: 100%;
    padding: 25px 20px;
  }

  .admission-wrapper h4 {
    font-size: 20px;
  }

  .admission-wrapper li {
    font-size: 15px;
  }

  .admission-wrapper p {
    font-size: 14px;
  }
}



@media (max-width: 768px) {
  .step_mina {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }

  .step {
    flex: 1 1 100%;
    margin: 10px 0;
  }
  
.step::after {
  content: "";
  position: absolute;
  top: 50px;
  right: 0px;
  width: calc(100% + 10px);
  height: 1px;
  border-top: 1px dotted #999;
  z-index: -1;
}
 
}

.admission-wrapper {
   font-family: "Vollkorn", "cairo";
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  display: flex;
  flex-wrap: wrap;
  gap: 10%;
  justify-content: center;
  animation: 5s ease-in-out forwards fadeInUp, 3s ease-in-out forwards fadeIn;
}

.admission-wrapper > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  flex: 1 1 500px;
  max-width: 550px;
  transition: transform 0.3s ease;
}

.admission-wrapper > div:hover {
  transform: translateY(-5px);
}

.admission-wrapper h4 {
  font-size: 22px;
  color: #a51417;
  margin-bottom: 20px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.admission-wrapper li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
  font-size: 16px;
}

.admission-wrapper li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #a51417;
  font-size: 14px;
  line-height: 1;
  top: 3px;
}

.admission-wrapper p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 10px 0 0 0;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
