

/* =========================
   TICKER SECTION
========================= */
.admission-ticker {
  background: linear-gradient(90deg, var(--accent-red), #b50000);
  position: relative;
  overflow: hidden;
  padding: 14px 0;
  margin-top: -40px;
  margin-bottom: 40px;
  z-index: 99;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Optional left glow */
.admission-ticker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to right, rgba(181,0,0,1), rgba(181,0,0,0));
}

/* Optional right glow */
.admission-ticker::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to left, rgba(181,0,0,1), rgba(181,0,0,0));
}

/* =========================
   TICKER WRAPPER
========================= */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* =========================
   MOVING TRACK
========================= */
.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}

/* =========================
   TEXT ITEM
========================= */
.ticker-item {
  flex-shrink: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding-right: 120px;
  white-space: nowrap;
  line-height: 1.5;
}

.ticker-item strong {
  font-weight: 700;
}

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

  .admission-ticker {
    margin-top: 0;
  }

}

@media (max-width: 768px) {

  .admission-ticker {
    padding: 12px 0;
  }

  .ticker-item {
    font-size: 16px;
    padding-right: 70px;
  }

}

@media (max-width: 480px) {

  .ticker-item {
    font-size: 15px;
    padding-right: 50px;
  }

}






/* MAIN WRAPPER */
.admission-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* IMAGE STACK */
.admission-image-stack {
  position: relative;
  padding-right: 70px;
  padding-bottom: 80px;
}

.admission-image-stack img {
  width: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

/* MAIN IMAGE */
.main-image img {
  height: 500px;
  border: 6px solid #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* SMALL IMAGES */
.small-image {
  position: absolute;
  background: #fff;
  padding: 6px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.small-image img {
  border-radius: 14px;
}

.small-img-1 {
  width: 180px;
  bottom: 10px;
  left: -20px;
}

.small-img-2 {
  width: 200px;
  top: 40px;
  right: 0;
}

/* CONTENT */
.admission-content {
  padding-left: 20px;
}

.admission-tag {
  display: inline-block;
  background: var(--accent-red);
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.admission-content h3 {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 15px;
  line-height: 1.2;
}

.admission-content h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-black);
  margin-bottom: 25px;
  line-height: 1.5;
}

/* PDF LINK */
.lib-links {
  margin-bottom: 25px;
}

.lib-links a {
  display: inline-block;
  background: var(--primary-blue);
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.lib-links a:hover {
  background: var(--accent-red);
  color: #fff;
}

/* INFO BOX */
.admission-info {
  background: var(--bg-light);
  border-left: 5px solid var(--accent-red);
  padding: 22px 25px;
  border-radius: 12px;
}

.admission-info p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

.admission-info strong {
  color: var(--primary-blue);
  font-size: 20px;
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .admission-wrapper {
    padding: 25px;
  }

  .admission-image-stack {
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 40px;
  }

  .main-image img {
    height: auto;
  }

  .small-image {
    position: relative;
    width: 100%;
    margin-top: 20px;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .admission-content {
    padding-left: 0;
  }

  .admission-content h3 {
    font-size: 32px;
  }

  .admission-content h4 {
    font-size: 20px;
  }

}

@media (max-width: 576px) {

  .about22 {
    padding: 60px 0;
  }

  .admission-wrapper {
    border-radius: 18px;
    padding: 20px;
  }

  .admission-content h3 {
    font-size: 28px;
  }

  .admission-info p {
    font-size: 16px;
  }

}