.modal-backdrop {
    position: relative;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 50px 20px 50px 20px;
    box-sizing: border-box;
    width: 100%;
    z-index: 1;
    overflow: visible;
    height: auto;
  }

  /* Push content below the fixed onboarding header (56px tall) */
  .vendor-header-active .modal-backdrop {
    padding-top: calc(50px + 56px);
  }

  .modal-content {
    width: 100%;
    max-width: 1080px;
    padding: 25px 50px;

    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;

    box-shadow: 0 5px 18px rgba(11, 51, 90, 0.3);

    position: relative;
    /* FIX: overflow:hidden was clipping absolutely-positioned dropdowns */
    overflow: hidden;
  }

  .modal-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #042b56 0%, #118af2 50%, #0dc3f4 100%);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    z-index: 2;
    pointer-events: none;
  }

  #modal1 {
    display: none;
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .modal-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 6px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
    position: relative;
  }

  .modal-header h2 {
    font-size: 24px;        /* reduced from 32px — now proportional to labels (16px) and subtitle (15px) */
    font-weight: 700;
    margin: 0;
    color: #042b56;
  }

  .modal-header .header-center {
    width: 100%;
  }

  .step-description {
    font-size: 15px;        /* raised from 14px — matches label font-size for visual harmony */
    color: #001a32;
    margin-top: 4px;
    line-height: 1.5;
  }

  .step-indicator {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 13px;
    font-weight: 500;
    color: #042b56;
    background: rgba(13, 195, 245, 0.06);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(4, 43, 86, 0.5);
  }

  .register-label {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: #042b56;
  }

  .goal-card {
    flex: 1 1 0;
    min-width: 200px;
    max-width: 310px;
    min-height: 185px;
    height: auto;
    border-radius: 10px;

    border: 1px solid transparent;

    background:
      linear-gradient(white, white) padding-box,
      linear-gradient(180deg, var(--hover-blue1), var(--hover-blue2)) border-box;

    padding: 18px;
    text-align: center;
    font-weight: 700;

    cursor: pointer;
    position: relative;

    box-shadow:
      0px 6px 12px #0000001a,
      0px 22px 22px #00000017,
      0px 50px 30px #0000000d;
    transform: translateY(0);
    will-change: transform;

    transition:
      transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .modal-header-gradient {
    font-size: 1.8rem;
    /* clear, readable */
    font-weight: 600;
    /* semi-bold */
    color: #042b56;
    /* primary brand blue */
    line-height: 1.4;
    margin: 0;
    margin-top: 10px;
    text-align: center;
  }

  .modal-subtitle {
    margin-top: 8px;

    font-size: 15px;
    line-height: 1.6;
    color: #042b56;
    /* soft neutral text */
    text-align: center;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .goal-card.selected .check-circle {
    display: flex;
  }

  .goal-card.selected {
    transform: scale(1.05);
  }

  .goal-card:hover {
    transform: translateY(-5px);
  }

  /* Mid laptop (≤1366px) */
  @media (max-width: 1366px) {
    .goal-card {
      min-height: 160px;
    }
    .goal-card img {
      height: 60px;
      width: 60px;
      object-fit: contain;
    }
    .modal-backdrop {
      padding-top: 30px;
      padding-bottom: 30px;
    }
  }

  /* Small laptop (≤1200px) */
  @media (max-width: 1200px) {
    .goal-card {
      min-height: 145px;
    }
    .goal-card img {
      height: 45px;
      width: 45px;
      object-fit: contain;
    }
    .modal-backdrop {
      padding-top: 20px;
      padding-bottom: 20px;
    }
  }

  /* Narrow laptop (1100px–1200px) */
  @media (min-width: 1101px) and (max-width: 1200px) {
    .goal-card img {
      height: 45px;
      width: 45px;
      object-fit: contain;
    }
  }

  /* Responsive wrap */
  @media (max-width: 900px) {
    .goal-grid {
      flex-wrap: wrap;
      gap: 20px;
    }

    .goal-card {
      flex: 0 0 auto;
      width: 100%;
      max-width: 340px;
      min-height: auto;
      height: auto;
    }
  }

  /* ── Goal cards: mobile small screens ── */
  @media (max-width: 480px) {
    .modal-content {
      padding: 16px 14px !important;
    }

    #modal16 .modal-content {
      padding: 16px 12px !important;
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
    }

    .modal-header-gradient {
      font-size: 1.3rem !important;
    }

    .modal-subtitle {
      font-size: 13px !important;
    }

    .goal-grid {
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .goal-card {
      width: 100% !important;
      max-width: 100% !important;
      min-height: auto !important;
      height: auto !important;
      padding: 14px !important;
      transform: none !important;
    }

    .goal-card.selected {
      transform: scale(1.02) !important;
    }

    .goal-card img {
      height: 70px !important;
      margin-bottom: 12px !important;
    }

    .goal-card h4 {
      font-size: 0.85rem !important;
    }

    .modal-footer {
      flex-direction: row !important;
      flex-wrap: nowrap !important;
      justify-content: space-between !important;
      gap: 10px !important;
    }

    .modal-footer a,
    .modal-footer button {
      width: auto !important;
      min-width: fit-content !important;
      text-align: center !important;
      justify-content: center !important;
    }

    .modal-backdrop {
      padding: 16px 10px !important;
    }

    #modal16.modal-backdrop {
      padding: 16px 10px !important;
      box-sizing: border-box !important;
      width: 100% !important;
    }
  }

  /* ==== FOOTER ==== */
  .modal-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-top: 2rem;
    gap: 0.5rem;
  }

  /* ── Upload docs row: side-by-side on desktop, stacked on mobile ── */
  @media (min-width: 769px) {
    .upload-docs-row .form-group {
      flex: 1 1 0 !important;
    }
  }
  @media (max-width: 768px) {
    .upload-docs-row {
      flex-direction: column !important;
    }
    .upload-docs-row .form-group {
      flex: 1 1 100% !important;
      width: 100% !important;
    }
  }

  @media (min-width: 769px) {
    .upload-docs-row .form-group label {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  }

  /* ===== Universal Button Style ===== */
  .btn-primary,
  .modal-footer a,
  .modal-footer button {
    align-self: flex-start;
    padding: 12px 28px !important;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 999px !important;
    border: none !important;
    background: linear-gradient(90deg, #0B335A, #1f5e9d) !important;
    color: #fff !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(11, 51, 90, 0.2);
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    width: auto !important;
    min-width: fit-content;
    text-decoration: none !important;
  }

  .btn-primary:hover,
  .modal-footer a:hover,
  .modal-footer button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(11, 51, 90, 0.35);
    opacity: 0.92;
  }

  /* ===== PROGRESS BAR / TRUST SCORE placeholders ===== */
  .stepper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: 20px auto 10px;
    font-family: Inter, Arial, sans-serif;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .stepper::-webkit-scrollbar { display: none; }

  /* Individual step */
  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 88px;
    flex-shrink: 0;
    margin-bottom: 4px;
  }

  /* Step label */
  .step span {
    margin-top: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #042b56;
    white-space: normal;
    word-break: break-word;
    max-width: 90px;
    line-height: 1.3;
  }

  /* Step circle (base) */
  .circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
    flex-shrink: 0;
  }

  /* Completed step */
  .step.completed .circle {
    background: linear-gradient(90deg, #0B335A, #1f5e9d);
    color: #fff;
  }

  /* Active step */
  .step.active .circle {
    background: linear-gradient(90deg, #0B335A, #1f5e9d);
    color: #fff;
  }

  /* Upcoming step */
  .step.upcoming .circle {
    background: #e0f2fe;
    color: #042b56;
  }

  .line {
    flex: 1;
    min-width: 14px;
    height: 2px;
    margin: 0 2px;
    position: relative;
    top: 14px;
    z-index: 1;
    align-self: flex-start;
    flex-shrink: 1;
    background-image: repeating-linear-gradient(
      to right,
      #d1d5db 0,
      #d1d5db 3px,
      transparent 3px,
      transparent 6px
    );
  }

  /* ── Stepper: tablet (≤768px) ── */
  @media (max-width: 768px) {
    .stepper {
      justify-content: flex-start;
      margin: 14px 0 8px;
      padding: 0 0 4px;
    }
    .step { min-width: 72px; }
    .step span { font-size: 10px; max-width: 72px; }
    .circle { width: 24px; height: 24px; font-size: 11px; }
    .line { min-width: 10px; top: 12px; }
  }

  /* ── Stepper: small phones (≤480px) ── */
  @media (max-width: 480px) {
    .stepper { margin: 10px 0 4px; }
    .step { min-width: 58px; }
    .step span { font-size: 9px; max-width: 58px; }
    .circle { width: 22px; height: 22px; font-size: 10px; }
    .line { min-width: 6px; top: 11px; }
  }

  /* css for the eye icon */

  .password-wrapper {
    position: relative;
    width: 100%;
  }

  .password-wrapper input {
    width: 100%;
    padding-right: 40px;
  }

  .toggle-password {
    position: absolute;
    right: 12px;
    top: 57%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1rem;
    color: #7b8a9a;
    transition: color 0.3s ease;
  }

  .toggle-password:hover {
    color: #118af2;
  }

  /* ── PASSWORD STRENGTH BAR (vendor onboarding) ─── */
  .ob-pw-strength-wrap { margin-top: 8px; display: none; }
  .ob-pw-bars { display: flex; gap: 5px; margin-bottom: 4px; }
  .ob-pw-seg {
    flex: 1; height: 4px; border-radius: 3px;
    background: #e2e8f0; transition: background 0.3s ease;
  }
  .ob-pw-label { font-size: 12px; font-weight: 600; }

  /* css for the modal2 */

  #modal2.modal-backdrop {
    overflow: visible;
  }

  .vendor-header-active #modal2.modal-backdrop {
    padding-top: calc(50px + 56px);
  }

  /* ===== Modal Content ===== */
  #modal2 .modal-content,
  #modal8 .modal-content,
  #modal9 .modal-content,
  #modal10 .modal-content,
  #modal11 .modal-content,
  #modal12 .modal-content,
  #modal13 .modal-content,
  #modal14 .modal-content,
  #modal16 .modal-content {
    width: 100%;
    max-width: 1080px;
    max-height: none;
    /* FIX: both axes must be visible so dropdowns float over content */
    overflow: hidden;
    padding: 25px 50px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: slideIn 0.3s ease;
  }

  /* Slide In Animation */
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ===== Modal Header ===== */
  #modal2 .modal-header,
  #modal8 .modal-header,
  #modal9 .modal-header,
  #modal10 .modal-header,
  #modal11 .modal-header,
  #modal12 .modal-header,
  #modal13 .modal-header,
  #modal14 .modal-header,
  #modal16 .modal-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 6px;
    border-bottom: 1px solid #e2e8f0;
    padding: 40px 0;
    position: relative;
    margin-top: -2%;
  }

  /* Gradient Heading */
  #modal2 .modal-header h2,
  #modal8 .modal-header h2,
  #modal9 .modal-header h2,
  #modal10 .modal-header h2,
  #modal11 .modal-header h2,
  #modal12 .modal-header h2,
  #modal13 .modal-header h2,
  #modal14 .modal-header h2,
  #modal16 .modal-header h2 {
    font-size: 24px;        /* consistent with global .modal-header h2 */
    font-weight: 700;
    margin: 0;
    color: #042b56;
  }

  /* Description */
  #modal2 .modal-header .step-description,
  #modal8 .modal-header .step-description,
  #modal9 .modal-header .step-description,
  #modal10 .modal-header .step-description,
  #modal11 .modal-header .step-description,
  #modal12 .modal-header .step-description,
  #modal13 .modal-header .step-description,
  #modal14 .modal-header .step-description {
    font-size: 15px;        /* matches form label scale */
    color: #001a32;
    margin-top: 4px;
    line-height: 1.5;
  }

  /* Step Indicator */
  #modal2 .step-indicator,
  #modal8 .step-indicator,
  #modal9 .step-indicator,
  #modal10 .step-indicator,
  #modal11 .step-indicator,
  #modal12 .step-indicator,
  #modal13 .step-indicator,
  #modal14 .step-indicator,
  #modal16 .step-indicator {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 13px;
    font-weight: 500;
    color: #0f172a;

    padding: 4px 10px;
    border-radius: 20px;
  }

  /* ===== Form Rows ===== */
  #modal2 .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
  }

  #modal2 .form-group {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
  }

  /* Inputs, selects, rich text */

  #modal2 input[type="text"],
  #modal2 input[type="url"],
  #modal2 input[type="file"],
  #modal2 input[type="email"],
  #modal2 input[type="tel"],
  /* keep tel here so WhatsApp stays normal */
  #modal2 select,
  #modal2 #description_input {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    outline: none;
    background: #fff;
    transition: border 0.2s;
  }

  #modal2 input.is-valid,
  #modal14 input.is-valid {
    border-color: #042b56;
    box-shadow: none;
  }

  #modal2 input.is-invalid,
  #modal14 input.is-invalid {
    border-color: #ef4444;
    box-shadow: none;
  }

  .ob-field-error {
    font-size: 12px;
    color: #ef4444;
    margin-top: 4px;
    display: none;
  }

  .ob-field-error.visible {
    display: block;
  }

  #modal2 textarea,
  #modal8 textarea,
  #modal9 textarea,
  #modal10 textarea,
  #modal11 textarea,
  #modal12 textarea,
  #modal13 textarea,
  #modal14 textarea,
  #modal2 #description_input,
  #modal8 #description_input,
  #modal9 #description_input,
  #modal10 #description_input,
  #modal11 #description_input,
  #modal12 #description_input,
  #modal13 #description_input,
  #modal14 #description_input {
    width: 100%;
    min-height: 120px;
    border: 1.6px solid #aabcd4;
    border-radius: 12px;
    padding: 15px;
    background: #ffffff;

    font-size: 16px;
    line-height: 24px;
    color: #042b56;
    box-sizing: border-box;
    outline: none;
  }

  /* Quill rich text editor fixes */
  .ql-toolbar {
    border: 1px solid #cfdbe8 !important;
    border-radius: 12px 12px 0 0;
    background: #ffffff;
  }

  .ql-container {
    border: 1px solid #cfdbe8 !important;
    border-radius: 0 0 12px 12px;
    background: #ffffff;
    min-height: 100px;

    font-size: 16px;
    line-height: 24px;
    color: #042b56;
  }

  /* ── Address Autocomplete Dropdown ── */
  .address-dropdown {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    z-index: 9999;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(4, 43, 86, 0.12);
    max-height: calc(10 * 44px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #aabcd4 transparent;
  }
  .address-dropdown::-webkit-scrollbar {
    width: 6px;
  }
  .address-dropdown::-webkit-scrollbar-track {
    background: transparent;
  }
  .address-dropdown::-webkit-scrollbar-thumb {
    background: #aabcd4;
    border-radius: 3px;
  }
  .address-dropdown .addr-item {
    padding: 10px 14px;
    font-size: 13.5px;
    color: #1e293b;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    line-height: 1.45;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    transition: background 0.15s ease;
  }
  .address-dropdown .addr-item:last-child {
    border-bottom: none;
  }
  .address-dropdown .addr-item:hover {
    background: #eff6ff;
    color: #042b56;
  }
  .address-dropdown .addr-item .addr-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: #118af2;
    font-size: 13px;
  }
  .address-dropdown .addr-item .addr-main {
    font-weight: 600;
    color: #042b56;
    display: block;
  }
  .address-dropdown .addr-item .addr-sub {
    font-size: 12px;
    color: #64748b;
    display: block;
    margin-top: 1px;
  }
  .address-dropdown .addr-empty,
  .address-dropdown .addr-loading,
  .address-dropdown .addr-error {
    padding: 12px 14px;
    font-size: 13px;
    color: #64748b;
    text-align: center;
  }
  .address-dropdown .addr-loading {
    color: #118af2;
  }
  /* parent must be relative for dropdown positioning */
  .form-group {
    position: relative;
  }

  #modal2 #admin_phone_input {
    padding: 12px 10px 12px 48px;
  }

  /* ===== Modal Footer ===== */
  #modal2 .modal-footer,
  #modal8 .modal-footer,
  #modal9 .modal-footer,
  #modal10 .modal-footer,
  #modal11 .modal-footer,
  #modal12 .modal-footer,
  #modal13 .modal-footer,
  #modal14 .modal-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 15px;
    margin-top: 30px;
  }

  #modal2 .modal-footer button,
  #modal2 .modal-footer a,
  #modal8 .modal-footer button,
  #modal8 .modal-footer a,
  #modal9 .modal-footer button,
  #modal9 .modal-footer a,
  #modal10 .modal-footer button,
  #modal10 .modal-footer a,
  #modal11 .modal-footer button,
  #modal11 .modal-footer a,
  #modal12 .modal-footer button,
  #modal12 .modal-footer a,
  #modal13 .modal-footer button,
  #modal13 .modal-footer a,
  #modal14 .modal-footer button,
  #modal14 .modal-footer a,
  #modal16 .modal-footer button,
  #modal16 .modal-footer a {
    padding: 12px 28px !important;
    border-radius: 999px !important;
    border: none !important;
    background: linear-gradient(90deg, #0B335A, #1f5e9d) !important;
    color: #fff !important;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    width: auto !important;
    min-width: fit-content;
    text-decoration: none !important;
    box-shadow: 0 3px 10px rgba(11, 51, 90, 0.2);
    transition: all 0.3s ease;
  }

  #modal2 .modal-footer button:hover,
  #modal2 .modal-footer a:hover,
  #modal8 .modal-footer button:hover,
  #modal8 .modal-footer a:hover,
  #modal9 .modal-footer button:hover,
  #modal9 .modal-footer a:hover,
  #modal10 .modal-footer button:hover,
  #modal10 .modal-footer a:hover,
  #modal11 .modal-footer button:hover,
  #modal11 .modal-footer a:hover,
  #modal12 .modal-footer button:hover,
  #modal12 .modal-footer a:hover,
  #modal13 .modal-footer button:hover,
  #modal13 .modal-footer a:hover,
  #modal14 .modal-footer button:hover,
  #modal14 .modal-footer a:hover,
  #modal16 .modal-footer button:hover,
  #modal16 .modal-footer a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(11, 51, 90, 0.35);
    opacity: 0.92;
  }

  /* ===== Goal Cards (Optional if you have them) ===== */
  .goal-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 0.5rem;
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .goal-card img {
    height: 90px;
    width: auto;
    margin: 0 auto 22px;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
  }

  @media (max-width: 1366px) {
    .goal-card img {
      height: 75px;
      width: 75px;
      object-fit: contain;
    }
  }

  @media (max-width: 1200px) {
    .goal-card img {
      height: 60px;
      width: 60px;
      object-fit: contain;
    }
  }

  @media (max-width: 900px) {
    .goal-card img {
      height: 75px;
      width: 75px;
      object-fit: contain;
    }
  }

  @media (max-width: 480px) {
    .goal-card img {
      height: 60px;
      width: 60px;
      object-fit: contain;
    }
  }

  .goal-card h4 {
    font-size: 0.9rem;
    color: #042b56;
    margin: 10px 0 0 0;
    line-height: 1.4;
    text-align: center;
  }

  .goal-card .check-circle {
    position: absolute;
    top: 12px;
    right: 12px;

    width: 22px;
    height: 22px;
    border-radius: 50%;

    background: transparent;
    color: #042b56;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
      background 0.25s ease,
      color 0.25s ease;
  }

  .goal-card .check-circle i {
    display: block;
    font-size: 11px;
    line-height: 1;
  }

  /* ✅ On select: blue bg + white icon */
  .goal-card.selected .check-circle {
    background: linear-gradient(90deg, #0B335A, #1f5e9d);
    color: #ffffff;
  }

  /* Keep your existing scale effect */
  .goal-card.selected {
    transform: scale(1.05);
  }

  /* ===== Responsive ===== */

  @media (max-width: 900px) {
    /* Make all form-groups full width */
    #modal2 .form-group,
    #modal8 .form-group,
    #modal9 .form-group,
    #modal10 .form-group,
    #modal11 .form-group,
    #modal12 .form-group,
    #modal13 .form-group,
    #modal14 .form-group {
      flex: 1 1 100%;
    }

    /* Goal cards full width */
    .goal-grid {
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
    }
    .goal-card {
      flex: 0 0 auto;
      width: 100%;
      max-width: 340px;
      min-height: auto;
    }

    /* Adjust modal padding */
    #modal2 .modal-content,
    #modal8 .modal-content,
    #modal9 .modal-content,
    #modal10 .modal-content,
    #modal11 .modal-content,
    #modal12 .modal-content,
    #modal13 .modal-content,
    #modal14 .modal-content,
    #modal16 .modal-content {
      padding: 30px 20px;
    }

    /* Header & Step Indicator */
    #modal2 .modal-header,
    #modal8 .modal-header,
    #modal9 .modal-header,
    #modal10 .modal-header,
    #modal11 .modal-header,
    #modal12 .modal-header,
    #modal13 .modal-header,
    #modal14 .modal-header,
    #modal16 .modal-header {
      align-items: flex-start;
      text-align: left;
      gap: 4px;
      padding-bottom: 10px;
    }

    #modal2 .modal-header h2,
    #modal8 .modal-header h2,
    #modal9 .modal-header h2,
    #modal10 .modal-header h2,
    #modal11 .modal-header h2,
    #modal12 .modal-header h2,
    #modal13 .modal-header h2,
    #modal14 .modal-header h2,
    #modal16 .modal-header h2 {
      font-size: 20px;      /* scaled from 24px desktop base */
    }

    #modal2 .modal-header .step-description,
    #modal8 .modal-header .step-description,
    #modal9 .modal-header .step-description,
    #modal10 .modal-header .step-description,
    #modal11 .modal-header .step-description,
    #modal12 .modal-header .step-description,
    #modal13 .modal-header .step-description,
    #modal14 .modal-header .step-description,
    #modal16 .modal-header .step-description {
      font-size: 13px;
      margin-top: 2px;
    }

    #modal2 .step-indicator,
    #modal8 .step-indicator,
    #modal9 .step-indicator,
    #modal10 .step-indicator,
    #modal11 .step-indicator,
    #modal12 .step-indicator,
    #modal13 .step-indicator,
    #modal14 .step-indicator,
    #modal16 .step-indicator {
      position: static;
      /* ✅ fixes overlap */
      margin-top: 8px;
      font-size: 12px;
    }

    /* Footer buttons — always stay in a row */
    #modal2 .modal-footer,
    #modal8 .modal-footer,
    #modal9 .modal-footer,
    #modal10 .modal-footer,
    #modal11 .modal-footer,
    #modal12 .modal-footer,
    #modal13 .modal-footer,
    #modal14 .modal-footer,
    #modal16 .modal-footer {
      flex-direction: row !important;
      flex-wrap: nowrap !important;
      justify-content: space-between !important;
      gap: 10px;
    }

    #modal2 .modal-footer button,
    #modal2 .modal-footer a,
    #modal8 .modal-footer button,
    #modal8 .modal-footer a,
    #modal9 .modal-footer button,
    #modal9 .modal-footer a,
    #modal10 .modal-footer button,
    #modal10 .modal-footer a,
    #modal11 .modal-footer button,
    #modal11 .modal-footer a,
    #modal12 .modal-footer button,
    #modal12 .modal-footer a,
    #modal13 .modal-footer button,
    #modal13 .modal-footer a,
    #modal14 .modal-footer button,
    #modal14 .modal-footer a,
    #modal16 .modal-footer button,
    #modal16 .modal-footer a {
      width: auto !important;
      min-width: fit-content;
      text-align: center;
      justify-content: center;
    }
  }

  #modal11 input[type="text"],
  #modal11 input[type="email"] {
    width: 100%;
    padding: 12px 14px;
    height: 56px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    box-sizing: border-box;
  }

  #modal11 input[type="tel"]:focus,
  #modal11 input[type="url"]:focus {
    border-color: #042b56;
    outline: none;
    box-shadow: none;
  }

  #modal12 input[type="text"],
  #modal12 input[type="url"],
  #modal12 input[type="file"] {
    width: 100%;
    padding: 12px 14px;
    height: 56px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    box-sizing: border-box;
    color: #042b56;
    outline: none;
  }

  #modal12 .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
  }
  #modal12 .form-group {
    flex: 1 1 45%;
    min-width: 0;
  }
  #modal12 .exp-preview-group {
    flex: 0 0 110px;
    max-width: 110px;
  }
  #modal12 .exp-upload-group {
    max-width: 50%;
  }
  .exp-preview-box {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    overflow: hidden;
  }
  .exp-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  @media (max-width: 900px) {
    #modal12 .form-row {
      flex-direction: column;
      gap: 10px;
    }
    #modal12 .exp-upload-group {
      max-width: 100%;
    }
    #modal12 .exp-preview-group label {
      display: none;
    }
  }

  #modal14 input[type="text"],
  #modal14 input[type="email"],
  #modal14 input[type="url"],
  #modal14 input[type="file"] {
    width: 100%;
    height: 56px;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fff;
    box-shadow: none !important;
    transition: none !important;
    border-radius: 13px;
    color: #042b56;
  }

  /* ===== Selected box (top input look) ===== */
  #modal14 [id^="selectedServices"] {
    height: 56px !important;
    padding: 15px !important;
    border: 1.6px solid #cfdbe8 !important;
    border-radius: 12px !important;
    background: #ffffff !important;

    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    color: #042b56 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    cursor: pointer;
    box-sizing: border-box;
  }

  /* caret */
  #modal14 [id^="selectedServices"] span {
    font-size: 12px;
    color: #042b56;
  }

  /* Focus – SAME as other inputs */
  #modal14 [id^="selectedServices"]:focus,
  #modal14 [id^="selectedServices"]:focus-visible {
    border-color: #042b56 !important;
    outline: none;
    box-shadow: none;
  }

  /* ===== New search-based service dropdown ===== */
  #modal14 .svc-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 6px;
    border: 1.6px solid #cfdbe8;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    z-index: 200;
    overflow: hidden;
  }

  #modal14 .svc-search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-bottom: 1px solid #e8eef5;
  }

  #modal14 .svc-search-icon {
    color: #94a3b8;
    font-size: 13px;
    flex-shrink: 0;
  }

  #modal14 .svc-search-input {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    height: auto !important;
    font-size: 14px !important;
    color: #042b56 !important;
    background: transparent !important;
    width: 100%;
  }

  #modal14 .svc-list {
    max-height: 188px;
    overflow-y: auto;
    padding: 4px 0;
  }

  #modal14 .svc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 400;
    color: #042b56;
    cursor: pointer;
    transition: background .12s;
    margin: 0;
    width: 100%;
  }

  #modal14 .svc-item:hover { background: rgba(17,138,242,.07); }
  #modal14 .svc-item.svc-checked { font-weight: 600; }

  #modal14 .svc-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #118af2;
    cursor: pointer;
    flex-shrink: 0;
  }

  #modal14 .svc-empty {
    padding: 12px 14px;
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
  }

  /* ===== Placeholder ===== */
  #modal14 input::placeholder {
    color: #64748b;
    font-size: 16px;
  }

  /* ===== Remove bootstrap interference ===== */
  #modal14 .dropdown,
  #modal14 .dropdown-menu,
  #modal14 .dropdown-toggle {
    all: unset;
  }

  #modal14.modal-backdrop {
    overflow: visible;
  }

  .vendor-header-active #modal14.modal-backdrop {
    padding-top: calc(50px + 56px);
  }

  #modal16.modal-backdrop {
    overflow: visible;
  }

  .vendor-header-active #modal16.modal-backdrop {
    padding-top: calc(50px + 56px);
  }

  #video_ad_preview video {
    width: 150px !important;
    height: 150px !important;
    object-fit: cover !important;
  }

  /* Modal content: fixed width, centered */
  #modal14 .modal-content {
    width: 100%;
    max-width: 1080px;
    /* keep same width as other modals */
    margin: 0 auto;
    /* center horizontally if backdrop flex fails */
    padding: 25px 40px;
    /* equal left/right spacing */
    background: #fff;
    /* ensure visible */
    border-radius: 8px;
    box-sizing: border-box;
  }

  #modal14 input:-webkit-autofill,
  #modal14 input:-webkit-autofill:hover,
  #modal14 input:-webkit-autofill:focus,
  #modal14 textarea:-webkit-autofill,
  #modal14 textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: inherit !important;
    box-shadow: 0 0 0 1000px #ffffff inset !important;
    transition: background-color 9999s ease-in-out 0s;
    -webkit-text-fill-color: #042b56 !important;
  }

  @media (max-width: 1400px) {
    #modal2 .form-row {
      flex-direction: column;
      /* stack inputs vertically */
    }
  }

  /* modern full-width search */
  .search-bar {
    position: relative;
    width: 100%;
    /* fill parent */
    max-width: none;
    /* remove the 350px cap */
    margin: 0.6rem 0;
    /* subtle vertical spacing */
  }

  .search-bar input[type="text"] {
    width: 100%;
    padding: 0.72rem 2.8rem 0.72rem 1rem;
    /* add space on right for icon */
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fbfdff;
    /* slight off-white */
    box-shadow: 0 1px 4px rgba(2, 6, 23, 0.04);
    border-radius: 10px;
    font-size: 0.98rem;
    transition:
      box-shadow 0.15s,
      border-color 0.15s;
    box-sizing: border-box;
  }

  .search-bar input[type="text"]:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 6px 18px rgba(14, 165, 233, 0.08);
  }

  .search-icon {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
    font-size: 1.05rem;
  }

  #modal2 label,
  #modal8 label,
  #modal9 label,
  #modal10 label,
  #modal11 label,
  #modal12 label,
  #modal13 label,
  #modal14 label {
    font-weight: 580;
    /* Medium */
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #042b56;
    /* white text for contrast */
    margin-top: 12px;
    margin-bottom: 6px;
    display: inline-block;

    /* optional spacing inside background */
    border-radius: 4px;
    /* optional rounded corners */
  }

  #modal2 input:not([type="checkbox"]):not([type="radio"]),
  #modal2 select,
  #modal8 input:not([type="checkbox"]):not([type="radio"]),
  #modal8 select,
  #modal9 input:not([type="checkbox"]):not([type="radio"]),
  #modal9 select,
  #modal10 input:not([type="checkbox"]):not([type="radio"]),
  #modal10 select,
  #modal11 input:not([type="checkbox"]):not([type="radio"]),
  #modal11 select,
  #modal12 input:not([type="checkbox"]):not([type="radio"]),
  #modal12 select,
  #modal13 input:not([type="checkbox"]):not([type="radio"]),
  #modal13 select,
  #modal14 input:not([type="checkbox"]):not([type="radio"]),
  #modal14 select {
    height: 56px;
    /* fixed height */
    border-radius: 12px;
    /* rounded corners */

    /* subtle gray border */
    padding: 15px;
    /* inner spacing */
    background: #ffffff;
    /* white background */

    /* Font styles */

    font-weight: 400;
    font-size: 16px;

    letter-spacing: 0;
    color: #042b56;
    /* input text color */

    box-sizing: border-box;
    /* include padding in width */
    opacity: 1;
    outline: none;
    transition:
      border-color 0.2s,
      box-shadow 0.2s;
  }

  #modal2 #whatsapp_input {
    padding-left: 48px !important;
  }

  /* On focus */
  #modal2 input:focus,
  #modal2 select:focus,
  #modal8 input:focus,
  #modal8 select:focus,
  #modal9 input:focus,
  #modal9 select:focus,
  #modal10 input:focus,
  #modal10 select:focus,
  #modal11 input:focus,
  #modal11 select:focus,
  #modal12 input:focus,
  #modal12 select:focus,
  #modal13 input:focus,
  #modal13 select:focus,
  #modal14 input:focus,
  #modal14 select:focus {
    border-color: #042b56;
  }

  #modal13 .form-group input:focus {
    border-color: #042b56 !important;
  }

  #modal2 input[type="number"] {
    width: 100%;
    height: 56px;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #cfdbe8;
    border-radius: 12px;
    outline: none;
    box-shadow: none;
  }

  /* Focus style (override browser default) */
  #modal2 input[type="number"]:focus {
    border-color: #042b56 !important;
    outline: none !important;
    box-shadow: none !important;
  }

  /* intl-tel-input wrapper — both phone fields */
  #modal2 .iti {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    height: 56px;
    display: flex;
    align-items: center;
    background: #fff;
  }

  /* Remove border from the inner tel input — .iti wrapper owns it */
  #modal2 .iti input[type="tel"] {
    border: none !important;
    border-radius: 0 12px 12px 0 !important;
    outline: none !important;
    box-shadow: none !important;
    height: 100% !important;
    background: transparent;
  }

  /* Remove the vertical separator line between flag and input */
  #modal2 .iti__flag-container {
    border-right: none;
    padding-left: 5px;
  }



  .iti__country.iti__highlight {
    background: rgba(13, 195, 245, 0.12);
  }

  .iti__country:hover {
    background: rgba(13, 195, 245, 0.12);
  }

  #modal2 input[type="range"]:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
  }

  /* intl-tel-input wrapper */
  #modal2 .iti:focus-within {
    border-color: #042b56 !important;
  }

  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0396ff, #1f5e9d);
    cursor: pointer;
    border: 3px solid #ffffff;
    /* optional white ring */
    box-shadow: 0 0 0 2px rgba(13, 195, 245, 0.25);
  }

  #company_logo_preview {
    min-height: 0;
  }

  /* ── File upload preview cards ─────────────────────────────────────────────
     These rules beat any global "img { max-width:100%; height:auto }" from
     base.html / Bootstrap / Tailwind that would otherwise shrink the preview. */
  #company_logo_preview img,
  #business_registration_preview img,
  #gst_certificate_preview img {
    width: 176px !important;
    height: 176px !important;
    max-width: 176px !important;
    max-height: 176px !important;
    min-width: 176px !important;
    min-height: 176px !important;
    object-fit: contain !important;
    display: block !important;
  }

  /* code for the nput field */
  input[type="file"] {
    width: 100%;
    height: 56px;
    border: 1px solid #cfdbe8;
    border-radius: 12px;
    padding: 8px;
    font-size: 15px;
    color: #042b56;
    background: #fff;
    transition: border-color 0.2s ease;
  }

  /* File button */
  input[type="file"]::file-selector-button,
  input[type="file"]::-webkit-file-upload-button {
    background: #e0f2fe;
    color: #042b56;
    border: none;
    border-left: 4px solid #3b82f6;
    border-radius: 6px;
    padding: 6px 12px;
    margin-top: -10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: none;
    margin-right: 12px;
  }

  input[type="file"]::file-selector-button:hover,
  input[type="file"]::-webkit-file-upload-button:hover {
    background: #e0f2fe !important;
    transform: none !important;
  }

  /* Unified focus (same as other inputs) */
  input[type="file"]:focus {
    /* NOTE: transition on file input is intentionally NOT "all"
       to prevent layout ripple that would shrink the preview box */
    border-color: #2a619c;
    outline: none;
    box-shadow: none;
  }

  /* Placeholder styling */
  #modal2 input::placeholder,
  #modal8 input::placeholder,
  #modal9 input::placeholder,
  #modal10 input::placeholder,
  #modal11 input::placeholder,
  #modal12 input::placeholder,
  #modal13 input::placeholder,
  #modal14 input::placeholder {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #64748b;
    /* subtle gray placeholder */
  }

  #selectedLanguages {
    border: 1px solid #cfdbe8;
    border-radius: 12px;
    padding: 10px 14px;
    background: #ffffff;

    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #042b56;
    cursor: pointer;
    box-sizing: border-box;
    min-height: 56px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
  }

  /* Pill chips for selected languages */
  #selectedLanguages .lang-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(17, 138, 242, 0.1);
    color: #042b56;
    border: 1px solid rgba(17, 138, 242, 0.3);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
  }

  #selectedLanguages .lang-chip .chip-remove {
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    color: #118af2;
    font-weight: 700;
    margin-left: 2px;
    transition: color 0.15s;
  }

  #selectedLanguages .lang-chip .chip-remove:hover {
    color: #e53e3e;
  }

  /* Arrow always stays at the end */
  #selectedLanguages .lang-arrow {
    margin-left: auto;
    flex-shrink: 0;
  }

  /* Placeholder text (when nothing selected) */
  #selectedLanguages.placeholder {
    color: #042b56;
    /* subtle gray same as input placeholders */
  }

  input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus,
  textarea:-webkit-autofill,
  textarea:-webkit-autofill:hover,
  textarea:-webkit-autofill:focus,
  select:-webkit-autofill,
  select:-webkit-autofill:hover,
  select:-webkit-autofill:focus {
    -webkit-text-fill-color: #042b56 !important;
    box-shadow: 0 0 0 1000px #ffffff inset !important;
    /* THIS removes blue */
    background-color: #ffffff !important;
    border-color: #cbd5e1 !important;
    transition: background-color 5000s ease-in-out 0s;
  }

  /* Language dropdown rows */
  #languageOptions .option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    font-size: 14px;
    color: #042b56;
    cursor: pointer;
    line-height: 1;
  }

  #languageOptions .option:hover {
    background: #f2f6ff;
  }

  #languageOptions input[type="checkbox"] {
    accent-color: #118af2;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin: 0;
    cursor: pointer;
  }

  /* office photo and video  */
  .file-hint {
    font-size: 12px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1;
    margin-left: 6px;
  }

  /* FIX: prevent the preview box from being squished by the flex container
     when the file input height changes after upload */
  .file-preview {
    align-self: flex-start;
    flex-shrink: 0;
    width: 100%;
  }

  /* Footer buttons */
  .modal-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
  }

  .modal-footer button,
  .modal-footer a {
    padding: 12px 28px !important;
    border-radius: 999px !important;
    border: none !important;
    background: linear-gradient(90deg, #0B335A, #1f5e9d) !important;
    color: #fff !important;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    width: auto !important;
    min-width: fit-content;
    text-decoration: none !important;
    box-shadow: 0 3px 10px rgba(11, 51, 90, 0.2);
    transition: all 0.3s ease;
  }

  .modal-footer button:hover,
  .modal-footer a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(11, 51, 90, 0.35);
    opacity: 0.92;
  }

  /* ================================================================
     RESPONSIVE TWEAKS — all breakpoints
     ================================================================ */

  /* ── Large desktop (≥1200px) ── */
  @media (min-width: 1200px) {
    .modal-content {
      padding: 28px 60px;
    }
  }

  /* ── Tablet / small laptop (≤900px) ── */
  @media (max-width: 900px) {
    .modal-content {
      padding: 24px 20px;
    }

    .modal-header {
      align-items: flex-start;
      text-align: left;
    }

    .modal-header h2 {
      font-size: 22px;
    }

    .step-description {
      font-size: 13px;
    }

    .step-indicator {
      position: static;
      margin-top: 8px;
      font-size: 12px;
    }

    .modal-footer {
      flex-direction: column;
      gap: 10px;
    }

    .modal-footer button,
    .modal-footer a {
      width: 100%;
      text-align: center;
      justify-content: center;
    }
  }

  /* ── Mobile (≤600px) ── */
  @media (max-width: 600px) {
    .modal-backdrop {
      padding: 14px 10px 24px;
    }
    .modal-content {
      padding: 18px 14px;
      border-radius: 12px;
    }
    .modal-header h2 {
      font-size: 19px;
    }
    .modal-header-gradient {
      font-size: 1.25rem !important;
    }
    .modal-subtitle {
      font-size: 13px !important;
    }
    .modal-footer button,
    .modal-footer a {
      padding: 10px 14px;
      font-size: 0.9rem;
    }
    /* All modal content padding */
    #modal2 .modal-content,
    #modal8 .modal-content,
    #modal9 .modal-content,
    #modal10 .modal-content,
    #modal11 .modal-content,
    #modal12 .modal-content,
    #modal13 .modal-content,
    #modal14 .modal-content,
    #modal16 .modal-content {
      padding: 16px 12px !important;
    }

    .integrity-center {
      padding: 20px 16px 16px;
    }
  }

  /* ── Very small phones (≤380px) ── */
  @media (max-width: 380px) {
    .modal-content {
      padding: 14px 10px;
    }
    .modal-header h2 {
      font-size: 16px;
    }
    .modal-footer button,
    .modal-footer a {
      font-size: 0.82rem;
      padding: 9px 10px;
    }
    .step-indicator {
      font-size: 11px;
    }
    #modal16 .modal-content {
      padding: 12px 10px !important;
      margin: 0 auto !important;
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
    }
    .integrity-center {
      padding: 12px 8px 10px;
      text-align: center;
    }
    .integrity-text {
      font-size: 13px;
      line-height: 1.5;
      margin-bottom: 16px;
    }
    .integrity-score {
      font-size: 36px !important;
    }
    .integrity-spinner {
      margin-top: 4%;
    }
    .spinner-text {
      font-size: 13px;
    }
    #modal16 .modal-footer button,
    #modal16 .modal-footer a {
      padding: 9px 14px !important;
      font-size: 0.82rem !important;
    }
  }

  #modal13 .form-group input {
    display: block;
    /* ensures stacked layout */
    width: 100%;
    margin-bottom: 12px;
    /* space between inputs */
    padding: 12px 14px;
    /* adjust padding for comfort */
    border: 1px solid #cfdbe8;
    border-radius: 12px;

    font-size: 16px;
    line-height: 24px;
    color: #042b56;
    box-sizing: border-box;
  }

  #modal13 .form-group input:last-child {
    margin-bottom: 0;
    /* no extra space after last input */
  }

/* ── Service / Industry search dropdown container ── */
  #service-results,
  #industry-results {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-height: 320px;
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
    margin-top: 6px;
    padding: 4px 0;
  }

  #service-results::-webkit-scrollbar,
  #industry-results::-webkit-scrollbar {
    width: 6px;
  }
  #service-results::-webkit-scrollbar-thumb,
  #industry-results::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
  }

  .result-row {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
    padding: 9px 14px;
    cursor: pointer;
    border-radius: 6px;
    margin: 2px 4px;
    background: #ffffff !important;
    transition: background 0.14s ease;
  }

  .result-row:hover {
    background: rgba(14, 165, 233, 0.06) !important;
  }

  /* Remove any blue tint on rows that have a checked checkbox */
  .result-row:has(input[type="checkbox"]:checked) {
    background: #ffffff !important;
  }

  .result-row:has(input[type="checkbox"]:checked):hover {
    background: rgba(14, 165, 233, 0.06) !important;
  }

  .result-row input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
    accent-color: #118af2;
    cursor: pointer;
    vertical-align: middle !important;
    position: relative !important;
    top: 0 !important;
  }

  .result-row label {
    margin: 0 !important;
    padding: 0 !important;
    color: #042b56;
    cursor: pointer;
    flex: 1;
    user-select: none;
    display: flex !important;
    flex-direction: column;
    gap: 1px;
  }

  .result-divider {
    border: none;
    border-top: 1px solid #042b56;
    margin: 4px 10px;
  }

  .result-name {
    font-size: 0.92rem;
    font-weight: 500;
    color: #042b56;
    line-height: 1.3;
  }

  .result-match {
    font-size: 0.77rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.2;
  }

  .result-empty {
    padding: 12px 14px;
    font-size: 0.88rem;
    color: #64748b;
    text-align: center;
  }

/* Wrapper */
          .ub-select {
            width: 100%;
            position: relative;
            height: 57px;
            border: 1px solid #d1d5db;
            border-radius: 12px;
            background: #fff;
            cursor: pointer;
            padding: 11px 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #042b56;
            font-size: 0.95rem;
            transition: border 0.2s ease;
          }

          .ub-select:focus {
            outline: none;
            border-color: #042b56;
          }

          /* Trigger inside box */
          .ub-select-trigger {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
          }

          /* Dropdown icon */
          .ub-select i {
            font-size: 14px;
            color: #0396ff;
            transition: transform 0.2s ease;
          }

          .ub-select.open i {
            transform: rotate(180deg);
          }

          /* Options box */
          .ub-options {
            display: none;
            position: absolute;
            top: calc(100% + 4px);
            left: 0;
            width: 100%;
            background: #fff;
            border: 1px solid #d1d5db;
            border-radius: 10px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            max-height: 220px;
            overflow-y: auto;
            /* FIX: high z-index so dropdown floats above all modal content */
            z-index: 9999;
          }

          /* FIX: give the wrapper a stacking context so z-index works */
          .ub-select {
            z-index: 10;
          }

          .ub-select.open {
            z-index: 10000;
          }

          /* When open */
          .ub-select.open .ub-options {
            display: block;
          }

          /* Option */
          .ub-option {
            padding: 10px 14px;
            color: #042b56;
            cursor: pointer;
            border-radius: 6px;
            transition: background 0.15s ease;
          }

          /* Hover */
          .ub-option:hover {
            background: rgba(13, 195, 245, 0.06);
          }

          /* Selected */
          .ub-option.selected {
            background: rgba(13, 195, 245, 0.06);
            border-left: 3px solid #0dc3f5;
            font-weight: 600;
          }

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out;
    background: rgba(0, 0, 0, 0.3);
  }

  .modal-box {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    padding: 70px 32px 32px;
    width: 92%;
    max-width: 500px;
    text-align: center;
    background: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  }

  .modal-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #042b56 0%, #118af2 50%, #0dc3f4 100%);
    border-radius: 18px 18px 40px 40px;
    z-index: 1;
  }

  .modal-box > * {
    position: relative;
    z-index: 2;
  }

  .modal-title {
    font-size: 25px;
    font-weight: 700;
    color: #042b56;
  }

  .modal-text {
    font-size: 16px;
    color: #042b56;
    margin-top: 14px;
    line-height: 1.6;
  }

  .close-btn {
    position: absolute;
    right: 14px;
    top: 12px;
    background: none;
    border: none;
    color: #042b56;
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    z-index: 3;
  }

  .continue-btn {
    margin-top: 28px;
    width: 100%;
    padding: 12px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(90deg, #0B335A, #1f5e9d);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
  }

  .continue-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(11, 74, 131, 0.4);
  }

/* Integrity Modal Wrapper */
  .integrity-modal {
    padding-top: 10px;
    /* same feel as other modals */
  }

  /* Center content */
  .integrity-center {
    text-align: center;
    padding: 30px 40px 25px;
    /* wider like modal14 */
  }

  /* Description text */
  .integrity-text {
    font-size: 14px;
    /* SAME as modal14 paragraph */
    color: #64748b;
    margin-bottom: 28px;
    line-height: 1.6;
  }

  .integrity-score {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;

    background: linear-gradient(90deg, #0B335A, #1f5e9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    opacity: 0;
    pointer-events: none;

    transition: opacity 400ms ease;
    transition-delay: 140ms;
  }

  .integrity-score.show {
    opacity: 1;
    pointer-events: auto;
  }

  .integrity-score span {
    background: linear-gradient(90deg, #0B335A, #1f5e9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }

  .integrity-link {
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    color: #0a63b0;
    text-decoration: none;
    margin-top: 6px;

    transition:
      color 180ms ease,
      transform 180ms ease,
      text-decoration-color 180ms ease;
  }

  .integrity-link:hover {
    transform: translateY(-1px);
  }

  .integrity-spinner {
    margin-top: 8%;
    text-align: center;
  }

  .spinner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    position: relative;

    /* base ring */
    border: 3px solid rgba(10, 99, 176, 0.15);

    /* glowing arc */
    border-top: 3px solid #042b56;

    animation: spin 1s linear infinite;

    /* glow */
    box-shadow:
      0 0 8px rgba(79, 195, 255, 0.6),
      0 0 16px rgba(79, 195, 255, 0.4),
      inset 0 0 6px rgba(79, 195, 255, 0.4);

    margin: -6px auto 12px;
  }

  .spinner-text {
    font-size: 13px;
    color: #64748b;
    letter-spacing: 0.2px;
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

#modal-auth .modal-content.auth-modal {
    max-width: 560px;
  }

  /* Center header and keep subtitle under the title */
  #modal-auth .modal-header {
    align-items: center;
    text-align: center;
    padding-top: 8px;
  }

  /* In the auth modal, the subtitle should not be absolutely positioned */
  #modal-auth .modal-header .step-indicator {
    position: static;
    margin-top: 6px;

    /* keep the pill style if you like */
    padding: 4px 10px;
    border-radius: 20px;
  }

  input[type="password"],
  input[type="text"] {
    color: #042b56;
  }

  /* Small top-right link placement */
  #modal-auth .auth-toggle {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 0.85rem;
  }

  /* ===== Checkbox row ===== */
  #modal-auth .login-extra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  /* Stack neatly on small screens */
  @media (max-width: 520px) {
    #modal-auth .login-extra {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    #modal-auth .forgot-link {
      align-self: flex-start;
    }
  }

  /* ================================================================
     ALLOCATION SECTIONS — Services / Industries / Client Size
     Key principle: all % columns are exactly 44px wide, aligned.
     Remove buttons live in the title row so they don't disrupt the
     slider/% grid. No magic pixel offsets needed anywhere.
     ================================================================ */

  /* ---- Slider item wrapper ---- */
  .alloc-item-wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
  }

  /* ---- Title row: name + optional Remove button ---- */
  .alloc-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
  }
  .alloc-title-name {
    font-weight: 600;
    color: #042B56;
    min-width: 0;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .alloc-title-sub {
    font-weight: 300;
    color: #6b7280;
    font-size: 13px;
  }
  .alloc-remove-btn {
    background: #ef4444;
    color: #fff;
    border: none;
    padding: 5px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  /* ---- Controls row: [slider] [44px %] ---- */
  .alloc-controls-row {
    display: grid;
    grid-template-columns: 1fr 44px;
    align-items: center;
    gap: 10px;
  }
  .alloc-pct {
    font-size: 15px;
    font-weight: 600;
    color: #042b56;
    text-align: right;
    white-space: nowrap;
  }

  /* ---- Legend + total column wrapper ---- */
  .legend-with-total {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    min-width: 0;
    width: 100%;
  }

  /* ---- Total summary bar: [label] [total %] ---- */
  .alloc-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e2e8f0;
    padding-top: 10px;
    margin-top: 4px;
  }
  .alloc-total-pct {
    font-size: 15px;
    font-weight: 700;
    color: #042b56;
    text-align: right;
    white-space: nowrap;
  }

  /* ---- Chart layout: pie left, legend right ---- */
  .services-chart-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 24px;
    width: 100%;
  }

  /* ---- Pie wrapper ---- */
  .chart-wrapper {
    width: 260px;
    height: 260px;
    flex-shrink: 0;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,0.18));
  }
  .chart-wrapper canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
  }

  /* ---- Legend containers ---- */
  #servicesLegend,
  #industriesLegend,
  #clientSizeLegend {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    /* base.css leaks margin-top:56px + padding-left:41px onto #servicesLegend
       and #clientSizeLegend via its #industryLegend,#servicesLegend,#clientSizeLegend
       rule — #industriesLegend is a different ID so it misses those, creating
       the top-vs-center mismatch. Neutralise both on this page. */
    margin-top: 0 !important;
    padding-left: 0 !important;
  }

  /* ---- Legend row: [18px dot] [label flex] [44px %] ----
     Use !important + ID selectors to beat the conflicting
     rules in base.html (#servicesLegend .legend-item etc.)
  ---- */
  #servicesLegend .legend-item,
  #industriesLegend .legend-item,
  #clientSizeLegend .legend-item {
    display: grid !important;
    grid-template-columns: 18px 1fr 44px !important;
    align-items: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  #servicesLegend .legend-dot,
  #industriesLegend .legend-dot,
  #clientSizeLegend .legend-dot {
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
    display: block !important;
  }
  #servicesLegend .legend-label,
  #industriesLegend .legend-label,
  #clientSizeLegend .legend-label {
    font-size: 15px !important;
    color: #042b56 !important;
    line-height: 1.35 !important;
    min-width: 0 !important;
    word-break: break-word !important;
    padding-left: 0 !important;
    white-space: normal !important;
    display: block !important;
    gap: 0 !important;
    margin-left: 0 !important;
  }
  #servicesLegend .legend-percent,
  #industriesLegend .legend-percent,
  #clientSizeLegend .legend-percent {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #042b56 !important;
    text-align: right !important;
    white-space: nowrap !important;
    transform: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    width: auto !important;
    min-width: 0 !important;
  }

  /* ================================================================
     RESPONSIVE BREAKPOINTS
     ================================================================ */

  /* Tablet — small laptop */
  @media (max-width: 900px) {
    .services-chart-layout {
      grid-template-columns: 220px 1fr;
      gap: 18px;
    }
    .chart-wrapper {
      width: 220px;
      height: 220px;
    }
  }

  /* Tablet portrait */
  @media (max-width: 768px) {
    .services-chart-layout {
      grid-template-columns: 190px 1fr;
      gap: 16px;
    }
    .chart-wrapper {
      width: 190px;
      height: 190px;
    }
    #servicesLegend .legend-label,
    #industriesLegend .legend-label,
    #clientSizeLegend .legend-label { font-size: 14px !important; }
    #servicesLegend .legend-percent,
    #industriesLegend .legend-percent,
    #clientSizeLegend .legend-percent { font-size: 14px !important; }
    .alloc-pct { font-size: 14px; }
    .alloc-total-pct { font-size: 14px; }
  }

  /* Mobile — stack chart vertically */
  @media (max-width: 576px) {
    .services-chart-layout {
      grid-template-columns: 1fr;
      justify-items: center;
      gap: 16px;
    }
    .chart-wrapper {
      width: 180px;
      height: 180px;
    }
    #servicesLegend,
    #industriesLegend,
    #clientSizeLegend {
      width: 100% !important;
    }
    #servicesLegend .legend-item,
    #industriesLegend .legend-item,
    #clientSizeLegend .legend-item {
      width: 100% !important;
    }
    #servicesLegend .legend-label,
    #industriesLegend .legend-label,
    #clientSizeLegend .legend-label { font-size: 13px !important; }
    #servicesLegend .legend-percent,
    #industriesLegend .legend-percent,
    #clientSizeLegend .legend-percent { font-size: 13px !important; }
    .alloc-total-pct { font-size: 13px; }
    .alloc-pct { font-size: 13px; }
    .alloc-title-name { font-size: 14px; }
    .alloc-remove-btn { padding: 4px 9px; font-size: 12px; }
  }

  /* Small mobile */
  @media (max-width: 380px) {
    .chart-wrapper {
      width: 150px;
      height: 150px;
    }
  }

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 16px;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.video-content {
  position: relative;
  width: 70%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  z-index: 2;
}

@media (max-width: 992px) {
  .video-content {
    width: 80%;
    max-width: 600px;
  }
}

@media (max-width: 600px) {
  .video-content {
    width: 92%;
    max-width: 100%;
  }
}

/* IMPORTANT INFO BUTTON */
  .important-info {
    position: fixed;
    right: -47px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: linear-gradient(90deg, #0B335A, #1f5e9d);
    color: #fff;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 12px 12px 0 0;
    cursor: pointer;
    z-index: 9999;

    /* 🔧 tuned */
    animation: softPulse 3.2s ease-in-out infinite;
  }

  @keyframes softPulse {
    0% {
      transform: translateY(-50%) rotate(-90deg) scale(1);
    }

    50% {
      transform: translateY(-50%) rotate(-90deg) scale(1.06);
    }

    100% {
      transform: translateY(-50%) rotate(-90deg) scale(1);
    }
  }

  /* OVERLAY */
  .info-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 10000;
  }

  /* MODAL */
  .info-modal {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translate(100%, -50%);
    width: 320px;
    height: 100vh;
    background: #fff;
    border-radius: 16px 0 0 16px;

    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    display: flex;
    flex-direction: column;
  }

  /* HEADER */
  .info-header {
    padding: 14px 18px;
    background: linear-gradient(90deg, #0B335A, #1f5e9d);
    color: #fff;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .info-header button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
  }

  /* BODY */
  .info-body {
    padding: 16px 18px;
    overflow-y: auto;
    font-size: 14px;
    color: #042b56;
    flex: 1;
    scrollbar-width: none;
  }
  .info-body::-webkit-scrollbar {
    display: none;
  }

  .info-intro {
    color: #042b56;
    margin-bottom: 16px;
    line-height: 1.6;
  }

  /* ACCORDION */
  .accordion-item {
    border-bottom: 1px solid #e8eaf0;
  }

  /* HEADER */
  .accordion-header {
    padding: 14px 6px;
    font-weight: 600;
    color: #0b4a83;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.25s ease;
  }

  .accordion-header:hover {
    color: #0a63b0;
  }

  /* CHEVRON ICON — only target the icon, not the title span */
  .accordion-header .accordion-icon {
    font-size: 14px;
    color: #0b4a83;
    transition: transform 0.35s ease;
    flex-shrink: 0;
  }

  /* CONTENT (MODERN SMOOTH ANIMATION) */
  .accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .accordion-content > div {
    overflow: hidden;
    min-height: 0;
  }
  .accordion-content .acc-table {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .accordion-content p {
    padding: 0 6px 14px;
    color: #042b56;
    line-height: 1.6;
  }

  /* ACTIVE STATE */
  .accordion-item.active .accordion-content {
    grid-template-rows: 1fr;
  }

  .accordion-item.active .accordion-header .accordion-icon {
    transform: rotate(180deg);
  }

  .acc-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid #118af2;
    color: #118af2;
    font-size: 11px;
    font-weight: 700;
    margin-right: 8px;
    flex-shrink: 0;
    letter-spacing: 0;
  }

  .accordion-header > span:first-child {
    display: flex;
    align-items: center;
  }

  /* Scoring table */
  .acc-table {
    width: 100%;
    border-collapse: collapse;
    margin: 6px 0 10px;
    font-size: 13px;
    table-layout: auto;
  }
  .acc-table thead tr {
    background: #e8f1fb;
  }
  .acc-table thead th {
    padding: 7px 10px;
    text-align: left;
    font-weight: 600;
    color: #042b56;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }
  .acc-table thead th:last-child {
    text-align: right;
    width: 60px;
  }
  .acc-table tbody tr {
    border-bottom: 1px solid #f0f4f8;
  }
  .acc-table tbody tr:last-child {
    border-bottom: none;
  }
  .acc-table tbody td {
    padding: 8px 10px;
    color: #042b56;
    vertical-align: top;
    text-align: left;
    word-wrap: break-word;
  }
  .acc-table tbody td:last-child:not([rowspan]) {
    text-align: right;
    font-weight: 600;
    color: #1f5e9d;
    white-space: nowrap;
    width: 100px;
    vertical-align: middle;
    padding: 6px 8px;
  }
  .pts-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 30px;
    border-radius: 999px;
    border: 1.5px solid #118af2;
    background: #eef6ff;
    color: #1f5e9d;
    font-size: 11px;
    font-weight: 700;
    padding: 0 10px;
    white-space: nowrap;
    box-sizing: border-box;
  }

  .acc-total-pts {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    border-radius: 999px;
    border: 1.5px solid #118af2;
    background: #eef6ff;
    color: #1f5e9d;
    font-size: 11px;
    font-weight: 600;
    padding: 0 9px;
    white-space: nowrap;
    box-sizing: border-box;
    flex-shrink: 0;
  }

  /* Tip text */
  .acc-desc {
    font-size: 13px;
    color: #4a6484;
    margin: 0 0 6px;
    padding: 0 !important;
    line-height: 1.5;
  }
  .acc-tip {
    font-size: 12px;
    color: #042b56;
    background: #e8f4fe;
    border-left: 3px solid #118af2;
    border-radius: 0 6px 6px 0;
    padding: 8px 10px !important;
    margin: 4px 0 10px !important;
    line-height: 1.5;
  }

  /* ACTIVE MODAL */
  .info-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .info-modal.active {
    transform: translate(0, -50%);
  }

  body.vendor-header-active main {
    padding-top: 0;
  }

  /* ================================================================
     RESPONSIVE VENDOR NAVBAR  (all screen sizes)
     ================================================================ */

  /* --- Vendor header base (shown from modal2 onward) --- */
  #vendor-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(4,43,86,0.10);
  }

  /* Inner nav row */
  #vendor-header .vhdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    gap: 12px;
    flex-wrap: nowrap;
  }

  /* Logo area */
  #vendor-header .vhdr-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }

  #vendor-header .vhdr-logo img {
    height: 32px;
    width: auto;
  }

  #vendor-header .vhdr-title {
    font-size: 15px;
    font-weight: 700;
    color: #042b56;
    white-space: nowrap;
  }

  /* Right-side actions */
  #vendor-header .vhdr-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }

  /* Save & Exit button */
  #vendor-header #saveExitBtn,
  #vendor-header .save-exit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #0B335A, #1f5e9d);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 7px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.2s;
  }

  #vendor-header #saveExitBtn:hover,
  #vendor-header .save-exit-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
  }

  /* Hamburger button (hidden on desktop) */
  #vendor-header .vhdr-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: 1.5px solid #042b56;
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
  }

  #vendor-header .vhdr-hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #042b56;
    border-radius: 2px;
    transition: all 0.25s ease;
  }

  /* Mobile dropdown menu */
  #vendor-header .vhdr-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 10px 20px 14px;
    border-top: 1px solid #e2e8f0;
    background: #fff;
  }

  #vendor-header .vhdr-mobile-menu.open {
    display: flex;
  }

  /* ── Large desktop (≥1200px): generous padding ── */
  @media (min-width: 1200px) {
    #vendor-header .vhdr-inner {
      padding: 12px 48px;
    }
    #vendor-header .vhdr-title {
      font-size: 17px;
    }
    #vendor-header #saveExitBtn,
    #vendor-header .save-exit-btn {
      font-size: 15px;
      padding: 8px 22px;
    }
  }

  /* ── Tablet (≤900px): tighter padding ── */
  @media (max-width: 900px) {
    #vendor-header .vhdr-inner {
      padding: 9px 16px;
    }
    #vendor-header .vhdr-title {
      font-size: 14px;
    }
    #vendor-header #saveExitBtn,
    #vendor-header .save-exit-btn {
      font-size: 13px;
      padding: 6px 12px;
    }
    .modal-content {
      padding: 20px 16px;
    }
  }

  /* ── Mobile (≤600px): hamburger appears ── */
  @media (max-width: 600px) {
    #vendor-header .vhdr-hamburger {
      display: flex;
    }
    /* Hide Save & Exit from inline row — move to dropdown */
    #vendor-header .vhdr-actions .save-exit-btn,
    #vendor-header .vhdr-actions #saveExitBtn {
      display: none;
    }
    #vendor-header .vhdr-inner {
      padding: 8px 14px;
    }
    #vendor-header .vhdr-title {
      font-size: 13px;
    }
    .modal-backdrop {
      padding: 14px 10px 20px;
    }
    .modal-content {
      padding: 16px 12px;
    }
    .modal-header h2 {
      font-size: 20px !important;
    }
  }

  /* ── Very small phones (≤380px) ── */
  @media (max-width: 380px) {
    #vendor-header .vhdr-logo img {
      height: 26px;
    }
    #vendor-header .vhdr-title {
      font-size: 12px;
    }
  }

/* ── Force all modal footers to stay in a single row always ── */
.modal-footer,
#modal2 .modal-footer,
#modal8 .modal-footer,
#modal9 .modal-footer,
#modal10 .modal-footer,
#modal11 .modal-footer,
#modal12 .modal-footer,
#modal13 .modal-footer,
#modal14 .modal-footer,
#modal16 .modal-footer {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 10px !important;
}

/* Modal15 (Integrity Check): center the Complete Profile button */
#modal15 .modal-footer {
  justify-content: center !important;
  gap: 16px !important;
}



/* ── onboarding_goal.html extracted styles ── */
#confirmGoalModal {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding-top: var(--nav-h, 72px);
  }
  #confirmGoalBox {
    width: 100%;
    max-width: 1111px;
  }
  .modal-points {
    margin: 24px 0 8px 18px;
    padding: 0;
    list-style-type: disc;
    color: #042b56;
    font-size: 17px;
    line-height: 1.6;
    text-align: justify;
  }
  .modal-points li {
    margin-bottom: 10px;
  }
  @media (max-width: 768px) {
    #confirmGoalModal {
      align-items: flex-start;
    }
    #confirmGoalBox {
      padding: 40px 20px 28px;
      margin: auto 0;
    }
    .modal-points {
      font-size: 15px;
    }
  }

#selectedLanguages .lang-arrow { font-size: 12px; }

.ob-btn-link { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(90deg, #0B335A, #1f5e9d); color: #fff; border: none; padding: 12px 28px; border-radius: 999px; font-size: 1rem; font-weight: 500; text-decoration: none; cursor: pointer; box-shadow: 0 3px 10px rgba(11, 51, 90, 0.2); transition: all 0.3s ease; width: auto; min-width: fit-content; }

.ob-req { color: #ef4444; }

.ob-label-note { font-weight: normal; font-size: 11px; color: #6b7280; }

.ob-flex-20 { display: flex; gap: 20px; }

.ob-flex-1 { flex: 1; }

.ob-sticky-search { position: sticky; top: 0; background: #fff; padding: 6px 10px; border-bottom: 1px solid #eef0f4; z-index: 1; }

.ob-hr-sm { margin: 6px 0; }

.ob-lang-group { padding: 6px 10px; font-size: 12px; color: #666; font-weight: 600; }

.ob-form-subtitle { font-size: 14px; color: #6b7280; margin: 4px 0 0 0; font-weight: 400; }

.ob-mt-sm { margin-top: 2.5%; }

.ob-step-text { color: #334155; font-size: 1rem; text-align: center; margin: 0 auto 1rem auto; max-width: 700px; line-height: 1.5; background: #f1f5f9; padding: 0.75rem 1.25rem; border-radius: 0.75rem; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04); }

.ob-flex-20-mb { display: flex; gap: 20px; margin-bottom: 20px; }

.ob-flex-wrap-20 { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; }

.ob-muted-sm { font-size: 12px; color: #94a3b8; }

@keyframes spin { to { transform: rotate(360deg); } }
.ob-spinner { width: 18px; height: 18px; flex-shrink: 0; border: 2px solid #cbd5e1; border-top-color: #0B335A; border-radius: 50%; animation: spin 0.8s linear infinite; }

.ob-vendor-card { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: linear-gradient(90deg, rgba(11,51,90,0.08), rgba(31,94,157,0.06)); border: 1.5px solid rgba(31,94,157,0.25); border-radius: 14px; box-shadow: 0 2px 12px rgba(11,51,90,0.08); backdrop-filter: blur(4px); }

.ob-avatar { width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%; background: linear-gradient(90deg, #0B335A, #1f5e9d); display: flex; align-items: center; justify-content: center; box-shadow: 0 3px 10px rgba(11,51,90,0.25); }

.ob-flex-min { flex: 1; min-width: 0; }

.ob-row-8 { display: flex; align-items: center; gap: 8px; }

.ob-vendor-name { font-weight: 700; color: #0B335A; font-size: 14px; }

.ob-badge { background: linear-gradient(90deg, #0B335A, #1f5e9d); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 999px; letter-spacing: 0.5px; }

.ob-vendor-sub { font-size: 11px; color: #64748b; margin-top: 2px; }

.ob-lock { color: #0B335A; opacity: 0.5; flex-shrink: 0; }

.ob-gap-2 { display: flex; gap: 0.5rem; }

.ob-flex-end { display: flex; gap: 0.5rem; align-items: center; justify-content: flex-end; }

.ob-row-8-full { display: flex; gap: 8px; width: 100%; align-items: center; }

.ob-half-opacity { opacity: 0.5; flex-shrink: 0; }

.ob-pad-top { padding: 10px 10px 6px; }

.ob-flex-full-gap-2 { display: flex; gap: 0.5rem; width: 100%; }

.ob-notice { margin-top: 24px; padding: 16px 20px; background: #f0f6ff; border: 1px solid #c7dff7; border-radius: 12px; }

.ob-consent { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }

.ob-consent-text { font-size: 13px; color: #042b56; line-height: 1.6; }

.ob-invisible { visibility: hidden; }

.ob-flex-mt-12 { display: flex; margin-top: 12px; }

.ob-navy { color: #042b56; }

.ob-relative { position: relative; }

.ob-blue { color: #118af2; }

.ob-block-hint { display: block; margin-top: 4px; }

.ob-btn-next { display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(90deg, #0B335A, #1f5e9d); color: #fff; border: none; padding: 12px 28px; border-radius: 999px; font-size: 1rem; cursor: pointer; transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 220ms cubic-bezier(0.4, 0, 0.2, 1), opacity 180ms ease; }

.ob-ml-auto { margin-left: auto; }

.ob-modal-title { color: #042b56; font-weight: 700; margin: -34px 0 30px 0; }

.ob-hr-navy { color: #042B56; }

.ob-sub-block { display: block; font-size: 11px; color: #6b87a8; margin-top: 3px; }

.ob-yt { color: #FF0000; margin-right: 4px; }

.ob-ig { color: #E1306C; margin-right: 4px; }

.ob-li { color: #0A66C2; margin-right: 4px; }

.ob-tw { color: #1DA1F2; margin-right: 4px; }

.ob-fb { color: #1877F2; margin-right: 4px; }

.ob-table-fixed { table-layout: fixed; width: 100%; }

.ob-col-main { width: calc(100% - 80px); }

.ob-col-sm { width: 80px; }

.ob-th-left { text-align: left; }

.ob-th-right-sm { text-align: right; width: 80px; }

.ob-bg-blue { background: #e8f1fb; }

.ob-subhead { font-weight: 400; color: #042b56; font-size: 11px; text-transform: uppercase; letter-spacing: 0.4px; padding: 7px 10px; white-space: normal; word-break: break-word; text-align: left; }

.ob-td-text { padding: 8px 10px 8px 18px; white-space: normal; word-break: break-word; color: #042b56; }

.ob-td-action { text-align: right; padding: 8px; vertical-align: middle; }

.ob-bg-soft { background: #f0f6ff; }

.ob-fw-6 { font-weight: 600; }

.ob-fw-7-navy { font-weight: 700; color: #0B335A; }

.ob-pts-hl { border-color: #0B335A; color: #0B335A; }

#addBranchBtn {
  margin-top: 1rem;
  background: linear-gradient(90deg, #0B335A, #1f5e9d);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: not-allowed;
  opacity: 0.45;
  position: relative;
  z-index: 20;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(11, 51, 90, 0.2);
}
#addExpertiseBtn {
  background: linear-gradient(90deg, #0B335A, #1f5e9d);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 999px;
  cursor: not-allowed;
  opacity: 0.45;
  width: auto;
  min-width: fit-content;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 3px 10px rgba(11, 51, 90, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
#authorizationCheckbox {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: #118af2;
  cursor: pointer;
  flex-shrink: 0;
}
#authorizationCheckboxError {
  color: #c0392b;
  font-size: 12px;
  margin: 8px 0 0 30px;
  display: none;
}
#avgProjectCustomInput {
  display: none;
}
#biz-reg-draft-name {
  display:none;
  font-size:12px;
  color:#042b56;
  margin-top:4px;
}
#businessDocGroup {
  flex: 1 1 100%;
  min-width: 0;
}
#business_registration_preview {
  margin-top:8px;
  display:flex;
  justify-content:flex-start;
  align-items:flex-start;
  overflow:hidden;
  max-width:100%;
}
#business_type_other_input {
  display: none;
  margin-top: 8px;
  width: 100%;
  box-sizing: border-box;
  height: 56px;
  padding: 15px;
  font-size: 16px;
  font-weight: 400;
  color: #042b56;
  background: #fff;
  border: 1.6px solid #aabcd4;
  border-radius: 12px;
  outline: none;
}
#charCount {
  color: #042b56;
}
#client1-name-error {
  display:none;
}
#client1-proof-draft-name {
  display:none;
  font-size:12px;
  color:#042b56;
  margin-top:4px;
}
#client1_proof_preview {
  margin-top:8px;
  display:flex;
  justify-content:flex-start;
  align-items:flex-start;
  overflow:hidden;
  max-width:100%;
}
#client2-name-error {
  display:none;
}
#client2-proof-draft-name {
  display:none;
  font-size:12px;
  color:#042b56;
  margin-top:4px;
}
#client2_proof_preview {
  margin-top:8px;
  display:flex;
  justify-content:flex-start;
  align-items:flex-start;
  overflow:hidden;
  max-width:100%;
}
#client3-name-error {
  display:none;
}
#client3-proof-draft-name {
  display:none;
  font-size:12px;
  color:#042b56;
  margin-top:4px;
}
#client3_proof_preview {
  margin-top:8px;
  display:flex;
  justify-content:flex-start;
  align-items:flex-start;
  overflow:hidden;
  max-width:100%;
}
#company_logo_preview {
  display:flex;
  justify-content:flex-start;
  align-items:flex-start;
}
#confirmGoalModal {
  display:none;
}
#digilocker-idle {
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
#digilocker-loading {
  display:none;
  align-items:center;
  gap:10px;
  padding:8px 0;
}
#digilocker-loading-msg {
  font-size:13px;
  color:#64748b;
}
#digilocker-name-display {
  font-size:12px;
  color:#1f5e9d;
  margin-top:3px;
}
#digilocker-verified {
  display:none;
}
#digilocker-verify-btn {
  display:inline-flex;
  align-items:center;
  gap:8px;
  height:48px;
  padding:0 22px;
  border-radius:999px;
  border:none;
  cursor:pointer;
  font-size:14px;
  font-weight:600;
  background:linear-gradient(90deg,#0B335A,#1f5e9d);
  color:#fff;
  box-shadow:0 3px 10px rgba(11,51,90,0.2);
  transition:all 0.3s ease;
}
#digilocker-wrap {
  margin-top:6px;
}
#modal11 #email_otp_input {
  padding: 12px;
  width: 90px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  outline: none;
  text-align: center;
  letter-spacing: 2px;
}
#email_otp_row {
  display: none;
  margin-top: 6px;
}
#goalNextBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg, #0B335A, #1f5e9d);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  cursor: not-allowed;
  box-shadow: 0 3px 10px rgba(11, 51, 90, 0.2);
  transition: all 0.3s ease;
  width: auto;
  min-width: fit-content;
  opacity: 0.45;
}
#gst-draft-name {
  display:none;
  font-size:12px;
  color:#042b56;
  margin-top:4px;
}
#gstCertificateGroup {
  flex: 1 1 100%;
  min-width: 0;
}
#gst_certificate_preview {
  margin-top:8px;
  display:flex;
  justify-content:flex-start;
  align-items:flex-start;
  overflow:hidden;
  max-width:100%;
}
#langAddBtn {
  height:34px;
  padding:0 12px;
  background:#042b56;
  color:#fff;
  border:none;
  border-radius:6px;
  font-size:13px;
  cursor:pointer;
  white-space:nowrap;
  line-height:1;
}
#langAddFooter {
  position:sticky;
  bottom:0;
  background:#f8faff;
  border-top:1px solid #eef0f4;
  padding:8px 10px;
}
#langAddRow {
  display:none;
  gap:6px;
  align-items:center;
  margin-top:6px;
}
#langAddTrigger {
  font-size:13px;
  color:#1f5e9d;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:6px;
}
#langCustomInput {
  flex:1;
  padding:7px 10px;
  border:1px solid #cfdbe8;
  border-radius:6px;
  font-size:13px;
  outline:none;
  color:#042b56;
  box-sizing:border-box;
  height:34px;
}
#langSearchInput {
  width:100%;
  height:34px;
  padding:0 10px;
  border:1px solid #cfdbe8;
  border-radius:6px;
  font-size:13px;
  outline:none;
  color:#042b56;
  box-sizing:border-box;
}
#languageOptions {
  background: #fff;
  border: 1px solid #cfdbe8;
  border-radius: 8px;
  max-height: 260px;
  overflow-y: auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  display: none;
  color: #042b56;
}
#languageSelect {
  position: relative;
  width: 100%;
}
#linkedinStatus {
  font-size: 12px;
  color: #042b56;
  margin-top: 8px;
  display: none;
}
#linkedin_profile_input {
  flex: 1;
  width: 100%;
  height: 48px;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  outline: none;
  background: #fff;
  color: #042b56;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#logo-draft-name {
  display:none;
  font-size:12px;
  color:#042b56;
  margin-top:4px;
}
#maxProjectCustomInput {
  display: none;
}
#minProjectCustomInput {
  display: none;
}
#modal11 {
  display: none;
}
#modal11NextBtn {
  opacity:0.45;
  cursor:not-allowed;
}
#modal12 {
  display: none;
}
#modal12NextBtn {
  opacity:0.45;
  cursor:not-allowed;
}
#modal14 {
  display: none;
}
#modal14NextBtn {
  opacity:0.45;
  cursor:not-allowed;
}
#modal15 {
  display: none;
}
#modal16 {
  display: none;
}
#modal2 {
  display: none;
}
#modal2NextBtn {
  opacity:0.45;
  cursor:not-allowed;
}
#modal3 {
  display: none;
}
#modal4 {
  display: none;
}
#modal5 {
  display: none;
}
#modal8 {
  display: none;
}
#modal8NextBtn {
  opacity:0.45;
  cursor:not-allowed;
}
#office_photo_preview {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
  justify-content: flex-start;
}
#otpTimer {
  font-size: 12px;
  color: #042b56;
  margin: 0;
  flex: 1;
}
#phoneCodeBtn {
  height:48px;
  padding:0 12px;
  border:1px solid #cbd5e1;
  border-radius:999px;
  background:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:6px;
  font-size:14px;
  color:#042b56;
  white-space:nowrap;
  outline:none;
  transition:border-color 0.2s;
}
#phoneCodeDropdown {
  display:none;
  position:absolute;
  top:calc(100% + 6px);
  left:0;
  background:#fff;
  border-radius:14px;
  min-width:260px;
  box-shadow:0 8px 32px rgba(11,51,90,0.14),0 2px 8px rgba(0,0,0,0.07);
  z-index:9999;
  overflow:hidden;
}
#phoneCodeFlag {
  font-size:18px;
  line-height:1;
}
#phoneCodeList {
  list-style:none;
  margin:0;
  padding:0 6px 6px;
  max-height:220px;
  overflow-y:auto;
  scrollbar-width:thin;
  scrollbar-color:#cbd5e1 transparent;
}
#phoneCodePicker {
  position:relative;
  flex-shrink:0;
}
#phoneCodeSearch {
  width:100%;
  padding:8px 12px;
  border:1px solid #e2e8f0;
  border-radius:8px;
  font-size:13px;
  outline:none;
  color:#042b56;
  background:#f8fafc;
  box-sizing:border-box;
}
#phoneCodeVal {
  font-weight:500;
}
#phoneOtpTimer {
  font-size: 12px;
  color: #042b56;
  margin: 0;
  flex: 1;
}
#modal11 #phone_otp_input {
  padding: 12px;
  width: 90px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
  outline: none;
  text-align: center;
  letter-spacing: 2px;
}
#phone_otp_number_input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  outline: none;
  background: #fff;
  color: #042b56;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#phone_otp_row {
  display: none;
  margin-top: 6px;
}
#photo-draft-name {
  display:none;
  font-size:12px;
  color:#042b56;
  margin-top:4px;
}
#project-size-avg-error {
  display:none;
  color:#dc2626;
  font-size:13px;
  font-weight:500;
  margin-top:6px;
}
#project-size-min-error {
  display:none;
  color:#dc2626;
  font-size:13px;
  font-weight:500;
  margin-top:6px;
}
#project1-evidence-draft-name {
  display:none;
  font-size:12px;
  color:#042b56;
  margin-top:4px;
}
#project1_evidence_preview {
  margin-top:8px;
  display:flex;
  justify-content:flex-start;
  align-items:flex-start;
  overflow:hidden;
  max-width:100%;
}
#project2-evidence-draft-name {
  display:none;
  font-size:12px;
  color:#042b56;
  margin-top:4px;
}
#project2_evidence_preview {
  margin-top:8px;
  display:flex;
  justify-content:flex-start;
  align-items:flex-start;
  overflow:hidden;
  max-width:100%;
}
#project3-evidence-draft-name {
  display:none;
  font-size:12px;
  color:#042b56;
  margin-top:4px;
}
#project3_evidence_preview {
  margin-top:8px;
  display:flex;
  justify-content:flex-start;
  align-items:flex-start;
  overflow:hidden;
  max-width:100%;
}
#selected-client-sizes {
  margin-top: 2rem;
}
#selected-industries {
  margin-top: 1rem;
}
#selected-services {
  margin-top: 1rem;
}
#selectedLanguages {
  border: 1px solid #cfdbe8;
  border-radius: 13px;
  padding: 10px 14px;
  background: #fff;
  cursor: pointer;
  min-height: 56px;
  height: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  color: #042b56;
  font-size: 16px;
}
#sendOtpBtn {
  width: 130px;
  min-width: 130px;
  flex-shrink: 0;
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #0B335A, #1f5e9d);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(11, 51, 90, 0.2);
  transition: all 0.3s ease;
}
#sendPhoneOtpBtn {
  width: 130px;
  min-width: 130px;
  flex-shrink: 0;
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #0B335A, #1f5e9d);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(11, 51, 90, 0.2);
  transition: all 0.3s ease;
}
#serviceOptions1 {
  display:none;
}
#serviceOptions2 {
  display:none;
}
#serviceOptions3 {
  display:none;
}
#serviceSelect1 {
  position: relative;
  width: 100%;
}
#serviceSelect2 {
  position: relative;
  width: 100%;
}
#serviceSelect3 {
  position: relative;
  width: 100%;
}
#submit-file-error {
  text-align:center;
  margin-top:8px;
}
#taglineCount {
  color:#042b56;
}
#totalEmployeesCustomInput {
  display: none;
  margin-top: 8px;
}
#vendor-header {
  display: none;
}
#verification_email_input {
  flex: 1;
  height: 48px;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  outline: none;
  background: #fff;
  color: #042b56;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#verifyLinkedinBtn {
  width: 130px;
  min-width: 130px;
  flex-shrink: 0;
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #0B335A, #1f5e9d);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(11, 51, 90, 0.2);
  transition: all 0.3s ease;
}
#verify_otp_btn {
  width: 130px;
  min-width: 130px;
  flex-shrink: 0;
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #0B335A, #1f5e9d);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(11, 51, 90, 0.2);
  transition: all 0.3s ease;
}
#verify_phone_otp_btn {
  width: 130px;
  min-width: 130px;
  flex-shrink: 0;
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #0B335A, #1f5e9d);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(11, 51, 90, 0.2);
  transition: all 0.3s ease;
}
#video-draft-name {
  display:none;
  font-size:12px;
  color:#042b56;
  margin-top:4px;
}
#video_ad_preview {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
  justify-content: flex-start;
}