:root {
  --primary: #0d6efd;
  --primary-dark: #0b5ed7;
  --hero-gradient-start: #0d6efd;
  --hero-gradient-end: #6610f2;
  --text-dark: #1f2933;
  --text-muted: #64748b;
  --card-border: rgba(15, 23, 42, 0.08);
  --card-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  --transition: all 0.2s ease-in-out;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  background-color: #f8fafc;
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar-brand span {
  letter-spacing: 0.03em;
}

.hero-section {
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.92), rgba(102, 16, 242, 0.9));
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 50%);
  opacity: 0.8;
  pointer-events: none;
}

.hero-section .feature-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--card-shadow);
}

.hero-section .feature-card p {
  color: var(--text-muted) !important;
}

.info-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--card-border);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transition: var(--transition);
  text-align: center;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin: 0 auto 1.25rem;
}

.info-card h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.info-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.admission-info-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
  border: 1px solid var(--card-border);
}

.step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.12), rgba(102, 16, 242, 0.12));
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.2rem;
}

.support-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.25rem 2rem;
  border: 1px solid var(--card-border);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  transition: var(--transition);
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.support-card h5 {
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.support-card p {
  color: var(--text-muted);
}

footer a {
  color: inherit;
}

@media (max-width: 767px) {
  .hero-section {
    padding: 3.5rem 0 3rem;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .hero-section .badge {
    font-size: 0.75rem;
  }

  .info-card,
  .support-card {
    padding: 1.75rem 1.5rem;
  }
}