

 
    :root {
      --red: #FC253F;
      --red-dark: #c41c32;
      --red-light: #fff0f2;
      --navy: #19326A;
      --navy-dark: #0f1e3e;
      --navy-light: #eef2ff;
      --surface: #ffffff;
      --bg: #f4f6fb;
      --border: rgba(0,0,0,0.07);
      --text: #0f172a;
      --muted: #64748b;
      --card-shadow: 0 2px 20px rgba(0,0,0,0.06);
      --card-shadow-hover: 0 8px 40px rgba(0,0,0,0.13);
    }

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

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
    }

    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #f1f1f1; }
    ::-webkit-scrollbar-thumb { background: #c7d2e8; border-radius: 10px; }

    /* ===== NAVBAR ===== */
    .navbar-custom {
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 1px 12px rgba(0,0,0,0.06);
    }

    .navbar-inner {
      height: 62px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .navbar-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .navbar-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-box {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--navy) 0%, #2b4a9a 100%);
      color: #fff;
      font-weight: 900;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      text-decoration: none;
      letter-spacing: -0.5px;
      box-shadow: 0 3px 10px rgba(25,50,106,0.3);
      flex-shrink: 0;
    }

    .brand-name {
      font-size: 16px;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.5px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-left: 8px;
    }

    .nav-link-custom {
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: 0.08em;
      text-decoration: none;
      padding: 6px 12px;
      border-radius: 8px;
      transition: all 0.2s;
      text-transform: uppercase;
    }

    .nav-link-custom:hover { color: var(--navy); background: var(--navy-light); }
    .nav-link-custom.active { color: var(--red); background: var(--red-light); }

    .search-box {
      border: 1.5px solid #e2e8f0;
      border-radius: 50px;
      padding: 7px 16px;
      background: #f8fafc;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.2s;
    }
    .logo-box1 img{
    width: 75%;
    }
    .search-box:focus-within {
      border-color: var(--red);
      background: #fff;
      box-shadow: 0 0 0 3px rgba(252,37,63,0.08);
    }

    .search-box input {
      border: none;
      background: transparent;
      outline: none;
      font-size: 13px;
      width: 140px;
      color: var(--text);
      font-family: 'Inter', sans-serif;
    }

    .search-box input::placeholder { color: #94a3b8; }

    .search-icon { color: #94a3b8; font-size: 13px; }

    .bell-icon {
      font-size: 17px;
      color: #94a3b8;
      cursor: pointer;
    }

    .btn-post-job {
      background: linear-gradient(135deg, var(--red) 0%, #e8192f 100%);
      color: #fff;
      font-weight: 700;
      font-size: 12px;
      border-radius: 50px;
      padding: 9px 20px;
      border: none;
      transition: all 0.25s;
      white-space: nowrap;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      box-shadow: 0 3px 12px rgba(252,37,63,0.3);
      cursor: pointer;
    }

    .btn-post-job:hover {
      background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(252,37,63,0.38);
    }

    .mobile-menu-btn {
      color: #334155;
      background: none;
      border: none;
      padding: 4px;
      cursor: pointer;
      line-height: 1;
    }

    /* ===== AVATAR & PROFILE DROPDOWN ===== */
    .avatar-circle {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--navy) 0%, #2b4a9a 100%);
      color: #fff;
      font-weight: 800;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
      position: relative;
      user-select: none;
      box-shadow: 0 2px 10px rgba(25,50,106,0.3);
      transition: transform 0.2s;
    }

    .avatar-circle:hover { transform: scale(1.08); }

    .profile-dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 12px);
      right: 0;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.16);
      min-width: 300px;
      z-index: 2000;
      overflow: hidden;
      animation: dropdownFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .profile-dropdown.show { display: block; }

    @keyframes dropdownFadeIn {
      from { opacity: 0; transform: translateY(-10px) scale(0.97); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }

    .profile-header {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 20px;
      background: linear-gradient(135deg, var(--navy) 0%, #2b4a9a 100%);
    }

    .profile-avatar-lg {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      color: #fff;
      font-weight: 800;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border: 2px solid rgba(255,255,255,0.4);
    }

    .profile-info { min-width: 0; }

    .profile-name {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .profile-meta {
      font-size: 11px;
      color: rgba(255,255,255,0.7);
      margin-top: 1px;
    }

    .dropdown-menu-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding: 10px;
      gap: 2px;
    }

    .dropdown-item-custom {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 10px 12px;
      border-radius: 10px;
      font-size: 12px;
      font-weight: 600;
      color: var(--text);
      text-decoration: none;
      cursor: pointer;
      transition: all 0.15s;
      letter-spacing: 0.04em;
      border: none;
      background: none;
      width: 100%;
      text-align: left;
      text-transform: uppercase;
    }

    .dropdown-item-custom .item-icon { opacity: 0.5; }
    .dropdown-item-custom:hover { background: var(--red-light); color: var(--red); }
    .dropdown-item-custom.sign-out { color: var(--red); }
    .dropdown-item-custom.sign-out:hover { background: var(--red-light); color: var(--red-dark); }

    .badge-new {
      background: linear-gradient(135deg, #22c55e, #16a34a);
      color: #fff;
      font-size: 9px;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 4px;
      margin-left: 4px;
      letter-spacing: 0.02em;
    }

    /* ===== MOBILE MENU ===== */
    .mobile-menu {
      display: none;
      border-top: 1px solid #f1f5f9;
      padding: 12px 0;
    }

    .mobile-menu-link {
      display: block;
      padding: 8px 12px;
      text-decoration: none;
      font-weight: 600;
      color: #64748b;
      font-size: 13px;
      border-radius: 10px;
      transition: all 0.2s;
    }

    .mobile-menu-link.active {
      color: var(--red);
      background: var(--red-light);
    }

    .mobile-menu-link-flex {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .mobile-search {
      margin-top: 12px;
    }

    /* ===== ALERT BANNER ===== */
    .alert-banner {
      background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
      border-bottom: 1px solid #fde68a;
      padding: 12px 20px;
    }

    .alert-banner-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .alert-banner-text {
      font-size: 14px;
      font-weight: 600;
      color: #78350f;
      margin: 0;
    }

    .alert-banner-text span {
      font-weight: 400;
      color: #92400e;
    }

    .alert-icon { color: #f59e0b; margin-right: 8px; }

    .btn-deal {
      background: linear-gradient(135deg, #f59e0b, #d97706);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 8px 18px;
      border: none;
      border-radius: 50px;
      transition: all 0.2s;
      white-space: nowrap;
      box-shadow: 0 2px 8px rgba(245,158,11,0.3);
      letter-spacing: 0.02em;
      cursor: pointer;
    }

    .btn-deal:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(245,158,11,0.4); }

    /* ===== PLAN STATUS BAR ===== */
    .plan-status-bar {
      background: linear-gradient(135deg, #fff0f2 0%, #ffe4e8 100%);
      border-bottom: 1px solid rgba(252,37,63,0.12);
      padding: 12px 20px;
    }

    .plan-status-inner {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .plan-badge {
      font-size: 13px;
      font-weight: 800;
      color: var(--red);
      letter-spacing: 0.02em;
    }

    .stat-label {
      font-size: 10px;
      font-weight: 500;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .stat-value {
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
    }

    .stat-value.text-red { color: var(--red); }

    .divider-v {
      width: 1px;
      height: 28px;
      background: rgba(252,37,63,0.15);
    }

    .city-info-icon {
      font-size: 12px;
      opacity: 0.6;
    }

    .progress-bar-custom {
      height: 5px;
      background: rgba(252,37,63,0.15);
      border-radius: 99px;
      overflow: hidden;
      margin-top: 10px;
    }

    .progress-bar-custom .fill {
      height: 100%;
      background: linear-gradient(90deg, var(--red), #ff6b7a);
      border-radius: 99px;
      width: 20%;
      box-shadow: 0 0 8px rgba(252,37,63,0.4);
    }

    /* ===== PRICING SECTION ===== */
    .pricing-section-header {
      text-align: center;
      padding: 40px 16px 12px;
    }

    .pricing-section-title {
      font-size: 28px;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.5px;
    }

    .pricing-section-sub {
      font-size: 15px;
      color: var(--muted);
      margin-top: 6px;
    }

    /* ===== TAB SWITCHER ===== */
    .hire-tabs {
      display: flex;
      justify-content: center;
      margin: 20px 0 32px;
    }

    .tab-switcher-bg {
      background: #fff;
      border-radius: 50px;
      padding: 5px;
      border: 1.5px solid #e2e8f0;
      display: inline-flex;
      gap: 4px;
      box-shadow: var(--card-shadow);
    }

    .tab-btn {
      padding: 10px 36px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 700;
      border: none;
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
      letter-spacing: 0.02em;
    }

    .tab-btn.active {
      background: linear-gradient(135deg, var(--red), #e8192f);
      color: #fff;
      box-shadow: 0 4px 14px rgba(252,37,63,0.35);
    }

    .tab-btn:hover:not(.active) { color: var(--red); }

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

    .save-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, #f59e0b, #d97706);
      color: #fff;
      font-size: 9px;
      font-weight: 800;
      padding: 2px 10px;
      border-radius: 99px;
      white-space: nowrap;
      pointer-events: none;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      box-shadow: 0 2px 6px rgba(245,158,11,0.35);
    }

    /* ===== PRICING CARDS ===== */
    .pricing-cards-row {
      padding-bottom: 16px;
    }

    .pricing-card {
      background: var(--surface);
      border: 1.5px solid var(--border);
      border-radius: 20px;
      padding: 24px 22px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      height: 100%;
      box-shadow: var(--card-shadow);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
    }

    .pricing-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: transparent;
      transition: background 0.3s;
    }

    .pricing-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--card-shadow-hover);
      border-color: rgba(0,0,0,0.1);
    }

    .pricing-card.card-featured {
      border-color: var(--red);
      border-width: 2px;
    }

    .pricing-card.card-featured::before {
      background: linear-gradient(90deg, var(--red), #ff6b7a);
    }

    .pricing-card.card-green {
      border-color: #059669;
      border-width: 2px;
    }

    .pricing-card.card-green::before {
      background: linear-gradient(90deg, #059669, #34d399);
    }

    .pricing-card.card-topup {
      border-color: rgba(25,50,106,0.25);
      border-width: 2px;
    }

    .pricing-card.card-topup::before {
      background: linear-gradient(90deg, var(--navy), #2b4a9a);
    }

    .card-title {
      font-size: 15px;
      font-weight: 800;
      letter-spacing: -0.2px;
    }

    .card-title.red { color: var(--red); }
    .card-title.green { color: #059669; }
    .card-title.navy { color: var(--navy); }
    .card-title.gray { color: #475569; }

    .card-subtitle {
      font-size: 12px;
      color: var(--muted);
      margin-top: 3px;
      font-weight: 400;
    }

    .card-title-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 2px;
    }

    .price-row {
      display: flex;
      align-items: baseline;
      gap: 8px;
      flex-wrap: wrap;
    }

    .price-main {
      font-size: 30px;
      font-weight: 900;
      color: var(--text);
      letter-spacing: -1px;
    }

    .badge-month {
      font-size: 11px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 99px;
    }

    .badge-month.gray { background: #f1f5f9; color: #64748b; }
    .badge-month.red { background: var(--red-light); color: var(--red); }
    .badge-month.teal { background: #ecfdf5; color: #059669; }

    .badge-best {
      background: linear-gradient(135deg, #f59e0b, #d97706);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 99px;
      letter-spacing: 0.04em;
      box-shadow: 0 2px 6px rgba(245,158,11,0.3);
    }

    .badge-topup-label {
      font-size: 11px;
      color: var(--muted);
      margin-bottom: 4px;
      font-weight: 500;
    }

    .btn-unavailable {
      background: #f1f5f9;
      color: #94a3b8;
      font-size: 13px;
      font-weight: 600;
      border: none;
      border-radius: 12px;
      padding: 12px;
      width: 100%;
      cursor: not-allowed;
      letter-spacing: 0.02em;
    }

    .btn-upgrade-red {
      background: linear-gradient(135deg, var(--red), #e8192f);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      border: none;
      border-radius: 12px;
      padding: 12px;
      width: 100%;
      transition: all 0.25s;
      box-shadow: 0 4px 14px rgba(252,37,63,0.3);
      letter-spacing: 0.02em;
      cursor: pointer;
    }

    .btn-upgrade-red:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(252,37,63,0.4);
    }

    .btn-upgrade-navy {
      background: linear-gradient(135deg, var(--navy), #2b4a9a);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      border: none;
      border-radius: 12px;
      padding: 12px;
      width: 100%;
      transition: all 0.25s;
      box-shadow: 0 4px 14px rgba(25,50,106,0.3);
      letter-spacing: 0.02em;
      cursor: pointer;
    }

    .btn-upgrade-navy:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(25,50,106,0.4);
    }

    .btn-buy-now {
      background: linear-gradient(135deg, var(--navy), #2b4a9a);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      border: none;
      border-radius: 12px;
      padding: 12px;
      width: 100%;
      transition: all 0.25s;
      box-shadow: 0 4px 14px rgba(25,50,106,0.3);
      letter-spacing: 0.02em;
      cursor: pointer;
    }

    .btn-buy-now:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(25,50,106,0.4);
    }

    .feature-divider {
      border-top: 1px solid #f1f5f9;
      padding-top: 14px;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      padding: 5px 0;
    }

    .feature-check {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .feature-check.check-red { background: linear-gradient(135deg, var(--red), #e8192f); }
    .feature-check.check-navy { background: linear-gradient(135deg, var(--navy), #2b4a9a); }
    .feature-check.check-green { background: linear-gradient(135deg, #22c55e, #16a34a); }
    .feature-check.check-gray { background: #e2e8f0; }
    .feature-check i { font-size: 10px; color: #fff; }

    .feature-text {
      font-size: 12.5px;
      line-height: 1.5;
      flex: 1;
      font-weight: 400;
    }

    .feature-text.disabled { color: #94a3b8; }
    .feature-text.enabled { color: #334155; }

    .feature-info {
      color: #cbd5e1;
      font-size: 12px;
      cursor: pointer;
      flex-shrink: 0;
      margin-top: 2px;
      transition: color 0.2s;
    }

    .feature-info:hover { color: #64748b; }

    /* ===== CONTACT SECTION ===== */
    .contact-section {
      padding: 28px 16px;
      background: var(--bg);
    }

    .contact-section-inner {
      max-width: 1300px;
      margin: 0 auto;
    }

    .contact-card {
      background: linear-gradient(135deg, var(--navy) 0%, #1e4080 100%);
      border-radius: 20px;
      padding: 24px 32px;
     
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      box-shadow: 0 8px 30px rgba(25,50,106,0.25);
      position: relative;
      overflow: hidden;
    }
    .contact-text-sec{
          display: flex;
    justify-content: center;
    gap: 20px;
    
    margin-top: 14px;
    }
    .contact-card::after {
      content: '';
      position: absolute;
      right: -60px;
      top: -60px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      pointer-events: none;
    }

    .contact-text {
      font-size: 14px;
      color: rgba(255,255,255,0.9);
      font-weight: 400;
    }

    .contact-text-heading {
      color: #fff;
      font-weight: 700;
      display: block;
      font-size: 17px;
      margin-bottom: 6px;
    }

    .contact-link {
      color: #a5b4fc;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.2s;
    }

    .contact-link:hover { color: #fff; }

    .btn-callback {
      background: #fff;
      color: var(--navy);
      font-size: 13px;
      font-weight: 700;
      padding: 12px 24px;
      border-radius: 50px;
      border: none;
      transition: all 0.25s;
      white-space: nowrap;
      box-shadow: 0 4px 14px rgba(0,0,0,0.15);
      cursor: pointer;
      flex-shrink: 0;
    }

    .btn-callback:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

    /* ===== JOB LISTINGS ===== */
    .job-listings-section {
      background: var(--bg);
      padding: 10px 0 28px;
    }

    .job-listings-inner {
      max-width: 1300px;
      margin: 0 auto;
    }

    .job-section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }

    .job-section-title {
      font-size: 20px;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.3px;
    }
.dropdown-menu.show {
  
    font-size: 14px;
}
    .job-card {
      background: var(--surface);
      border: 1.5px solid var(--border);
      border-radius: 16px;
     
      box-shadow: var(--card-shadow);
      transition: all 0.25s;
      margin-bottom: 12px;
    }

    .job-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-1px); }

    .job-warning-bar {
      background: linear-gradient(135deg, #fffbeb, #fef3c7);
      border-bottom: 1px solid #fde68a;
      padding: 10px 20px;
      font-size: 13px;
      font-weight: 600;
      color: #92400e;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
    }

    .job-warning-icon { color: #d97706; }

    .job-see-why {
      color: var(--red);
      font-size: 12px;
      font-weight: 700;
      text-decoration: none;
      letter-spacing: 0.02em;
    }

    .job-see-why:hover { text-decoration: underline; }

    .job-card-body { padding: 20px 22px; }

    .job-card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 8px;
    }

    .job-title-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 4px;
    }

    .job-title {
      font-size: 15px;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.2px;
    }

    .job-status-badge {
      font-size: 11px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 99px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .job-status-badge.inactive { background: #fef3c7; color: #d97706; }
    .job-status-badge.active { background: #dcfce7; color: #16a34a; }

    .job-meta {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 4px;    line-height: 33px;
    }

    .job-details { font-size: 13px; color: #94a3b8; }

    .job-edit-link {
      color: var(--muted);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      white-space: nowrap;
      padding: 6px 12px;
      border-radius: 8px;
      border: 1.5px solid #e2e8f0;
      transition: all 0.2s;
      background: #fff;
      flex-shrink: 0;
    }

    .job-edit-link:hover { border-color: var(--navy); color: var(--navy); background: var(--navy-light); }

    .job-stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 16px;
    }

    .job-stat-box {
      border: 1.5px solid #f1f5f9;
      border-radius: 14px;
      padding: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      background: #fafbfc;
      transition: all 0.2s;
      cursor: pointer;
    }

    .job-stat-box:hover {
      border-color: var(--red);
      box-shadow: 0 4px 14px rgba(252,37,63,0.08);
      background: #fff;
    }

    .stat-icon-box {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    .blue-icon { background: var(--navy-light); color: var(--navy); }
    .orange-icon { background: #fff7ed; color: #ea580c; }
    .gray-icon { background: #f1f5f9; color: #64748b; }

    .stat-box-info { min-width: 0; }
    .stat-number { font-size: 13px; font-weight: 700; color: var(--text); }
    .stat-number.orange-text { color: #ea580c; }
    .stat-label-sm { font-size: 11px; color: #94a3b8; }

    .stat-arrow {
      color: #cbd5e1;
      font-size: 16px;
      text-decoration: none;
      flex-shrink: 0;
      transition: all 0.2s;
    }

    .stat-arrow:hover { color: var(--red); transform: translateX(2px); }

    .dot-red { color: var(--red); font-size: 14px; }

    .job-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 12px;
    }

    .job-posted-date {
      font-size: 12px;
      color: #94a3b8;
      font-weight: 400;
    }

    .job-actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .btn-activate {
      background: linear-gradient(135deg, var(--red), #e8192f);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      border: none;
      border-radius: 10px;
      padding: 9px 22px;
      cursor: pointer;
      transition: all 0.25s;
      box-shadow: 0 3px 10px rgba(252,37,63,0.3);
    }

    .btn-activate:hover { transform: translateY(-1px); box-shadow: 0 5px 16px rgba(252,37,63,0.4); }

    .btn-more-opts {
      background: #f8fafc;
      border: 1.5px solid #e2e8f0;
      border-radius: 10px;
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 16px;
      color: var(--muted);
      transition: all 0.2s;
    }

    .btn-more-opts:hover { background: #f1f5f9; border-color: #cbd5e1; color: var(--text); }

    /* ===== FOOTER ===== */
    .site-footer {
      background: linear-gradient(180deg, var(--navy-dark) 0%, #0a1628 100%);
      padding: 48px 16px 32px;
    }

    .footer-inner {
      max-width: 960px;
      margin: 0 auto;
      text-align: center;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 4px;
      margin-bottom: 24px;
    }

    .footer-links a {
      color: rgba(255,255,255,0.55);
      font-size: 12px;
      text-decoration: none;
      padding: 4px 10px;
      border-radius: 20px;
      transition: all 0.2s;
      font-weight: 500;
    }

    .footer-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 24px;
    }

    .social-icon {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      text-decoration: none;
      transition: all 0.2s;
    }

    .social-icon:hover { transform: translateY(-2px); opacity: 0.85; }
    .si-facebook { background: #1877f2; color: #fff; }
    .si-linkedin { background: #0a66c2; color: #fff; }
    .si-twitter { background: #000; color: #fff; }
    .si-youtube { background: #ff0000; color: #fff; }
    .si-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }

    .footer-divider { border-color: rgba(255,255,255,0.08); margin-bottom: 24px; }

    .footer-apps {
          align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    justify-content: center;
    }

    .footer-app-item { text-align: center; }

    .app-section-title {
      font-size: 12px;
      color: rgba(255,255,255,0.5);
      font-weight: 500;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .playstore-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgb(241 55 55 / 49%);
      border: 1.5px solid rgba(255,255,255,0.12);
      color: #fff;
      padding: 10px 20px;
      border-radius: 12px;
      text-decoration: none;
      transition: all 0.2s;
    }

    .playstore-btn:hover {
      background: rgba(255,255,255,0.14);
      border-color: rgba(255,255,255,0.25);
      color: #fff;
      transform: translateY(-1px);
    }

    .ps-text-top { font-size: 10px; opacity: 0.7; line-height: 1; }
    .ps-text-bottom { font-size: 14px; font-weight: 700; line-height: 1.3; }

    .copyright { font-size: 12px; color: rgba(255,255,255,0.3); }

    /* ===== POPUP ===== */
    .popup-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      padding: 16px;
      backdrop-filter: blur(6px);
    }

    .popup-box {
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      max-width: 820px;
      width: 100%;
      display: flex;
      flex-direction: row;
      box-shadow: 0 30px 80px rgba(0,0,0,0.35);
      position: relative;
    }

    .popup-close-btn {
      position: absolute;
      top: 16px;
      right: 16px;
      background: #f5f4f4cc;
      border: none;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      font-size: 18px;
      line-height: 1;
      cursor: pointer;
      color: #334155;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }

    .popup-close-btn:hover { background: rgba(0,0,0,0.14); }

    /* Popup Left */
    .popup-left {
      flex: 1;
      padding: 44px 40px;
      min-width: 0;
    }

    .popup-tag {
      font-size: 11px;
      font-weight: 700;
      color: var(--red);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 8px;
      background: var(--red-light);
      display: inline-block;
      padding: 4px 10px;
      border-radius: 20px;
    }

    .popup-title {
      font-size: 24px;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 6px;
      letter-spacing: -0.5px;
    }

    .popup-subtitle {
      font-size: 13px;
      color: #64748b;
      margin-bottom: 32px;
    }

    .popup-label {
      font-size: 12px;
      font-weight: 700;
      color: #475569;
      display: block;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.06em;padding-top: 16px;
    }

    .popup-input-wrapper { position: relative; }

    .popup-input-prefix {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: #94a3b8;
      font-size: 14px;
    }

    .popup-input {
      width: 100%;
      border: 2px solid #e2e8f0;
      border-radius: 12px;
      padding: 13px 14px 13px 48px;
      font-size: 14px;
      outline: none;
      color: #0f172a;
      transition: all 0.2s;
      font-family: 'Inter', sans-serif;
    }

    .popup-input:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(252,37,63,0.1);
    }

    .popup-error {
      display: none;
      color: #ef4444;
      font-size: 12px;
      margin-top: 6px;
      font-weight: 500;
    }

    .btn-proceed {
      width: 100%;
      background: linear-gradient(135deg, var(--red), #e8192f);
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      border: none;
      border-radius: 12px;
      padding: 14px;
      margin-top: 24px;
      cursor: pointer;
      transition: all 0.25s;
      font-family: 'Inter', sans-serif;
      box-shadow: 0 4px 16px rgba(252,37,63,0.35);
      letter-spacing: 0.02em;
    }

    .btn-proceed:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(252,37,63,0.45);
    }

    .popup-footer-text {
      text-align: center;
      font-size: 13px;
      color: #94a3b8;
      margin-top: 18px;
      margin-bottom: 0;
    }

    .popup-footer-link {
      color: var(--red);
      font-weight: 600;
      text-decoration: none;
    }

    .popup-footer-link:hover { text-decoration: underline; }

    /* Popup Right */
    .popup-right {
      width: 390px;
      background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
      padding: 36px 28px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
    }

    .popup-deco-1 {
      position: absolute;
      top: -50px;
      right: -50px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
      pointer-events: none;
    }

    .popup-deco-2 {
      position: absolute;
      bottom: -40px;
      left: -40px;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: rgba(252,37,63,0.08);
      pointer-events: none;
    }

    .popup-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
      position: relative;
    }

    .popup-brand-logo {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      color: #fff;
      font-size: 15px;
      letter-spacing: -0.5px;
      border: 1.5px solid rgba(255,255,255,0.2);
    }

    .popup-brand-name {
      color: #fff;
      font-weight: 800;
      font-size: 16px;
      letter-spacing: -0.3px;
    }

    .popup-brand-tagline {
      color: rgba(255,255,255,0.55);
      font-size: 11px;
    }

    .popup-trusted {
      margin-bottom: 24px;
      position: relative;
    }

    .popup-trusted-label {
      color: rgba(255,255,255,0.6);
      font-size: 12px;
      margin-bottom: 4px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 600;
    }

    .popup-trusted-count {
      color: #fff;
      font-size: 26px;
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -1px;
    }

    .popup-benefits {
      list-style: none;
      padding: 0;
      margin: 0 0 24px;
      position: relative;
      width: 100%;
    }

    .popup-benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 8px;
      color: rgba(255,255,255,0.85);
      font-size: 12.5px;
      line-height: 1.4;
      background: rgba(255,255,255,0.06);
      padding: 10px 12px;
      border-radius: 10px;
    }

    .benefit-check {
      color: var(--red);
      margin-top: 1px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .popup-image-wrapper {
      position: relative;
      width: 100%;
      margin-top: auto;
    }

    .popup-image {
      width: 100%;
      border-radius: 12px;
      object-fit: cover;
     /** max-height: 150px;*/
      opacity: 0.85;
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeInOverlay {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes fadeOutOverlay {
      from { opacity: 1; }
      to   { opacity: 0; }
    }
    @keyframes slideUpPopup {
      from { transform: translateY(40px) scale(0.96); opacity: 0; }
      to   { transform: translateY(0) scale(1); opacity: 1; }
    }

    /* ===== RESPONSIVE ===== */
    @media (min-width: 576px) {
      .alert-banner-inner { flex-direction: row; }
      .footer-apps { flex-direction: row; }
    }

    @media (min-width: 768px) {
      .navbar-right { gap: 12px; }
    }

    @media (max-width: 768px) {
      .search-box { display: none !important; }
      .bell-icon { display: none !important; }
      .divider-v { display: none; }
      .plan-status-inner { gap: 8px 16px; }
      .contact-card { flex-direction: column; align-items: flex-start; }
      .btn-callback { width: 100%; text-align: center; }
      .plan-status-inner{
            justify-content: space-between;
      }
      .stat-value{
     text-align: center;
      }
    }

    @media (max-width: 640px) {
      .job-stats-row { grid-template-columns: 1fr; }
      .stat-arrow { display: none; }
      .pricing-section-title { font-size: 22px; }
      .popup-box { flex-direction: column;max-height: 90%;
        overflow: scroll; }
      .popup-right { width: 100%; }
    }

    @media (max-width: 576px) {
      .btn-post-job { font-size: 11px; padding: 8px 14px; }
      .tab-btn { padding: 10px 20px; }
    }
     .top-header {
      background: #fff;
      border-bottom: 1px solid var(--border-color);
      padding: 12px 0;
      position: sticky;
      top: 0;
      z-index: 10;
    }
    .top-header .brand { color: var(--brand-blue); font-weight: 700; font-size: 16px; }
    .top-header .helpline { color: var(--brand-blue); font-size: 13px; font-weight: 500; }
    .top-header .helpline span { color: #555; }

    /* ── Cards / Sections ── */
    .form-card {
      background: #fff;
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 22px 24px;
      margin-bottom: 16px;
    }
    .section-label {
      font-size: 13px;
      font-weight: 600;
      color: #444;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* ── Toggle Buttons (Job Type) ── */
    .toggle-group .btn {
      border-radius: 6px;
      font-size: 13px;
      padding: 6px 18px;
      font-weight: 500;
      border: 1px solid #ccc;
      background: #fff;
      color: #444;
      transition: all .2s;
    }
    .toggle-group .btn.active,
    .toggle-group .btn-check:checked + .btn {
      background: var(--brand-blue);
      color: #fff;
      border-color: var(--brand-blue);
    }

    /* ── Experience / Hire-speed Chips ── */
    .chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
    .chip-btn {
      border: 1px solid #ccc;
      background: #fff;
      border-radius: 20px;
      padding: 5px 16px;
      font-size: 13px;
      cursor: pointer;
      color: #444;
      transition: all .2s;
    }
    .chip-btn.active {
      background: var(--brand-blue);
      color: #fff;
      border-color: var(--brand-blue);
    }

    /* ── Form fields ── */
    .form-control, .form-select {
      font-size: 13px;
      border-radius: 6px;
      border-color: #ccc;
      padding: 8px 12px;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--brand-blue);
      box-shadow: 0 0 0 3px rgba(59,91,219,.12);
    }
    .form-label {
      font-size: 13px;
      font-weight: 600;
      color: #333;
      margin-bottom: 5px;
    }
    .required-star { color: #e03131; }
    .hint-text { font-size: 11.5px; color: var(--text-muted-custom); margin-top: 3px; }

    /* ── Phone prefix ── */
    .phone-prefix {
      background: #f1f3f5;
      border: 1px solid #ccc;
      border-right: none;
      border-radius: 6px 0 0 6px;
      padding: 8px 12px;
      font-size: 13px;
      font-weight: 500;
      color: #333;
    }
    .phone-prefix + .form-control { border-radius: 0 6px 6px 0; }

    /* ── Salary inputs ── */
    .salary-group { display: flex; gap: 10px; align-items: center; }
    .salary-group .form-control { flex: 1; }
    .salary-divider { font-size: 13px; color: #888; white-space: nowrap; }

    /* ── Skills Tag input ── */
    #skillsContainer {
      border: 1px solid #ccc;
      border-radius: 6px;
      padding: 6px 10px;
      min-height: 42px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      align-items: center;
      cursor: text;
    }
    #skillsContainer:focus-within { border-color: var(--brand-blue); box-shadow: 0 0 0 3px rgba(59,91,219,.12); }
    .skill-tag {
      background: var(--brand-blue-light);
      color: var(--brand-blue);
      border-radius: 20px;
      padding: 3px 10px;
      font-size: 12px;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .skill-tag .remove { cursor: pointer; font-size: 14px; line-height: 1; color: var(--brand-blue); }
    #skillInput {
      border: none;
      outline: none;
      font-size: 13px;
      min-width: 120px;
      flex: 1;
      background: transparent;
    }

    /* ── Collapsible section header ── */
    .collapse-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
    }
    .collapse-header .section-title {
      font-size: 14px;
      font-weight: 600;
      color: #333;
    }
    .collapse-icon { transition: transform .25s; }
    .collapsed .collapse-icon { transform: rotate(-90deg); }

    /* ── Insights Sidebar ── */
    .insights-card {
      background: #fff;
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 20px;
      position: sticky;
      top: 72px;
    }
    .insights-card .intro-label {
      font-size: 11px;
      color: #888;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .4px;
      margin-bottom: 2px;
    }
    .insights-card h6 {
      color: var(--brand-blue);
      font-weight: 700;
      font-size: 15px;
      margin-bottom: 14px;
    }
    .reach-meter-wrap {
      background: var(--section-bg);
      border-radius: 8px;
      padding: 14px;
      margin-bottom: 14px;
    }
    .reach-meter-wrap .meter-title {
      font-size: 12px;
      font-weight: 600;
      color: #444;
      margin-bottom: 10px;
    }
    .meter-arc {
      position: relative;
      width: 90px;
      height: 50px;
      margin: 0 auto 8px;
    }
    .meter-arc svg { overflow: visible; }
    .meter-label { font-size: 11px; color: #888; text-align: center; }
    .salary-insight {
      background: var(--section-bg);
      border-radius: 8px;
      padding: 14px;
    }
    .salary-insight p { font-size: 12px; color: #555; margin-bottom: 10px; }
    .salary-row { display: flex; justify-content: space-between; }
    .salary-col { text-align: center; }
    .salary-col .label { font-size: 11px; color: #888; }
    .salary-col .value { font-size: 13px; font-weight: 600; color: #333; }

    /* ── Submit Button ── */
    .btn-submit {
      background: var(--brand-blue);
      color: #fff;
      border: none;
      border-radius: 7px;
      padding: 10px 32px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .3px;
      transition: background .2s;
    }
    .btn-submit:hover { background: #2f4bc0; color: #fff; }

    /* ── Footer ── */
    .footer-help {
      background: #e8edff;
      padding: 14px 0;
      text-align: center;
      font-size: 13px;
      color: #333;
    }
    .footer-help a { color: var(--brand-blue); text-decoration: none; font-weight: 500; }
    .footer-jobs {
      background: #fff;
      padding: 18px 0;
      text-align: center;
      border-top: 1px solid var(--border-color);
    }
    .footer-jobs p { font-size: 12px; color: #888; letter-spacing: 1px; margin-bottom: 8px; text-transform: uppercase; }
    .btn-find-jobs {
      background: #fff;
      border: 2px solid var(--brand-blue);
      color: var(--brand-blue);
      border-radius: 6px;
      padding: 8px 28px;
      font-weight: 600;
      font-size: 13px;
      cursor: pointer;
      transition: all .2s;
    }
    .btn-find-jobs:hover { background: var(--brand-blue); color: #fff; }

    /* ── Char counter ── */
    #charCount { font-size: 11.5px; color: #888; }

    /* ── Responsive tweaks ── */
    @media (max-width: 991px) {
      .insights-card { position: static; margin-top: 0; }
    }
    @media (max-width: 575px) {
      .form-card { padding: 16px 14px; }
      .salary-group { flex-direction: column; }
      .salary-divider { display: none; }
    }
    .wi-navbar {
      position: sticky; top: 0; z-index: 1000;
      height: 60px;
      background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
      box-shadow: 0 4px 24px rgba(26,29,46,.35);
      display: flex; align-items: center;
      padding: 0 24px; gap: 8px;
    }
    .wi-logo {
      font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px;
      color: #fff; text-decoration: none; white-space: nowrap;
    }
    .wi-logo span { color: #ff6b6b; }
    .wi-nav-tabs { display: flex; gap: 2px; margin-left: 16px; }
    .wi-nav-tabs a {
      font-size: .82rem; color: rgba(255,255,255,.65); text-decoration: none;
      padding: 6px 16px; border-radius: 8px; white-space: nowrap;
      font-weight: 500; transition: background .18s, color .18s;
    }
    .wi-nav-tabs a:hover { background: rgba(255,255,255,.12); color: #fff; }
    .wi-nav-tabs a.active { background: rgb(249 93 93); color: #ffffff; font-weight: 700; }
    .wi-nav-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
    .wi-employer-badge {
      background: rgba(255,200,100,.18); color: #000000;
      border: 1px solid rgba(255,209,102,.3);
      border-radius: 20px; padding: 3px 14px; font-size: .72rem; font-weight: 700;
      letter-spacing: .3px; white-space: nowrap;
    }
    .wi-user-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background: linear-gradient(135deg, #ff6b6b, #ee4444);
      color: #fff; display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: .9rem; cursor: pointer; flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(238,68,68,.4);
    }
    #hamburger {
      background: red; border: none; cursor: pointer;
      display: none; flex-direction: column; gap: 5px; padding: 4px; flex-shrink: 0;
    }
    #hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.8); border-radius: 2px; }

    .wi-layout { display: flex; height: calc(100vh - 60px); overflow: hidden; }

    .wi-sidebar {
      width: 276px; min-width: 276px;
      background: #ffffff;
      overflow-y: auto; height: 100%;
      transition: width .25s cubic-bezier(.4,0,.2,1), min-width .25s;
      scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.1) transparent;    border-right: 1px solid rgb(0 0 0 / 9%);
    }
    .wi-sidebar::-webkit-scrollbar { width: 4px; }
    .wi-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 4px; }
    .wi-sidebar.collapsed { width: 0; min-width: 0; overflow: hidden; }
    .wi-sidebar-inner { padding-bottom: 40px; min-width: 276px; }

    /* Sidebar header */
    .sidebar-top-bar {
      padding: 16px 18px 14px;
      display: flex; justify-content: space-between; align-items: center;
      border-bottom: 1px solid rgba(255,255,255,.07);
      background: rgba(255,255,255,.03);
    }
    .sidebar-heading {
      font-size: .78rem; font-weight: 700; color: rgb(0 0 0 / 50%);
      text-transform: uppercase; letter-spacing: 1px;
    }
    .wi-clear-btn {
      font-size: .72rem; color: #ffffff; background: #dc3545;
      border: 1px solid rgba(255,107,107,.25); border-radius: 6px;
      padding: 3px 10px; cursor: pointer; font-weight: 600;
      transition: background .15s;
    }
    .wi-clear-btn:hover { background: rgba(255,107,107,.22); }

    /* Filter sections */
    .filter-section { border-bottom: 1px solid rgb(0 0 0 / 21%); padding: 12px 18px 10px; }
    .filter-title {
      cursor: pointer; user-select: none;
      display: flex; align-items: center; justify-content: space-between;
    }
    .filter-title-text { font-size: .82rem; font-weight: 600; color: rgba(0, 0, 0, 0.85); }
    .filter-title i { font-size: .8rem; color: rgba(0, 0, 0, 0.35); transition: transform .2s; }
    .filter-body { margin-top: 8px; }
    .filter-note { font-size: .76rem; color: rgb(0 0 0 / 35%); margin: 0; }

    /* Applied tags */
    #applied-section { display: none; }
    .applied-tags { display: flex; flex-wrap: wrap; gap: 5px; }
    .applied-tag {
      background: rgba(255,107,107,.18); color: #ff8a8a;
      border: 1px solid rgba(255,107,107,.3);
      border-radius: 20px; padding: 3px 10px; font-size: .72rem; font-weight: 600;
      display: inline-flex; align-items: center; gap: 4px;
    }
    .applied-tag button {
      background: none; border: none; color: #ff8a8a;
      cursor: pointer; font-size: .9rem; line-height: 1; padding: 0;
    }

    /* Toggle switch */
    .wi-toggle {
      width: 38px; height: 20px; border-radius: 12px;
      background: rgb(13 13 13 / 15%); position: relative;
      cursor: pointer; transition: background .2s; flex-shrink: 0;
    }
    .wi-toggle.on { background: linear-gradient(135deg, #4caf50, #66bb6a); }
    .wi-toggle-knob {
      position: absolute; top: 2px; left: 2px;
      width: 16px; height: 16px; border-radius: 50%;
      background: #fff; transition: left .2s;
      box-shadow: 0 1px 4px rgba(0,0,0,.3);
    }
    .wi-toggle.on .wi-toggle-knob { left: 20px; }

    /* Checkbox */
    .check-item { display: flex; align-items: center; gap: 9px; padding: 4px 0; }
    .check-item input[type=checkbox] {
      accent-color: #ff6b6b; width: 14px; height: 14px;
      cursor: pointer; flex-shrink: 0;
    }
    .check-item label {
      font-size: .8rem; color: rgba(0, 0, 0, 0.7);
      cursor: pointer; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
      max-width: 198px; margin: 0; transition: color .15s;
    }
    .check-item:hover label { color: #575353; }

    /* Filter search */
    .filter-search {
         width: 100%;
    background: rgb(47 56 104);
    border: 3px solid rgb(0 0 0 / 12%);
    border-radius: 8px;
    padding: 6px 11px;
    font-size: .79rem;
    color: #000000;
    outline: none;
    margin-bottom: 6px;
    transition: border-color .15s;
    }
    .filter-search::placeholder { color: rgba(255,255,255,.35); }
    .filter-search:focus { border-color: rgba(255,107,107,.5); background: #3d4a8a;color :white;}
    .cert-scroll { max-height: 150px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.1) transparent; }

    /* Overlay */
    .wi-overlay {
      display: none; position: fixed; inset: 0;
      background: rgba(0,0,0,.5); z-index: 490; backdrop-filter: blur(2px);
    }

    /* ══════════════════════════════════════════
       MAIN
    ══════════════════════════════════════════ */
    .wi-main { flex: 1; overflow-y: auto; display: flex; flex-direction: column; }
    .wi-main::-webkit-scrollbar { width: 5px; }
    .wi-main::-webkit-scrollbar-thumb { background: #c8cde0; border-radius: 4px; }

    /* Lead tabs row */
    .wi-lead-row {
      background: #fff; border-bottom: 1.5px solid #e8ecf4;
      padding: 0 20px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 6px; min-height: 48px;
    }
    .wi-lead-tab {
      font-size: .82rem; color: #7a7f9d; font-weight: 500;
      background: transparent; border: none; cursor: pointer;
      padding: 14px 16px; border-bottom: 3px solid transparent;
      transition: color .15s, border-color .15s; white-space: nowrap;
    }
    .wi-lead-tab:hover { color: #2d3561; }
    .wi-lead-tab.active { color: #2d3561; font-weight: 700; border-bottom-color: #2d3561; }
    .lead-count {
      font-size: .73rem; font-weight: 700;
      background: #f0f2f8; color: #7a7f9d;
      border-radius: 10px; padding: 1px 7px; margin-left: 4px;
    }
    .wi-lead-tab.active .lead-count { background: #e8ebf8; color: #2d3561; }
    .wi-export-btn {
      font-size: .76rem; font-weight: 600;
      background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
      color: #2e7d32; border: 1.5px solid #a5d6a7;
      border-radius: 8px; padding: 6px 14px; cursor: pointer;
      white-space: nowrap; display: flex; align-items: center; gap: 5px;
      transition: all .18s; box-shadow: 0 2px 6px rgba(76,175,80,.1);
    }
    .wi-export-btn:hover { background: linear-gradient(135deg, #c8e6c9, #dcedc8); }

    /* Candidate type tabs */
    .wi-cand-tabs-row {
      background: #fff; border-bottom: 1.5px solid #e8ecf4;
      display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
      padding: 10px 20px;
    }
    .wi-cand-tab {
      font-size: .8rem; color: #7a7f9d; font-weight: 500;
      background: #f4f6fb; border: 1.5px solid #e8ecf4;
      border-radius: 20px; padding: 6px 16px; cursor: pointer;
      transition: all .18s; white-space: nowrap; display: inline-flex; align-items: center; gap: 5px;
    }
    .wi-cand-tab:hover { background: #ebedf8; color: #2d3561; border-color: #c5cae9; }
    .wi-cand-tab.active {
      background: linear-gradient(135deg, #2d3561, #3d4a8a);
      color: #fff; border-color: transparent; font-weight: 700;
      box-shadow: 0 4px 14px rgba(45,53,97,.3);
    }
    .cand-tab-count {
      font-size: .72rem; font-weight: 700;
      background: #e0e4f0; color: #7a7f9d;
      border-radius: 10px; padding: 1px 7px;
    }
    .wi-cand-tab.active .cand-tab-count { background: rgba(255,255,255,.22); color: #fff; }

    /* Info banner */
    .wi-info-banner {
      background: linear-gradient(135deg, #fffde7, #fff9c4);
      border-bottom: 1.5px solid #f9e44b;
      padding: 10px 20px; font-size: .82rem; color: #6d5b00;
      font-weight: 500; display: flex; align-items: center; gap: 8px;
    }
    .wi-info-banner i { color: #f59f00; font-size: 1rem; }

    /* Search + sort row */
    .wi-search-row {
      background: #fff; border-bottom: 1.5px solid #e8ecf4;
      padding: 12px 20px; display: flex; align-items: center;
      justify-content: space-between; flex-wrap: wrap; gap: 12px;
    }
    .wi-search-group {
      display: flex; align-items: center; flex: 1; max-width: 440px;
      background: #f4f6fb; border: 1.5px solid #e0e4f0;
      border-radius: 12px; overflow: hidden; transition: border-color .2s, box-shadow .2s;
    }
    .wi-search-group:focus-within {
      border-color: #7986cb; box-shadow: 0 0 0 3px rgba(121,134,203,.15);
    }
    .wi-search-input {
      flex: 1; border: none; background: transparent;
      padding: 9px 14px; font-size: .83rem; color: #1a1d2e;
      outline: none; min-width: 0;
    }
    .wi-search-input::placeholder { color: #aab0c8; }
    .wi-search-btn {
      background: linear-gradient(135deg, #2d3561, #3d4a8a);
      color: #fff; border: none; padding: 9px 20px;
      font-size: .82rem; font-weight: 700; cursor: pointer;
      display: flex; align-items: center; gap: 5px;
      transition: opacity .15s;
    }
    .wi-search-btn:hover { opacity: .9; }
    .wi-sort-group { display: flex; align-items: center; gap: 8px; }
    .wi-sort-label { font-size: .78rem; color: #aab0c8; font-weight: 500; white-space: nowrap; }
    .wi-sort-select {
      border: 1.5px solid #e0e4f0; border-radius: 10px;
      padding: 6px 12px; font-size: .8rem; color: #1a1d2e;
      outline: none; cursor: pointer; background: #f4f6fb;
      font-weight: 500; transition: border-color .18s;
    }
    .wi-sort-select:focus { border-color: #7986cb; }

    /* Results row */
    .wi-results-row {
      background: #f7f8fc; border-bottom: 1.5px solid #e8ecf4;
      padding: 9px 20px; display: flex; align-items: center;
      flex-wrap: wrap; gap: 10px;
    }
    .wi-showing-text { font-size: .82rem; color: #7a7f9d; white-space: nowrap; }
    .wi-showing-text strong { color: #2d3561; font-weight: 800; }
    .wi-no-filter-hint { font-size: .76rem; color: #b0b8d0; flex: 1; font-style: italic; }
    .wi-hide-details-btn {
      margin-left: auto; font-size: .76rem; font-weight: 700;
      color: #2d3561; background: #e8ebf8; border: 1.5px solid #c5cae9;
      border-radius: 8px; padding: 4px 12px; cursor: pointer;
      display: flex; align-items: center; gap: 4px; white-space: nowrap;
      transition: all .15s;
    }
    .wi-hide-details-btn:hover { background: #dde0f5; }

    /* ══════════════════════════════════════════
       CARDS
    ══════════════════════════════════════════ */
    .wi-cards { padding: 16px 20px; max-width: 100%; }

    .cand-card {
      background: #fff; border: 1.5px solid #eaedf6;
      border-radius: 14px; padding: 18px 20px 14px;
      margin-bottom: 14px;
      box-shadow: 0 2px 12px rgba(26,29,46,.06);
      transition: all .22s cubic-bezier(.4,0,.2,1);
      position: relative; overflow: hidden;
    }
    .cand-card::before {
      content: '';
      position: absolute; left: 0; top: 0; bottom: 0;
      width: 4px;
      background: linear-gradient(180deg, #2d3561, #7986cb);
      opacity: 0; transition: opacity .22s;
      border-radius: 0 2px 2px 0;
    }
    .cand-card:hover {
      box-shadow: 0 8px 32px rgba(45,53,97,.14);
      border-color: #c5cae9; transform: translateY(-2px);
    }
    .cand-card:hover::before { opacity: 1; }

    /* Avatar */
    .cand-avatar {
      width: 48px; height: 48px; border-radius: 14px;
      font-weight: 800; font-size: .95rem;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; box-shadow: 0 4px 12px rgba(0,0,0,.12);
    }
    .cand-name { font-size: 1rem; font-weight: 700; color: #1a1d2e; }
    .cand-meta { font-size: .77rem; color: #aab0c8; margin-top: 1px; }

    /* Badges */
    .cand-badge {
      font-size: .68rem; font-weight: 800; border-radius: 20px; padding: 3px 10px;
      letter-spacing: .2px;
    }
    .badge-top   { background: linear-gradient(135deg,#e8f5e9,#c8e6c9); color: #1b5e20; }
    .badge-good  { background: linear-gradient(135deg,#e3f2fd,#bbdefb); color: #0d47a1; }
    .badge-short { background: linear-gradient(135deg,#fff3e0,#ffe0b2); color: #bf360c; }
    .badge-new   { background: linear-gradient(135deg,#f3e5f5,#e1bee7); color: #4a148c; }

    .cand-missed-tag {
      font-size: .68rem; font-weight: 700; color: #c62828;
      background: #ffebee; border: 1px solid #ef9a9a;
      border-radius: 20px; padding: 3px 10px;
      display: inline-flex; align-items: center; gap: 4px;
    }
    .cand-resume-tag {
      font-size: .68rem; font-weight: 700; color: #1565c0;
      background: #e3f2fd; border: 1px solid #90caf9;
      border-radius: 20px; padding: 3px 10px;
      display: inline-flex; align-items: center; gap: 4px;
    }

    /* Relevance */
    .rel-label { font-size: .73rem; color: #b0b8d0; }
    .thumb-btn {
      background: #f4f6fb; border: 1.5px solid #e0e4f0;
      border-radius: 8px; padding: 4px 10px; cursor: pointer;
      font-size: .88rem; transition: all .15s;
    }
    .thumb-btn:hover { background: #fce4ec; border-color: #ffcdd2; transform: scale(1.1); }

    /* Info pills */
    .info-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
    .info-pill {
      font-size: .78rem; color: #7a7f9d;
      display: flex; align-items: center; gap: 5px;
      background: #f4f6fb; border-radius: 20px; padding: 3px 10px;
    }
    .info-pill i { color: #7986cb; font-size: .8rem; }

    /* Divider */
    .card-divider { border: none; border-top: 1.5px solid #f4f6fb; margin: 12px 0 10px; }

    /* Detail rows */
    .detail-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 5px; }
    .detail-label {
      font-size: .75rem; color: #aab0c8; min-width: 140px; flex-shrink: 0;
      font-weight: 600; text-transform: uppercase; letter-spacing: .4px; padding-top: 2px;
    }
    .detail-value { font-size: .8rem; color: #1a1d2e; line-height: 1.5; display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
    .detail-value.rel-exp { color: #3d4a8a; font-weight: 600; }

    /* Skill tags */
    .skill-tag {
      background: #f4f6fb; color: #4a5075;
      border-radius: 6px; padding: 3px 9px; font-size: .72rem;
      border: 1px solid #e0e4f0; white-space: nowrap; font-weight: 500;
      transition: all .15s;
    }
    .skill-tag:hover { background: #e8ebf8; border-color: #c5cae9; color: #2d3561; }
    .skill-tag.verified { border-left: 3px solid #4caf50; background: #f1f8e9; }
    .asset-tag {
      background: linear-gradient(135deg, #f4f6fb, #ebedf8);
      color: #4a5075; border-radius: 6px; padding: 3px 10px;
      font-size: .72rem; border: 1px solid #e0e4f0; white-space: nowrap; font-weight: 500;
    }
    .toggle-skills {
      background: none; border: none; color: #7986cb;
      font-size: .73rem; font-weight: 700; cursor: pointer; padding: 0;
    }
    .toggle-skills:hover { color: #2d3561; text-decoration: underline; }

    /* Card footer */
    .card-footer-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; margin-top: 14px; }
    .footer-meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
    .meta-item { font-size: .74rem; color: #b0b8d0; display: flex; align-items: center; gap: 4px; }
    .meta-sep { color: #dde0ee; }
    .status-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
    .dot-green { background: #4caf50; box-shadow: 0 0 0 2px rgba(76,175,80,.2); }
    .dot-blue  { background: #5c6bc0; box-shadow: 0 0 0 2px rgba(92,107,192,.2); }

    /* Action buttons */
    .action-btns { display: flex; flex-wrap: wrap; gap: 6px; }
    .wi-btn {
      font-size: .74rem; font-weight: 700; border: none; border-radius: 9px; padding: 7px 13px;
      cursor: pointer; display: inline-flex; align-items: center; gap: 5px;
      transition: all .18s; white-space: nowrap;
    }
    .wi-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.15); }
    .wi-btn:active { transform: translateY(0); }
    .btn-status {
      background: #f4f6fb; color: #4a5075; border: 1.5px solid #e0e4f0;
      border-radius: 9px; padding: 6px 11px; font-size: .74rem; cursor: pointer;
      outline: none; font-weight: 600; transition: border-color .15s;
    }
    .btn-status:focus { border-color: #7986cb; }
    .btn-resume { background: #fff; color: #4a5075; border: 1.5px solid #e0e4f0; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
    .btn-resume:hover { border-color: #c5cae9; }
    .btn-sms  { background: linear-gradient(135deg, #1565c0, #1976d2); color: #fff; box-shadow: 0 3px 10px rgba(21,101,192,.3); }
    .btn-wa   { background: linear-gradient(135deg, #1b8a3f, #25d366); color: #fff; box-shadow: 0 3px 10px rgba(37,211,102,.3); }
    .btn-call { background: linear-gradient(135deg, #c62828, #e53935); color: #fff; box-shadow: 0 3px 10px rgba(229,57,53,.3); }

    /* Empty state */
    .wi-empty { text-align: center; padding: 60px 20px; color: #b0b8d0; }
    .wi-empty i { font-size: 3.5rem; color: #dde0ee; margin-bottom: 14px; display: block; }

    /* ══════════════════════════════════════════
       RESPONSIVE — TABLET (≤ 1024px)
    ══════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .wi-sidebar { width: 248px; min-width: 248px; }
      .wi-sidebar-inner { min-width: 248px; }
      .wi-cards { padding: 12px 16px; }
      .wi-lead-row { padding: 0 14px; }
      .wi-search-row, .wi-results-row { padding: 10px 14px; }
      .wi-cand-tabs-row { padding: 8px 14px; }
      .wi-info-banner { padding: 9px 14px; }
      .wi-no-filter-hint { display: none; }
    }

    /* ══════════════════════════════════════════
       RESPONSIVE — MOBILE (≤ 767px)
    ══════════════════════════════════════════ */
    @media (max-width: 767px) {
      /* Navbar */
      #hamburger { display: flex; }
      .wi-nav-tabs { display: none; }
      .wi-navbar { padding: 0 14px; gap: 6px; }
      .wi-logo { font-size: 1.25rem; }
      .wi-employer-badge { display: none; }

      /* Sidebar — slide-in drawer */
      .wi-sidebar {
        position: fixed; top: 60px; left: 0;
        height: calc(100vh - 60px); z-index: 500;
        box-shadow: 6px 0 30px rgba(0,0,0,.3);
        transform: translateX(-100%);
        width: 280px; min-width: 280px;
        transition: transform .28s cubic-bezier(.4,0,.2,1);
      }
      .wi-sidebar-inner { min-width: 280px; }
      /* Open state on mobile: remove the collapsed class trick */
      .wi-sidebar.open { transform: translateX(0); }
      .wi-sidebar.collapsed { transform: translateX(-100%); }

      /* Overlay */
      .wi-overlay { display: none; }
      .wi-overlay.show { display: block; }

      /* Layout: single column, no overflow clipping */
      .wi-layout { height: auto; overflow: visible; flex-direction: column; min-height: calc(100vh - 60px); }
      .wi-main { overflow: visible; }

      /* Lead tabs — horizontal scroll */
      .wi-lead-row {
        padding: 0 12px; flex-wrap: nowrap;
        overflow-x: auto; gap: 0;
        scrollbar-width: none; -ms-overflow-style: none;
      }
      .wi-lead-row::-webkit-scrollbar { display: none; }
      .wi-lead-tab { padding: 12px 12px; font-size: .78rem; }
      .wi-export-btn { display: none; }

      /* Candidate type tabs — horizontal scroll */
      .wi-cand-tabs-row {
        padding: 8px 12px; overflow-x: auto;
        flex-wrap: nowrap; gap: 6px;
        scrollbar-width: none; -ms-overflow-style: none;
      }
      .wi-cand-tabs-row::-webkit-scrollbar { display: none; }
      .wi-cand-tab { font-size: .76rem; padding: 5px 12px; }

      /* Info banner */
      .wi-info-banner { padding: 9px 12px; font-size: .78rem; }

      /* Search row — stack vertically */
      .wi-search-row {
        padding: 10px 12px; flex-direction: column;
        align-items: stretch; gap: 8px;
      }
      .wi-search-group { max-width: 100%; }
      .wi-sort-group { justify-content: flex-end; }

      /* Results row */
      .wi-results-row {
        padding: 8px 12px; flex-wrap: wrap; gap: 6px;
      }
      .wi-no-filter-hint { display: none; }
      .wi-hide-details-btn { margin-left: auto; }

      /* Cards */
      .wi-cards { padding: 10px 12px; max-width: 100%; }
      .cand-card { padding: 14px 14px 12px; margin-bottom: 10px; }
      .cand-card:hover { transform: none; }

      /* Card header: stack avatar + name + relevance */
      .card-header-row { flex-direction: column; gap: 10px; }
      .relevance-row { display: none !important; }

      /* Detail rows: stack label above value */
      .detail-row { flex-direction: column; gap: 4px; margin-bottom: 8px; }
      .detail-label { min-width: unset; font-size: .7rem; }
      .detail-value { font-size: .79rem; }

      /* Info pills: smaller */
      .info-pill { font-size: .74rem; padding: 3px 8px; }

      /* Card footer: stack meta + buttons */
      .card-footer-row { flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 12px; }
      .action-btns { width: 100%; }
      .btn-status { width: 100%; }
      .wi-btn { font-size: .72rem; padding: 6px 10px; }
    }
 .roles{
        padding: 10px;
    font-size: 18px;
    color: #38447f;
    background-color: #dee3ff;
 }
    /* ══════════════════════════════════════════
       RESPONSIVE — SMALL MOBILE (≤ 400px)
    ══════════════════════════════════════════ */
    @media (max-width: 400px) {
      .wi-logo { font-size: 1.1rem; }
      .wi-user-avatar { width: 30px; height: 30px; font-size: .8rem; }
      .cand-name { font-size: .9rem; }
      .cand-badge, .cand-missed-tag, .cand-resume-tag { font-size: .62rem; padding: 2px 7px; }
      .wi-btn { font-size: .68rem; padding: 5px 9px; }
      .action-btns { gap: 4px; }
    }