@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

  :root {
      --navy: #000038;
      --magenda: #43092d;
      --light: #f9f9fb;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: white;
      color: var(--navy);
      line-height: 1.6;
    }

/*----------------------------------------------*/
 .hero-apply {
      position: relative;
      height: 50vh;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      overflow: hidden;
      color: white;
    }

    .glass-box {
      backdrop-filter: blur(14px);
      background: rgba(255, 255, 255, 0.08);
      padding: 60px 40px;
      border-radius: 16px;
      max-width: 700px;
      z-index: 2;
      position: relative;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255,255,255,0.15);
    }

    .hero-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      text-shadow: 0 0 10px rgba(0,0,0,0.3);
    }

    .hero-subtitle {
      font-size: 1.2em;
      color: #f0f0f0;
      text-shadow: 0 0 8px rgba(0,0,0,0.2);
      line-height: 1.6;
    }



    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translate(-50%, 30px);
      }
      to {
        opacity: 1;
        transform: translate(-50%, 0);
      }
    }

    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.2em;
      }

      .hero-subtitle {
        font-size: 1em;
      }

      .glass-box {
        padding: 40px 20px;
        margin: 0 20px;
      }
    }
/*----------------------------------------------*/


    .section-step {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 80px 10%;
      gap: 50px;
      flex-wrap: wrap;
    }

    .section-step:nth-child(even) {
      flex-direction: row-reverse;
      background: var(--light);
    }
    .section-step.reverse {
      flex-direction: row-reverse;
      background: var(--light);
    }


    .step-text {
      flex: 1 1 50%;
    }

    .step-text h2 {
      font-size: 2.5em;
      color: var(--orange);
      margin-bottom: 10px;
    }

    .step-text h3 {
      font-size: 1.8em;
      color: #000038;
      margin-bottom: 20px;
    }

    .step-text p {
      font-size: 1rem;
      margin-bottom: 25px;
      max-width: 600px;
    }

    .step-image {
      flex: 1 1 40%;
      text-align: center;
    }

    .step-image img {
      max-width: 100%;
      height: auto;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .cta-btn {
      background: var( --magenda);
      color: white;
      padding: 12px 30px;
      border-radius: 30px;
      font-weight: bold;
      display: inline-block;
      transition: 0.3s ease;
      text-decoration: none;
    }

    .cta-btn:hover {
      background: #d66c13;
    }
   
    /*-----------------------------------------------------*/
   .checklist-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.checklist-modal.active {
  display: flex;
  animation: fadeIn 0.4s ease;
}

.checklist-modal-inner {
     background: rgb(255 255 255 / 58%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-radius: 18px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    color: white;
    position: relative;
    overflow-y: auto;
    max-height: 80vh; 
}

.checklist-modal-inner h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  text-align: center;
  color: #000038;
  border-bottom: 2px solid #43092d;
  padding-bottom: 10px;
}

.checklist-category {
     margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #43092d;
}

.checklist-category h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #000038;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checklist-category h4::before {
  content: "🎓";
  font-size: 1.2rem;
}

.checklist-category ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checklist-category ul li {
  background: rgb(10 10 10 / 38%);
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    color:lightsteelblue;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}

.checklist-category ul li::before {
  content: "📄";
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 2.8rem;
  color: #000038;
  cursor: pointer;
  transition: 0.2s ease;
}

.close-btn:hover {
  color: #f58220;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}



    @media(max-width: 768px) {
      .section-step {
        flex-direction: column !important;
        padding: 60px 20px;
        text-align: center;
      }

      .step-image img {
        max-width: 80%;
        margin-bottom: 30px;
      }

      .step-text h2 {
        font-size: 2em;
      }

      .step-text h3 {
        font-size: 1.4em;
      }
    }