.premium-job-sectors {
  --brand-blue: #006D9F;
  --brand-dark: #0f172a;
  --brand-border: #e2e8f0;
  width: 100%;
  text-align: center;
}

.premium-job-sectors .section-badge {
  display: inline-block;
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--brand-blue);
  margin-bottom: 16px;
  background: rgba(0, 109, 159, 0.06);
  padding: 5px 14px;
  border-radius: 100px;
}

.premium-job-sectors h2.section-title {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-dark);
  margin: 0 0 40px 0;
  letter-spacing: -0.5px;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.sector-card {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  background: #ffffff;
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  padding: 24px 28px;
  box-sizing: border-box;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.sector-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-blue);
  background-color: #ffffff;
  box-shadow: 
    0 20px 40px -12px rgba(0, 109, 159, 0.08),
    0 0 1px 1px rgba(0, 109, 159, 0.1);
}

.sector-card .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(0, 109, 159, 0.05);
  border-radius: 12px;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--brand-blue);
}

.sector-card .icon-wrapper svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: transform 0.4s ease;
}

.sector-card:hover .icon-wrapper {
  background: var(--brand-blue);
  color: #ffffff;
}
.sector-card:hover .icon-wrapper svg {
  transform: scale(1.05);
}

.sector-card .sector-name {
  font-family: 'Mulish', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-dark);
  text-align: left;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.sector-card:hover .sector-name {
  color: var(--brand-blue);
}