/* =====================================================
   ADMISSION SECTION : WRAPPER
===================================================== */
.admission-section {
  padding: 80px 0;
  background-color: #ffffff;
}

/* =====================================================
   ADMISSION CONTAINER (20% / 80%)
===================================================== */
.admission-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
}

/* =====================================================
   LEFT COLUMN
===================================================== */
.admission-left {
  flex: 0 0 20%;
}

.admission-left-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admission-icon {
  color: #F37422;
  font-size: 16px;
}

.admission-subtitle {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin-top:15px;
}

/* =====================================================
   RIGHT COLUMN
===================================================== */
.admission-right {
  flex: 0 0 80%;
}

/* =====================================================
   SECTION HEADING
===================================================== */
.admission-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* =====================================================
   PROCESS STEPS – DESKTOP GRID
===================================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

/* =====================================================
   INDIVIDUAL STEP
===================================================== */
.process-step {
  position: relative;
  text-align: center;
}

/* =====================================================
   STEP ICON
===================================================== */
.step-icon {
  width: 110px;
  height: 110px;
  border: 2px solid #F37422;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.step-icon img {
  max-width: 48px;
}

/* =====================================================
   STEP TEXT
===================================================== */
.process-step h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 12px;
  color: #777;
}

/* =====================================================
   LIGHTWEIGHT ARROW BETWEEN STEPS
===================================================== */
.process-step::after {
  content: "→";
  position: absolute;
  top: 52px;
  right: -18px;

  font-size: 20px;
  font-weight: 300;
  color: #b5b5b5;
}

.process-step:last-child::after {
  display: none;
}

/* =====================================================
   CTA BUTTONS (FINAL – MATCH SCREENSHOT)
===================================================== */
.admission-cta {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* Base CTA */
.admission-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;

  padding: 7px 20px 7px 7px; /* ✅ +2px overall */
  border-radius: 10px;

  font-size: 17px;
  font-weight: 600;
  text-decoration: none;

  transition: transform 0.2s ease;
}

/* Primary */
.admission-btn.primary {
  background: linear-gradient(90deg, #f37422, #e65f15);
  color: #ffffff;
}

/* Secondary */
.admission-btn.secondary {
  background: #e65f15;
  color: #ffffff;
}

/* Arrow icon – LIGHT & SMALL */
.admission-btn-icon {
  width: 42px;
  height: 42px;

  background: #ffffff;
  color: #000;

  border-radius: 7px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

/* Hover */
.admission-btn:hover {
  transform: translateY(-1px);
}

/* =====================================================
   TABLET (≤ 991px)
===================================================== */
@media (max-width: 991px) {

  .admission-container {
    flex-direction: column;
  }

  .admission-left,
  .admission-right {
    flex: 100%;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .admission-cta {
    flex-direction: column;
    align-items: center;
  }
}

/* =====================================================
   MOBILE – ICON CAROUSEL
===================================================== */
@media (max-width: 767px) {

  .admission-title {
    font-size: 26px;
    line-height: 1.35;
    margin-bottom: 32px;
  }

  .process-steps {
    display: flex;
    gap: 20px;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 10px 0;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .process-steps::-webkit-scrollbar {
    display: none;
  }

  .process-step {
    flex: 0 0 140px;
    scroll-snap-align: start;
  }

  .step-icon {
    width: 80px;
    height: 80px;
  }

  .step-icon img {
    max-width: 36px;
  }

  .process-step h4 {
    font-size: 13px;
  }

  .process-step p {
    font-size: 11px;
  }

  .process-step::after {
    top: 42px;
    right: -14px;
  }
}
