:root {
  --bg: #fff;
  --card-bg: #ffffff;
  --input-bg: #f0f2f7;
  --radius: 24px;
  --purple: #4f3cc9;
  --text: #1f2340;
  --muted: #6f6f7a;
  --shadow: rgba(31, 35, 64, 0.08);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.4;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header {
  background: #fff;
  padding: 0.4rem 0 0.1rem 0;
  border-bottom: 1px solid #e8e8ed;
  position: sticky;
  top: 0;
  z-index: 10;
}
.mt-5{
    margin-top:60px;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
  object-fit: contain;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav .login-link {
  color: #3366ff;
}

.hero {
  padding: 50px 0 140px;
  position: relative;
}

.signin-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 20px 40px -10px var(--shadow);
}

.signin-card h1 {
  margin: 0 0 6px;
  font-size: 2rem;
  font-weight: 600;
}

.subtitle {
  margin: 0 0 24px;
  font-size: 0.9rem;
  color: var(--muted);
}

.signin-form {
  display: flex;
  flex-direction: column;
  gap: 0 16px;
}

.field input {
  width: 100%;
  padding: 16px 18px;
  border: none;
  background: var(--input-bg);
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
  color: var(--text);
}

.misc {
  display: flex;
  justify-content: flex-start;
  font-size: 0.85rem;
}

.forgot {
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
}

.forgot:hover {
  text-decoration: underline;
}

.btn-primary {
  padding: 16px 0;
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: filter .2s;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.register-cta {
  margin-top: 14px;
  font-size: 0.9rem;
}

.register-cta a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
}

.register-cta a:hover {
  text-decoration: underline;
}

.site-footer {
  margin-top: 120px;
  background: #fff;
  padding: 60px 0 20px;
  font-size: 0.9rem;
  color: var(--text);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 20px;
}

.footer-col h3 {
  margin-top: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.branding .desc {
  margin: 10px 0 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.links ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.contact .contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 10px 0;
}

.contact .icon {
  font-size: 18px;
  line-height: 1;
}

.contact .text {
  font-size: 0.9rem;
  line-height: 1.3;
}

.footer-bottom {
  margin-top: 10px;
}

.footer-bottom hr {
  border: none;
  border-top: 1px solid #e8e8ed;
  margin: 0 0 8px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

footer p {
  margin: 0;
}

.footer-bottom .copyright {
  font-size: 0.75rem;
  color: #8f8f9c;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .signin-card {
    padding: 32px 30px;
  }
}

@media (max-width: 768px) {
  .nav ul {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .site-header .container {
    flex-wrap: wrap;
    gap: 15px;
  }

  .hero {
    padding: 60px 0 80px;
  }

  .signin-card {
    margin: 0 1rem;
  }
}

.credential-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 20px 40px -10px var(--shadow);
}

.credential-card h1 {
  margin: 0 0 6px;
  font-size: 2rem;
  font-weight: 600;
}

.credential-card .subtitle {
  margin: 0 0 24px;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.two {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.field input {
  width: 100%;
  padding: 16px 18px;
  border: none;
  background: var(--input-bg);
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
  color: var(--text);
  display: block;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
  align-items: center;
}

.btn-primary {
  flex: 1;
  padding: 16px 0;
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter .2s;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-secondary {
  flex: 1;
  padding: 16px 0;
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.btn-secondary:hover {
  background: var(--purple);
  color: #fff;
}

.skip-line {
  margin-top: 12px;
  font-size: 0.85rem;
  text-align: center;
}

.skip-line a {
  color: var(--purple);
  font-weight: 700;
  text-decoration: none;
}

.skip-line a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .credential-card {
    padding: 32px 24px;
  }
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 540px;
  width: 100%;
  box-shadow: 0 20px 40px -10px var(--shadow);
}

.card h1 {
  margin: 0 0 6px;
  font-size: 2rem;
  font-weight: 600;
}

.card .subtitle {
  margin: 0 0 24px;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.two {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.field input,
.field textarea {
  width: 100%;
  padding: 16px 18px;
  border: none;
  background: var(--input-bg);
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
  color: var(--text);
  display: block;
}

.skills-wrapper {
  position: relative;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 12px;
  background: var(--input-bg);
  border-radius: 12px;
  min-height: 52px;
}

.tag {
  background: #ece7fd;
  color: #4f3cc9;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tag .remove {
  cursor: pointer;
  font-weight: 700;
  margin-left: 4px;
}

.tag-input {
  border: none;
  background: transparent;
  outline: none;
  flex: 1;
  min-width: 100px;
  font-size: 1rem;
  padding: 4px 0;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
  align-items: center;
}

.btn-primary {
  flex: 1;
  padding: 16px 0;
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter .2s;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-secondary {
  flex: 1;
  padding: 16px 0;
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s;
  text-align: center;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--purple);
  color: #fff;
}

.skip-line {
  margin-top: 12px;
  font-size: 0.85rem;
  text-align: center;
}

.skip-line a {
  color: var(--purple);
  font-weight: 700;
  text-decoration: none;
}

.skip-line a:hover {
  text-decoration: underline;
}

@media (max-width:768px) {
  .card {
    padding: 32px 24px;
  }
}

.onboard-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 600px;
  margin: 60px auto;
  box-shadow: 0 20px 40px -10px rgba(31, 35, 64, 0.08);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.onboard-card h1 {
  margin: 0 0 6px;
  font-size: 2rem;
  font-weight: 600;
}

.subtitle {
  margin: 0 0 24px;
  font-size: 0.9rem;
  color: #6f6f7a;
}

.question {
  margin-bottom: 24px;
}

.question label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.question .note {
  font-size: 0.75rem;
  color: #555;
  margin-bottom: 4px;
}

.question input {
  width: 100%;
  padding: 16px 18px;
  border: none;
  border-radius: 12px;
  background: #f0f2f7;
  font-size: 1rem;
  outline: none;
  color: #1f2340;
  transition: box-shadow .2s;
}

.question input:focus {
  box-shadow: 0 0 0 3px rgba(79, 60, 201, 0.2);
}

.btn-submit {
  padding: 16px 0;
  background: #4f3cc9;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
  transition: filter .2s;
}

.btn-submit:hover {
  filter: brightness(1.05);
}

.resume-wrapper {
  max-width: 900px;
  width: 100%;
  text-align: center;
  padding: 60px 30px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 30px 60px -10px var(--shadow);
}

.title {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.1;
}

.subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 32px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 16px;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  min-width: 180px;
  transition: filter .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.upload-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
}

.upload-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 100%;
  background: var(--purple);
  opacity: 0.3;
  transition: opacity .2s;
}

.upload-link:hover::after {
  opacity: 1;
}

.upload-box {
  margin-top: 40px;
  border: 2px dashed var(--purple);
  border-radius: 12px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #faf8fe;
}

.upload-box p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.file-input-wrapper {
  position: relative;
  display: inline-block;
}

.file-input {
  opacity: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.upload-btn {
  background: white;
  border: 1px solid var(--purple);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  transition: background .2s, color .2s;
}

.upload-btn:hover {
  background: var(--purple);
  color: #fff;
}

.note {
  font-size: 0.75rem;
  color: #777;
  margin-top: 8px;
}

@media (max-width: 800px) {
  .title {
    font-size: 1.9rem;
  }

  .actions {
    flex-direction: column;
  }
}

.upload-page {
  padding: 80px 16px;
  display: flex;
  justify-content: center;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 40px -10px var(--shadow);
  text-align: center;
  position: relative;
}

.card h1 {
  margin: 0 0 6px;
  font-size: 2rem;
  font-weight: 600;
}

.subtitle {
  margin: 0 0 32px;
  font-size: 0.9rem;
  color: var(--muted);
}

.dropzone {
  border: 1px dashed #d0d0dc;
  border-radius: 8px;
  padding: 60px 20px;
  position: relative;
  cursor: pointer;
  transition: background .2s;
  background: #faf8fe;
  margin-bottom: 40px;
}

.dropzone.dragover {
  background: #f0ecfa;
}

.dropzone .label {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.dropzone small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  min-width: 180px;
  transition: filter .2s;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.hidden-input {
  display: none;
}

.file-info {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #1f2340;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.file-name {
  background: #eef0fb;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 500;
}

.remove-file {
  cursor: pointer;
  color: #d33;
  font-weight: 600;
}

.note {
  margin-top: 4px;
  font-size: 0.75rem;
  color: #777;
}

@media (max-width:768px) {
  .card {
    padding: 32px 24px;
  }

  .btn-primary {
    width: 100%;
  }
}

.preview-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 640px;
  margin: 80px auto;
  box-shadow: 0 30px 60px -10px var(--shadow);
  text-align: center;
  position: relative;
}

.preview-card h1 {
  margin: 0 0 6px;
  font-size: 2rem;
  font-weight: 600;
}

.subtitle {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.resume-wrapper {
  margin: 30px auto;
  width: 260px;
  height: 340px;
  border: 1px solid #e6e6ef;
  border-radius: 12px;
  background: #f7f5fc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.resume-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.placeholder {
  font-size: 50px;
  color: var(--purple);
}

.label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 4px;
}

.info {
  margin-top: 16px;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.view-link {
  color: var(--purple);
  font-weight: 600;
  text-decoration: none;
  margin-top: 6px;
}

.replace-btn {
  margin-top: 18px;
  background: var(--purple);
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 20px 40px -10px var(--shadow);
}

.card h1 {
  margin: 0 0 6px;
  font-size: 2rem;
  font-weight: 600;
}

.subtitle {
  margin: 0 0 24px;
  font-size: 0.9rem;
  color: var(--muted);
}

.positions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.position-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
}

.position-item input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--purple);
  cursor: pointer;
}

.btn-primary {
  padding: 16px 0;
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: filter .2s;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.wrapper {
  max-width: 1080px;
  margin: 60px auto;
  padding: 0 16px;
}

.header {
  margin-bottom: 24px;
}

.header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 40px 0;
}

.industry-card {
  position: relative;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: box-shadow .2s, transform .15s;
  min-height: 140px;
  text-decoration: none;
  color: inherit;
  border: 2px solid transparent;
}

.industry-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(31, 35, 64, 0.08);
}

.icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(79, 60, 201, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.icon-wrapper img {
  max-width: 24px;
  max-height: 24px;
  object-fit: contain;
}

.title {
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: auto;
}

.field label {
  margin-bottom: 8px;
  display: block;
}

.signin-card .subtitle {
  margin-bottom: 20px;
}

.field {
  margin-bottom: 18px;
}

.margin-auto {
  margin: 0 auto;
}

.dashboard {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 16px 120px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 18%;
      background: #f7f6fd;
    border-right: 1px solid #E0DCF9;
}
.main .content{
       width: 82%;
    overflow: auto;
    height: 100vh;
    padding-bottom: 150px;
}

.profile-card {
  background: var(--card);
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 15px 35px -5px var(--shadow);
}

.profile-header {
  display: flex;
  gap: 14px;
  align-items: center;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: #e6e6f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--purple);
  flex-shrink: 0;
}

.user-info h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.location {
  margin-top: 4px;
  font-size: 0.85rem;
  color: var(--muted);
}

.add-exp {
  margin-top: 12px;
  padding: 10px;
  border: 2px dashed #c8c8e5;
  border-radius: 8px;
  font-size: 0.9rem;
  display: inline-block;
  cursor: pointer;
  color: #444;
}

.nav-links {
  background: var(--card);
  border-radius: 16px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.nav-section-title {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.divider {
  height: 1px;
  background: #e8e8ed;
  margin: 10px 0;
}

.main {
  display: flex;
  gap: 24px;
}
.sidebar img{
    width: 25px;
}
.nav-links a{
    
}

.banner {
  background: linear-gradient(135deg, #5f45d3, #8f4ae7);
  border-radius: 12px;
  padding: 24px 20px;
  color: #fff;
  display: flex;
  gap: 30px;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 140px;
}

.banner .text {
  flex: 1;
}

.banner h1 {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.1;
}

.banner p {
  margin: 8px 0 0;
  font-size: 0.95rem;
}

.stars {
  margin-top: 6px;
  display: flex;
  gap: 4px;
  font-size: 16px;
}

.banner .image {
  flex-shrink: 0;
  width: 120px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner .image img {
  max-width: 100%;
  border-radius: 8px;
}

.jobs-card {
  background: var(--card);
  border-radius: 24px;
  padding: 24px 28px;
  box-shadow: 0 20px 40px -10px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.jobs-card h2 {
  margin: 0 0 4px;
  font-size: 1.5rem;
  font-weight: 600;
}

.jobs-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 12px;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.job-item {
  display: flex;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid #ececec;
  border-radius: 10px;
  align-items: flex-start;
  position: relative;
}

.job-logo {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 6px;
  background: #f0f0f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #555;
  overflow: hidden;
}

.job-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #1f2340;
  text-decoration: none;
}

.job-meta {
  font-size: 0.8rem;
  color: #555;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
  align-items: center;
}

.badge {
  background: #f3f0ff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.65rem;
  display: inline-block;
  color: #5f45d3;
  font-weight: 600;
  margin-right: 6px;
}

.easy-apply {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #eef7ff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.65rem;
  color: #2673ff;
  font-weight: 600;
}

.remove-btn {
  position: absolute;
  right: 12px;
  top: 12px;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #888;
  padding: 4px;
}

.show-all {
  margin-top: 8px;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  text-decoration: none;
}

.saved-label {
  margin-left: auto;
  font-size: 0.75rem;
  color: green;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .dashboard {
    grid-template-columns: 1fr;
  }

  .banner {
    flex-direction: column-reverse;
    gap: 16px;
  }

  .banner .image {
    margin: 0 auto;
  }
}

.nav-links a {
    display: flex;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 8px !important;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

.nav-links a:hover {
      color: #0054ab;
}
.logout_box{
     background: #efedfc;
    border-radius: 8px;
    padding: 4px 0; 
        position: absolute;
    bottom: 25px;
    width: 220px;
}
.nav-links a.active {
  background-color: #016ede;
  color: #fff;
  font-weight: 400;
}
.nav-links a.active img{
        filter: brightness(0) invert(1);
}
.logout-button {
  background: none;
  border: none;
  color: #c00;
  padding: 10px 15px;
  text-align: left;
  width: 100%;
  cursor: pointer;
  font-size: 1rem;
}

.logout-button:hover {
  background-color: #ffecec;
  color: #900;
}
.menu-item {
    position: relative;
}

.menu-item .dropdown-toggle {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 10px;
    color: #333;
    cursor: pointer;
}

.menu-item .arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
        position: absolute;
    right: 0px;
}

.menu-item.active .arrow {
    transform: rotate(180deg);
}

.submenu {
    display: none;
    list-style: none;
    padding-left: 20px;
    margin: 0;
}

.submenu li a {
    display: block;
    padding: 8px 10px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
}

.submenu li a:hover {
    background: #f0f0f0;
}