/* ventures.css */
.page-hero {
  padding-top: calc(var(--header-h) + 60px);
  background: var(--clr-deep-blue);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.venture-stat-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-smooth);
}

.venture-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(102,169,191,0.3);
}

.venture-stat-card i { font-size: 2rem; display: block; margin-bottom: 12px; }
.venture-stat-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 6px;
}
.venture-stat-card p { color: var(--clr-muted); font-size: 0.9rem; margin: 0; }

.venture-feature { padding: 48px 0; }
.venture-divider {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 0;
}

.venture-feature__visual {
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.venture-feature__visual--lawsava {
  background: linear-gradient(135deg, rgba(8,16,101,0.8), rgba(26,47,168,0.4));
  border: 1px solid rgba(102,169,191,0.2);
}

.venture-feature__visual--saviliate {
  background: linear-gradient(135deg, rgba(139,16,16,0.6), rgba(221,51,51,0.3));
  border: 1px solid rgba(221,51,51,0.2);
}

.venture-feature__visual--medichaven {
  background: linear-gradient(135deg, rgba(11,85,99,0.6), rgba(102,169,191,0.3));
  border: 1px solid rgba(102,169,191,0.2);
}

.venture-feature__logo {
  width: 80px; height: 80px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: white;
}

.venture-feature__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
}

.venture-feature__tags { display: flex; flex-wrap: wrap; gap: 8px; }

.alumni-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition-smooth);
  height: 100%;
}

.alumni-card:hover {
  transform: translateY(-4px);
  border-color: rgba(102,169,191,0.2);
}

.alumni-card__logo {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--clr-muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.alumni-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 8px;
}

.alumni-card p {
  font-size: 0.875rem;
  color: var(--clr-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.badge-alumni {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--clr-border);
  padding: 4px 10px;
  border-radius: 100px;
}
