.st-homepage {
  background:
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
  overflow: hidden;
}

.st-homepage .section-title {
  max-width: 18ch;
}

.st-homepage .section-header .section-title,
.st-homepage .partners-header .section-title {
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.st-homepage .section-badge {
  position: relative;
  overflow: hidden;
  animation: stBadgeGlow 4.8s ease-in-out infinite;
}

.st-homepage .section-badge::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -70%;
  width: 38%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
  transform: skewX(-24deg);
  animation: stSheenSweep 6.2s ease-in-out infinite;
}

.st-btn-secondary,
.st-btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-full);
  font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--transition-normal);
}

.st-btn-secondary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--gray-200);
}

.st-btn-secondary:hover {
  border-color: var(--accent);
  color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.st-btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.st-btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.st-home-shortcuts {
  background: #fbfcff;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
  z-index: 900;
}

.st-home-shortcuts .container {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-top: 12px;
  padding-bottom: 12px;
}

.st-home-shortcuts a {
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  color: var(--gray-600);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.st-home-shortcuts a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.st-hero {
  min-height: 640px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  position: relative;
  overflow: hidden;
}

.st-top-banner-slider {
  min-height: 560px;
}

.st-top-banner-slider .st-banner-layout-compact {
  min-height: 560px;
  padding: 76px 0 78px;
}

.st-top-banner-slider .st-banner-content-compact h1 {
  max-width: 18ch;
  font-size: clamp(1.95rem, 4.2vw, 3.2rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0.2px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.22);
}

.st-top-banner-slider .st-banner-content-compact p {
  max-width: 64ch;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.72;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.st-top-banner-slider .hero-btns .btn {
  font-size: 0.9rem;
  font-weight: 600;
}

.st-top-banner-slider .slide::after {
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.12) 0%, rgba(var(--primary-rgb), 0.3) 45%, rgba(var(--primary-rgb), 0.58) 100%);
}

.st-hero .slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.st-hero .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.045);
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out, transform 6s ease-out;
  background-size: cover;
  background-position: center;
  will-change: transform, opacity;
}

.st-hero .slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.st-hero .slider-nav {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 10;
}

.st-hero .slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.st-hero .slider-dot span {
  position: absolute;
  inset: 0;
  width: 0;
  height: 100%;
  background: rgba(var(--accent-rgb), 0.95);
  border-radius: inherit;
  transform-origin: left center;
}

.st-hero .slider-dot:hover,
.st-hero .slider-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

.st-hero .slider-dot.active span {
  animation: dotProgress 5s linear forwards;
}

.st-hero .slide-content {
  max-width: none;
  width: 100%;
  padding: 0;
}

.st-hero .slide-content .container {
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.st-hero .slide::after {
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.14) 0%, rgba(var(--primary-rgb), 0.34) 44%, rgba(var(--primary-rgb), 0.62) 100%);
}

.st-banner-layout {
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  padding: 90px 0 86px;
}

.st-banner-content {
  max-width: 760px;
}

.st-banner-content .hero-badge {
  margin-bottom: 18px;
}

.st-banner-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1.12;
  margin-bottom: 14px;
  max-width: 13ch;
}

.st-banner-content p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  max-width: 58ch;
  margin-bottom: 28px;
  line-height: 1.8;
}

.st-hero .slide .st-banner-content-compact h1,
.st-hero .slide .st-banner-content-compact p,
.st-hero .slide .st-banner-content-compact .hero-btns {
  opacity: 0;
  transform: translateY(24px);
}

.st-hero .slide.active .st-banner-content-compact h1 {
  animation: stHeroContentIn 0.72s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.st-hero .slide.active .st-banner-content-compact p {
  animation: stHeroContentIn 0.72s cubic-bezier(0.2, 0.7, 0.2, 1) 0.14s forwards;
}

.st-hero .slide.active .st-banner-content-compact .hero-btns {
  animation: stHeroContentIn 0.72s cubic-bezier(0.2, 0.7, 0.2, 1) 0.24s forwards;
}

.st-hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 54px;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(var(--primary-rgb), 0.44);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(4px);
  animation: stScrollHint 2.7s ease-in-out infinite;
}

.st-hero-scroll-cue .st-scroll-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 rgba(var(--accent-rgb), 0.7);
  animation: stScrollDotPulse 2s ease-out infinite;
}

.st-hero-scroll-cue:hover {
  color: var(--white);
  background: rgba(var(--primary-rgb), 0.62);
}

.st-notice-strip {
  position: relative;
  z-index: 12;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.st-notice-shell {
  background: transparent;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  overflow: hidden; /* Hide the scrolling overflow */
}

.st-notice-title {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.85rem;
  background: var(--white); /* Ensure title stays layered above */
  z-index: 2;
  position: relative;
}

.st-notice-title i {
  color: var(--accent-dark);
}

.st-notice-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap; /* Force single line for slider */
  width: max-content;
  animation: noticeMarquee 25s linear infinite; /* Continuous sliding */
}

.st-notice-links:hover {
  animation-play-state: paused;
}

@keyframes noticeMarquee {
  0% { transform: translateX(50vw); }
  100% { transform: translateX(-100%); }
}

.st-notice-links a {
  white-space: nowrap;
  padding: 9px 14px;
  border-radius: var(--radius-full);
  background: var(--gray-50);
  color: var(--gray-600);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.5;
}

.st-notice-links a:hover {
  background: rgba(var(--accent-rgb), 0.16);
  color: var(--primary);
}

.st-welcome {
  padding-top: 96px;
}

.st-welcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 44px;
  align-items: center;
}

.st-welcome-copy {
  display: grid;
  gap: 18px;
}

.st-welcome-copy p {
  color: var(--gray-500);
  margin: 0;
}

.st-welcome-micro-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 2px;
}

.st-welcome-micro-stats span {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(170deg, #ffffff 0%, #f4f7ff 100%);
  border: 1px solid var(--gray-100);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--gray-500);
}

.st-welcome-micro-stats strong {
  color: var(--primary);
  font-size: 1.02rem;
  line-height: 1;
}

.st-welcome-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.st-welcome-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.st-fact-card {
  background: var(--white);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.st-fact-card strong {
  display: block;
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.st-fact-card span {
  color: var(--gray-500);
  font-size: 0.88rem;
  line-height: 1.6;
}

.st-welcome-visual {
  position: relative;
}

.st-hero-photo {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.35s ease;
  transform-style: preserve-3d;
}

.st-hero-photo::after {
  content: '';
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: -18px;
  height: 28px;
  background: rgba(var(--primary-rgb), 0.2);
  filter: blur(14px);
  border-radius: 999px;
  z-index: -1;
}

.st-hero-campus-image {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 8px solid var(--white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  animation: stCampusFloat 6.4s ease-in-out infinite;
}

.st-image-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: end;
}

.st-image-stack img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-xl);
}

.st-image-stack img:last-child {
  height: 300px;
}

.st-floating-card {
  position: absolute;
  left: 24px;
  bottom: -24px;
  background: var(--primary);
  color: var(--white);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow-xl);
}

.st-floating-card > span {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.st-floating-metrics {
  display: flex;
  gap: 18px;
  margin-top: 14px;
}

.st-floating-metrics strong {
  display: block;
  color: var(--accent);
  font-size: 1.3rem;
}

.st-floating-metrics small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
}

.st-highlights .widget-body {
  max-height: 470px;
}

.st-highlights .notice-widget .widget-body,
.st-highlights .principal-widget .widget-body {
  overflow: hidden;
}

.st-homepage .info-card-widget,
.st-homepage .st-program-card,
.st-homepage .st-campus-card,
.st-homepage .st-story-card,
.st-homepage .st-alumni-card,
.st-homepage .st-testimonial-card {
  position: relative;
  overflow: hidden;
}

.st-homepage .info-card-widget::after,
.st-homepage .st-program-card::after,
.st-homepage .st-campus-card::after,
.st-homepage .st-story-card::after,
.st-homepage .st-alumni-card::after,
.st-homepage .st-testimonial-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.3) 45%, transparent 72%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.st-homepage .info-card-widget:hover::after,
.st-homepage .st-program-card:hover::after,
.st-homepage .st-campus-card:hover::after,
.st-homepage .st-story-card:hover::after,
.st-homepage .st-alumni-card:hover::after,
.st-homepage .st-testimonial-card:hover::after {
  opacity: 1;
  transform: translateX(120%);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.notice-stream-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--primary);
}

.notice-stream-label i {
  color: var(--accent-dark);
}

.notice-scroll-viewport {
  position: relative;
  overflow: hidden;
  max-height: 372px;
  padding-right: 2px;
}

.notice-scroll-viewport.is-paused {
  cursor: ns-resize;
}

.notice-scroll-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.notice-scroll-track .notice-item {
  margin-bottom: 0;
}

.principal-slider {
  position: relative;
  min-height: 360px;
}

.principal-slide {
  display: none;
  animation: principalFadeIn 0.45s ease;
}

.principal-slide.active {
  display: block;
}

.principal-widget .widget-header h3 {
  max-width: calc(100% - 84px);
}

.principal-widget .widget-body p {
  margin-bottom: 14px;
}

@keyframes principalFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.st-highlights .achievement-slide {
  display: none;
}

.st-highlights .achievement-slide.active {
  display: block;
  animation: stFadeLift 0.5s ease;
}

.st-quote-points {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.st-quote-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-600);
  font-size: 0.88rem;
  font-weight: 600;
}

.st-quote-points i {
  color: var(--success);
}

.st-programs {
  position: relative;
}

.st-program-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.st-program-tab {
  padding: 12px 22px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.st-program-tab:hover,
.st-program-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.st-program-panel {
  display: none;
}

.st-program-panel.active {
  display: block;
}

.st-program-panel .st-program-card {
  opacity: 0;
  transform: translateY(18px);
}

.st-program-panel.active .st-program-card {
  animation: stProgramCardRise 0.56s ease forwards;
}

.st-program-panel.active .st-program-card:nth-child(1) { animation-delay: 0.04s; }
.st-program-panel.active .st-program-card:nth-child(2) { animation-delay: 0.1s; }
.st-program-panel.active .st-program-card:nth-child(3) { animation-delay: 0.16s; }
.st-program-panel.active .st-program-card:nth-child(4) { animation-delay: 0.22s; }
.st-program-panel.active .st-program-card:nth-child(5) { animation-delay: 0.28s; }
.st-program-panel.active .st-program-card:nth-child(6) { animation-delay: 0.34s; }

.st-program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.st-program-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.st-program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--accent-rgb), 0.45);
}

.st-program-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.st-program-card h3,
.st-campus-card h3,
.st-story-content h3,
.st-alumni-card h3 {
  font-family: var(--font-sans);
}

.st-program-card p,
.st-campus-card p,
.st-story-content p,
.st-alumni-card p {
  color: var(--gray-500);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 12px 0 0;
}

.st-program-card-cta {
  background: linear-gradient(160deg, var(--primary), var(--primary-light));
  color: var(--white);
}

.st-program-card-cta h3,
.st-program-card-cta p,
.st-program-card-cta a {
  color: var(--white);
}

.st-program-card-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 700;
}

.st-campus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.st-campus-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(var(--primary-rgb), 0.08);
  padding: 28px 24px;
  min-height: 220px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal);
}

.st-campus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, rgba(var(--accent-rgb), 0.15), #ffffff);
}

.st-campus-card:focus-visible,
.st-program-tab:focus-visible,
.st-hero .slider-dot:focus-visible,
.st-hero-scroll-cue:focus-visible,
.st-homepage .btn:focus-visible {
  outline: 3px solid rgba(var(--accent-rgb), 0.65);
  outline-offset: 3px;
}

.st-campus-icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: var(--primary);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.st-community-grid {
  display: grid;
  gap: 42px;
}

.st-block-header {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.st-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.st-story-card,
.st-alumni-card,
.st-testimonial-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(var(--primary-rgb), 0.06);
}

.st-story-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.st-story-content {
  padding: 22px;
}

.st-alumni-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.st-alumni-card {
  padding: 24px;
}

.st-testimonial-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.st-testimonial-controls {
  display: flex;
  gap: 10px;
}

.st-testimonial-controls button,
.widget-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  background: var(--white);
  color: var(--primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.st-testimonial-controls button:hover,
.widget-nav button:hover {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--primary);
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: stFadeLift 0.54s ease;
}

.st-testimonial-card {
  padding: 38px;
  position: relative;
}

.st-testimonial-card::before {
  content: '"';
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: rgba(var(--accent-rgb), 0.24);
  line-height: 1;
}

.st-testimonial-card p {
  position: relative;
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 70ch;
}

.st-testimonial-meta {
  margin-top: 24px;
}

.st-testimonial-meta strong {
  display: block;
  color: var(--primary);
  font-size: 1rem;
}

.st-testimonial-meta span {
  display: block;
  margin-top: 4px;
  color: var(--gray-400);
  font-size: 0.85rem;
}

.st-partners {
  background: var(--white);
}

.partners-board {
  border: 1px solid var(--gray-100);
  border-radius: 28px;
  padding: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: var(--shadow-sm);
}

.partners-header {
  text-align: center;
  margin-bottom: 20px;
}

.partners-header p {
  color: var(--gray-500);
}

.partners-marquee {
  border-top: 1px solid var(--gray-100);
  padding-top: 22px;
  overflow: hidden;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: recruitersMarquee 26s linear infinite;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

.partner-logo,
.partner-text-logo {
  flex-shrink: 0;
  box-sizing: border-box;
}

.partner-logo {
  width: 164px;
  height: 58px;
  object-fit: contain;
  object-position: center;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 8px 12px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.partner-text-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--primary);
  padding: 8px 12px;
  min-width: 164px;
  min-height: 58px;
  border-radius: 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  white-space: nowrap;
}


.partner-text-logo-tcs {
  color: #0d4685;
  background: linear-gradient(180deg, #f7fbff 0%, #eef4fc 100%);
  letter-spacing: 0.4px;
}

.partner-text-logo-fallback {
  font-size: 0.92rem;
  font-weight: 700;
}

.st-partners .partner-logo:hover,
.st-partners .partner-text-logo:hover {
  transform: none;
}

.partner-text-logo-upgrad {
  color: #d2362c;
}

.partner-text-logo-lnt {
  font-style: italic;
}

.partner-pill {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fce318;
  color: #111111;
  font-size: 0.75rem;
  font-weight: 800;
}

@keyframes recruitersMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.st-gallery-marquee {
  position: relative;
  overflow: hidden;
  padding: 12px 0 8px;
}

.st-gallery-marquee::before,
.st-gallery-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.st-gallery-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--gray-50) 0%, rgba(248, 249, 252, 0) 100%);
}

.st-gallery-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--gray-50) 0%, rgba(248, 249, 252, 0) 100%);
}

.st-gallery-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: max-content;
  animation: galleryMarquee 55s linear infinite;
  will-change: transform;
}

.st-gallery-marquee:hover .st-gallery-track,
.st-gallery-marquee:focus-within .st-gallery-track {
  animation-play-state: paused;
}

.st-gallery-item {
  flex: 0 0 clamp(240px, 24vw, 340px);
  width: clamp(240px, 24vw, 340px);
  height: clamp(190px, 22vw, 280px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

@keyframes galleryMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.st-gallery-footer {
  text-align: center;
  margin-top: 32px;
}

.st-cta {
  padding: 0 0 90px;
}

.st-cta-shell {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 32px;
  padding: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 28px;
  box-shadow: var(--shadow-xl);
}

.st-cta-shell h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.st-cta-shell p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 58ch;
}

.st-cta-shell .section-badge {
  background: rgba(var(--accent-rgb), 0.18);
  color: var(--accent);
}

.st-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@keyframes stHeroContentIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stProgramCardRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stFadeLift {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stCampusFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes stBadgeGlow {
  0%,
  100% {
    box-shadow: none;
  }

  50% {
    box-shadow: 0 8px 18px rgba(var(--accent-rgb), 0.2);
  }
}

@keyframes stSheenSweep {
  0%,
  45% {
    left: -70%;
    opacity: 0;
  }

  52% {
    opacity: 0.9;
  }

  70%,
  100% {
    left: 130%;
    opacity: 0;
  }
}

@keyframes stScrollHint {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-4px);
  }
}

@keyframes stScrollDotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.68);
  }

  100% {
    box-shadow: 0 0 0 12px rgba(var(--accent-rgb), 0);
  }
}

@media (max-width: 1200px) {
  .st-welcome-grid,
  .st-cta-shell {
    grid-template-columns: 1fr;
  }

  .st-program-grid,
  .st-campus-grid,
  .st-alumni-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .st-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .st-hero {
    min-height: 560px;
  }

  .st-hero-scroll-cue {
    bottom: 46px;
  }

  .st-top-banner-slider,
  .st-top-banner-slider .st-banner-layout-compact {
    min-height: 520px;
  }

  .st-banner-layout {
    min-height: 560px;
    padding: 78px 0 70px;
  }

  .st-welcome {
    padding-top: 90px;
  }

  .st-welcome-micro-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .st-image-stack {
    grid-template-columns: 1fr 1fr;
  }

  .st-image-stack img,
  .st-image-stack img:last-child {
    height: 280px;
  }

  .st-program-grid,
  .st-campus-grid,
  .st-story-grid,
  .st-alumni-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .st-testimonial-top {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .st-top-banner-slider,
  .st-top-banner-slider .st-banner-layout-compact {
    min-height: 470px;
  }

  .st-hero-scroll-cue {
    display: none;
  }

  .st-home-shortcuts .container {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .st-banner-layout {
    min-height: 500px;
    padding: 68px 0 64px;
  }

  .st-banner-content h1 {
    max-width: none;
  }

  .st-top-banner-slider .st-banner-content-compact h1 {
    font-size: clamp(1.45rem, 6vw, 2rem);
    line-height: 1.24;
  }

  .st-top-banner-slider .st-banner-content-compact p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .st-top-banner-slider .hero-btns .btn {
    font-size: 0.8rem;
  }

  .st-welcome-facts {
    grid-template-columns: 1fr;
  }

  .st-welcome-micro-stats {
    grid-template-columns: 1fr;
  }

  .st-hero-campus-image {
    height: 430px;
  }

  .st-notice-shell,
  .st-notice-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .st-notice-links {
    animation: none;
    width: 100%;
    gap: 10px;
  }

  .st-notice-links a {
    white-space: normal;
    width: 100%;
  }

  .st-notice-shell {
    gap: 14px;
  }

  .notice-scroll-viewport {
    max-height: 332px;
  }

  .principal-slider {
    min-height: 330px;
  }

  .partners-board {
    padding: 24px;
  }

  .partners-track {
    gap: 12px;
    animation-duration: 22s;
  }

  .partner-logo {
    width: 132px;
    height: 48px;
    padding: 6px 10px;
  }

  .partner-text-logo {
    font-size: 0.9rem;
    min-width: 132px;
    min-height: 48px;
    padding: 7px 10px;
  }

  .partner-pill {
    width: 26px;
    height: 26px;
    font-size: 0.68rem;
  }

  .st-floating-card {
    position: static;
    margin-top: 18px;
  }

  .st-gallery-track {
    animation-duration: 48s;
  }

  .st-gallery-item {
    flex-basis: clamp(220px, 42vw, 300px);
    width: clamp(220px, 42vw, 300px);
    height: 220px;
  }

  .st-testimonial-card,
  .st-cta-shell {
    padding: 28px;
  }

  .st-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .st-testimonial-card,
  .st-program-card,
  .st-campus-card,
  .st-alumni-card {
    padding: 22px;
  }

  .st-hero-campus-image {
    height: 320px;
  }

  .st-image-stack {
    grid-template-columns: 1fr;
  }

  .st-image-stack img,
  .st-image-stack img:last-child {
    height: 240px;
  }

  .st-gallery-marquee::before,
  .st-gallery-marquee::after {
    width: 40px;
  }

  .st-gallery-track {
    gap: 12px;
    animation-duration: 42s;
  }

  .st-gallery-item {
    flex-basis: 78vw;
    width: 78vw;
    height: 210px;
  }

  .st-testimonial-card::before {
    right: 18px;
    top: 16px;
    font-size: 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .st-gallery-track {
    animation: none;
    transform: none;
  }

  .st-homepage .slide,
  .st-homepage .slide *,
  .st-homepage .section-badge,
  .st-homepage .section-badge::after,
  .st-homepage .st-hero-scroll-cue,
  .st-homepage .st-hero-scroll-cue .st-scroll-dot,
  .st-homepage .st-hero-campus-image,
  .st-homepage .st-program-card,
  .st-homepage .achievement-slide,
  .st-homepage .testimonial-slide {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
