:root {
  --primary: #2563eb;
  --primary-soft: #eff6ff;
  --accent: #10b981;
  --bg: #f9fafb;
  --text: #111827;
  --muted: #6b7280;
  --card-bg: #ffffff;
  --border-subtle: #e5e7eb;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius-xl: 18px;
  --radius-full: 999px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe 0, #f9fafb 40%);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Layout */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(249, 250, 251, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: conic-gradient(
    from 160deg,
    #2563eb,
    #0ea5e9,
    #10b981,
    #2563eb
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-text span:first-child {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1rem;
}

.brand-text span:last-child {
  font-size: 0.76rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #10b981);
  transition: width 0.18s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

/* Hero */
.hero {
  padding: 3rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 2.6fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(219, 234, 254, 0.9);
  color: #1d4ed8;
  border: 1px solid rgba(191, 219, 254, 0.9);
  margin-bottom: 0.85rem;
}

.hero-badge span {
  padding: 0.16rem 0.55rem;
  border-radius: var(--radius-full);
  background: #1d4ed8;
  color: #eff6ff;
  font-weight: 600;
  font-size: 0.7rem;
}

.hero-title {
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
  color: #0f172a;
}

.hero-title span {
  background: linear-gradient(120deg, #2563eb, #0ea5e9, #10b981);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.96rem;
  max-width: 32rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 500;
  transition: transform 0.1s ease, box-shadow 0.15s ease,
    background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.48);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(148, 163, 184, 0.4);
  color: #0f172a;
}

.btn-outline:hover {
  background: #e5f0ff;
  border-color: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(148, 163, 184, 0.35);
}

.hero-footnote {
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-footnote span {
  font-weight: 600;
  color: #0f172a;
}

/* Hero - Right Card */
.hero-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 1.5rem;
  padding: 1.4rem 1.3rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(226, 232, 240, 0.9);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top left,
      rgba(59, 130, 246, 0.14),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(16, 185, 129, 0.15),
      transparent 55%
    );
  opacity: 0.9;
  pointer-events: none;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
}

.hero-card-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.hero-card-chip {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
}

.hero-card-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  font-size: 0.78rem;
}

.hero-pill {
  border-radius: 1rem;
  padding: 0.45rem 0.6rem;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-pill-label {
  font-size: 0.7rem;
  color: var(--muted);
}

.hero-pill-value {
  font-weight: 600;
  font-size: 0.85rem;
}

.hero-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  margin-top: 0.1rem;
  color: #16a34a;
}

.hero-mini {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  font-size: 0.76rem;
}

.hero-mini span {
  color: var(--muted);
}

.hero-mini strong {
  color: #0f172a;
}

/* Services */
.section {
  padding: 1.2rem 0 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 1.6rem;
}

.section-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 0.2rem;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 32rem;
  margin: 0 auto;
}

.services-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 1rem 0.95rem 1.1rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    border-color 0.12s ease, background 0.12s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  border-color: rgba(59, 130, 246, 0.5);
  background: radial-gradient(circle at top left, #eff6ff 0, #ffffff 55%);
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.1rem;
}

.icon-job {
  background: rgba(37, 99, 235, 0.12);
}

.icon-talent {
  background: rgba(249, 115, 22, 0.12);
}

.icon-yojana {
  background: rgba(34, 197, 94, 0.12);
}

.icon-ai {
  background: rgba(147, 51, 234, 0.12);
}

.service-title {
  font-size: 0.98rem;
  font-weight: 600;
}

.service-desc {
  font-size: 0.82rem;
  color: var(--muted);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.2rem;
}

.tag-pill {
  font-size: 0.7rem;
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: #1d4ed8;
  white-space: nowrap;
}

.service-footer-link {
  margin-top: auto;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #2563eb;
  font-weight: 500;
}

/* Small CTA section */
.cta-section {
  padding: 0.5rem 0 2.5rem;
}

.cta-box {
  border-radius: 1.5rem;
  padding: 1.2rem 1.2rem;
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9, #22c55e);
  color: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.45);
  flex-wrap: wrap;
}

.cta-text-main {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.cta-text-sub {
  font-size: 0.82rem;
  opacity: 0.92;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.btn-ghost-light {
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(239, 246, 255, 0.85);
  background: rgba(15, 23, 42, 0.12);
  color: #eff6ff;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.btn-ghost-light:hover {
  background: rgba(15, 23, 42, 0.22);
}

/* Footer */
footer {
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  padding: 1rem 0 1.2rem;
  font-size: 0.78rem;
  color: var(--muted);
  background: rgba(248, 250, 252, 0.95);
  margin-top: auto;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: #2563eb;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.4rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding: 2.2rem 0 2.6rem;
  }

  .cta-box {
    padding: 1rem 1rem;
  }
}
