:root {
  --dark: #111827;
  --dark-soft: #1f2937;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --text-muted: #6b7280;
  --bg-soft: #f3f4f6;
}

body {
  background: var(--bg-soft);
  color: var(--dark);
  font-family: 'Inter', sans-serif;
}

.navbar {
  background: rgba(17, 24, 39, 0.96) !important;
  backdrop-filter: blur(10px);
}

.navbar-brand {
  letter-spacing: -0.03em;
  font-weight: bold;
}

.hero-modern {
    position: relative;
    overflow: hidden;
    
    color: white;

    background:
      radial-gradient(circle at top right, rgba(37, 99, 235, 0.25), transparent 35%),
      linear-gradient(135deg, #111827 0%, #1f2937 55%, #0f172a 100%);

    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-modern::after {
    content: "";

    position: absolute;

    top: 50%;
    right: -120px;

    transform: translateY(-50%);

    width: 700px;
    height: 700px;

    background-image: url('/images/logo.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.07;

    z-index: 1;

    pointer-events: none;
}

.hero-pill {
  display: inline-block;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.45);
  color: #bfdbfe;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.hero-subtitle {
  color: #d1d5db;
  max-width: 720px;
}

.modern-card {
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modern-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.14);
}

.modern-panel {
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 30%),
    white;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.btn-primary {
  background: var(--blue);
  border-color: var(--blue);
}

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

footer {
  margin-top: 60px;
}
.min-vh-75 {
    min-height: 75vh;
}

.icon-circle {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(37, 99, 235, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.4rem;
}

.card {
    overflow: hidden;
}

.nav-link {
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #60a5fa !important;
}

.hero-modern {
    padding-top: 40px;
    padding-bottom: 40px;
}

.btn {
    border-radius: 12px;
    font-weight: 600;
}

h1, h2, h3, h4, h5 {
    letter-spacing: -0.03em;
}
.navbar-brand img {
    border-radius: 9px;
}
.navbar {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar-brand span {
    font-weight: 700;
    font-size: 1.05rem;
}

.nav-link {
    font-weight: 500;
    margin-left: 10px;
}

.nav-link.active {
    color: #60a5fa !important;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}
.hero-modern {
    position: relative;
    overflow: hidden;
}

.hero-modern::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);

    background-size: 42px 42px;

    mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
}
.hero-modern .container {
    position: relative;
    z-index: 2;
}
.profile-image {
    width: 100%;
    max-width: 320px;

    border-radius: 28px;

    border: 1px solid rgba(255,255,255,0.12);

    object-fit: cover;

    box-shadow:
      0 20px 45px rgba(15, 23, 42, 0.20);

    transition: transform 0.25s ease;
}

.profile-image:hover {
    transform: translateY(-4px);
}
.credential-logo {
    max-width: 150px;
    height: auto;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.profile-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
}
