.portal-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('/work65-homepage-banner-img');
  background-size: cover;
  background-position: center;
}
.portal-hero-content {
  width: 100%;
  color: #fff;
  padding: 56px 8%;
  background: linear-gradient(90deg,
      rgba(35,25,95,0.92) 0%,
      rgba(35,25,95,0.70) 45%,
      rgba(35,25,95,0.05) 80%);
}
.portal-hero-title {
  text-align: left;
  font-weight: 700;
  line-height: 1.1;
  font-size: clamp(1.9rem, 4vw, 3rem);
  max-width: 20ch;
  margin: 0 0 14px;
}
.portal-hero-sub { font-size: 1.1rem; opacity: .92; max-width: 46ch; margin: 0 0 26px; }
.portal-hero-sub p { text-align: left !important; margin: 0; }
.portal-hero-btn {
  display: inline-block;
  background: #5b4df0;
  color: #fff !important;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.portal-hero-btn:hover { background: #4a3dd6; transform: translateY(-2px); text-decoration: none; }

/* Cards */
.portal-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  height: 100%;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0,0,0,.07);
  transition: transform .2s ease, box-shadow .2s ease;
}
.portal-card:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(0,0,0,.12); }
.portal-card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: #ECE9FD;
  margin-bottom: 18px;
}
.portal-card-icon i { font-size: 22px; color: #5b4df0; }
.portal-card h4 { color: #1f2430; font-weight: 600; margin-bottom: 10px; }
.portal-card p { color: #5b5b66; margin: 0; }

/* Mobile */
@media (max-width: 767px) {
  .portal-hero-content { background: rgba(35,25,95,0.85); padding: 40px 24px; }
  .portal-card { margin-bottom: 20px; }
}