

 
    :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: 1000px;
      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: 1100px;
      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;
    }

    .job-card {
      background: var(--surface);
      border: 1.5px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      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: 13px;
      color: var(--muted);
      margin-bottom: 4px;
    }

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

    .job-edit-link {
      color: var(--muted);
      font-size: 13px;
      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;
    }

    .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; }
      .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: 1030;
    }
    .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; }
    }
