/* PeopleSoft hero — keep dark-blue so white text is readable */
.ps-hero {
  background: linear-gradient(135deg, #052c65 0%, #0d6efd 50%, #6ea8fe 100%);
  padding: 140px 0 100px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ps-hero .ps-hero-visual {
  height: 400px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 40px rgba(3, 24, 51, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}
.ps-hero .ps-hero-visual img,
.ps-hero .ps-hero-visual svg {
  width: 100%;
  height: 100%;
  max-width: 340px;
  max-height: 340px;
  display: block;
}

@media (max-width: 991px) {
  .ps-hero .ps-hero-visual {
    height: 280px;
    margin-top: 2rem;
  }
}

.theme-dark .ps-hero {
  background: #111111 !important;
}
.theme-dark .ps-hero .ps-hero-visual {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nx-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #052c65, #0d6efd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #fff;
}
.nx-card-icon i,
.nx-card-icon .bx {
  font-family: boxicons !important;
  color: #ffffff !important;
  font-size: 1.85rem !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  display: inline-block !important;
  -webkit-font-smoothing: antialiased;
}
.nx-card-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-stats .stat-item:hover {
  transform: translateY(-5px);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@media (max-width: 768px) {
  .hero-stats { gap: 1rem !important; }
  .stat-item { min-width: 100px !important; }
  .stat-number { font-size: 2rem !important; }
  .stat-label { font-size: 0.8rem !important; }
}
