.elementor-6174 .elementor-element.elementor-element-3cf1df1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-5284aef */:root{
    /* ===== Brand Colors (edit these) ===== */
    --np-primary: #0B8F4D !important;     /* main green */
    --np-primary-2: #06703A;   /* darker green */
    --np-accent: #F2B01E;      /* gold accent */
    --np-ink: #0f172a;         /* text */
    --np-muted: #475569;       /* secondary text */
    --np-bg: #f8fafc;          /* page bg */
    --np-card: #ffffff;        /* card bg */
    --np-border: #e2e8f0;      /* borders */
    --np-danger: #b91c1c;      /* errors */
    --np-success: #065f46;     /* success text */
  }

  #np-app { font-family: system-ui, -apple-system, Segoe UI, Arial, sans-serif; color: var(--np-ink); }
  #np-app * { box-sizing: border-box; }

  #np-app .np-shell{
    background: radial-gradient(1200px 500px at 10% 0%, rgba(11,143,77,0.10), transparent 60%),
                radial-gradient(900px 450px at 95% 10%, rgba(242,176,30,0.10), transparent 55%),
                var(--np-bg);
    padding: 18px;
    border-radius: 18px;
  }

  #np-app .np-card{
    max-width: 980px;
    margin: 0 auto;
    background: var(--np-card);
    border: 1px solid var(--np-border);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.08);
  }

  #np-app .np-head{ margin-bottom: 14px; }
  #np-app .np-brand{ display:flex; gap:12px; align-items:center; }
  #np-app .np-brand-badge{
    width: 44px; height: 44px; border-radius: 14px;
    display:flex; align-items:center; justify-content:center;
    background: linear-gradient(135deg, var(--np-primary), var(--np-primary-2));
    color: #fff; font-weight: 900;
    box-shadow: 0 8px 18px rgba(11, 143, 77, 0.25);
  }
  #np-app .np-title{ margin:0; font-size: 22px; letter-spacing: -0.02em; }
  #np-app .np-sub{ margin: 4px 0 0; color: var(--np-muted); }

  /* Stepper */
  #np-app .np-steps{
    display:flex; gap:10px; margin: 14px 0 18px;
  }
  #np-app .np-step{
    flex: 1;
    display:flex; align-items:center; gap:10px;
    padding: 10px 12px;
    border: 1px solid var(--np-border);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    opacity: .70;
    transition: all .18s ease;
  }
  #np-app .np-step:hover{ transform: translateY(-1px); opacity: .95; }
  #np-app .np-step-active{
    opacity: 1;
    border-color: rgba(11, 143, 77, 0.35);
    box-shadow: 0 10px 20px rgba(11,143,77,0.10);
  }
  #np-app .np-step-num{
    width: 28px; height: 28px; border-radius: 999px;
    display:flex; align-items:center; justify-content:center;
    font-weight: 900;
    border: 1px solid var(--np-border);
    background: rgba(11,143,77,0.10);
    color: var(--np-primary-2);
  }
  #np-app .np-step-label{ font-weight: 800; font-size: 13px; color: var(--np-ink); }

  /* Form */
  #np-app label{ display:block; margin: 0 0 6px; font-weight: 800; }
  #np-app .np-req{ color: var(--np-danger); }
  #np-app .np-hint{ margin:6px 0 0; font-size: 12px; color: var(--np-muted); }

  #np-app input, #np-app select, #np-app textarea{
    width: 100%;
    padding: 12px 12px;
    border: 1px solid var(--np-border);
    border-radius: 14px;
    background: #fff;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
  }
  #np-app input:focus, #np-app select:focus, #np-app textarea:focus{
    border-color: rgba(11,143,77,0.55);
    box-shadow: 0 0 0 4px rgba(11,143,77,0.12);
  }

  #np-app .np-grid{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  #np-app .np-field-full{ grid-column: 1 / -1; }

  #np-app .np-pane{ display:none; animation: npFade .18s ease; }
  #np-app .np-pane-active{ display:block; }
  @keyframes npFade { from{opacity:.2; transform: translateY(3px)} to{opacity:1; transform: translateY(0)} }

  #np-app .np-rolebox{
    border: 1px dashed rgba(11,143,77,0.35);
    border-radius: 16px;
    padding: 12px;
    background: rgba(11,143,77,0.06);
  }
  #np-app .np-rolebox-title{ margin:0 0 10px; font-size: 14px; font-weight: 900; }

  /* Errors */
  #np-app .np-error{
    margin-top: 6px;
    font-size: 12px;
    font-weight: 800;
    color: var(--np-danger);
    min-height: 16px;
  }
  #np-app .np-invalid{
    border-color: rgba(185, 28, 28, 0.55) !important;
    box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.10) !important;
  }

  /* Buttons */
  #np-app .np-actions{
    display:flex; justify-content:space-between; align-items:center;
    gap: 10px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--np-border);
  }
  #np-app .np-actions-right{ display:flex; align-items:center; gap:10px; }
  #np-app .np-btn{
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--np-border);
    background: #fff;
    cursor: pointer;
    font-weight: 900;
    transition: transform .12s ease, box-shadow .18s ease, opacity .18s ease;
  }
  #np-app .np-btn:hover{ transform: translateY(-1px); box-shadow: 0 10px 20px rgba(2,6,23,0.08); }
  #np-app .np-btn:disabled{ opacity: .60; cursor:not-allowed; transform: none; box-shadow:none; }

  #np-app .np-btn-primary{
    border-color: rgba(11,143,77,0.40);
    background: linear-gradient(135deg, var(--np-primary), var(--np-primary-2));
    color: #fff;
  }
  #np-app .np-btn-ghost{ background: #fff; }

  #np-app .np-mini{ font-size: 12px; color: var(--np-muted); font-weight: 800; }

  #np-app .np-alert{
    margin-top: 14px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(242,176,30,0.55);
    background: rgba(242,176,30,0.10);
    color: var(--np-ink);
  }

  #np-app .np-status{
    margin-top: 12px;
    font-weight: 900;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid var(--np-border);
    background: #fff;
  }
  #np-app .np-status.ok{ color: var(--np-success); border-color: rgba(6,95,70,0.25); background: rgba(6,95,70,0.06); }
  #np-app .np-status.bad{ color: var(--np-danger); border-color: rgba(185,28,28,0.25); background: rgba(185,28,28,0.06); }

  @media (max-width: 760px){
    #np-app .np-grid{ grid-template-columns: 1fr; }
    #np-app .np-steps{ flex-direction: column; }
		#np-app .np-shell {
			padding: 0 !important;
		}
		#np-app .np-brand-badge {
			width: 84px;
		}
  }

#np-app .np-btn, #np-app .np-btn-ghost {
    background: #06703a !important;
	color: #FFFF !important;
	width: 120px;
  text-transform: uppercase;
  font-weight: 700;
	border-radius: 6px;
}

#np-app .np-status {
    background: #06703a !important;
	color: #FFFF !important;
	border-radius: 6px;
}

#np-app .np-steps {
        background: #06703a;
        padding: 12px;
}


/* =========================================================
   ✅ MODAL CSS (Add to your stylesheet)
========================================================= */
.np-modal { position: fixed; inset: 0; display: none; z-index: 9999; }
.np-modal.np-modal-open { display: block; }

.np-modal-backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,0.60);
  backdrop-filter: blur(3px);
}

.np-modal-card{
  position: relative;
  width: min(560px, calc(100% - 28px));
  margin: 10vh auto 0 auto;
  background: #0b1220;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.55);
  padding: 18px 18px 16px 18px;
  color: #e5e7eb;
}

.np-modal-head{
  display:flex; gap:12px; align-items:flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.np-modal-icon{
  width: 36px; height: 36px;
  border-radius: 10px;
  display:flex; align-items:center; justify-content:center;
  font-weight: 900;
  background: rgba(16,185,129,0.15);
  color: #34d399;
  border: 1px solid rgba(52,211,153,0.35);
  flex: 0 0 auto;
}

.np-modal-title{ font-weight: 900; font-size: 15px; letter-spacing: -0.01em; }
.np-modal-sub{ font-size: 12px; color: rgba(229,231,235,0.70); margin-top: 2px; }

.np-modal-body{
  padding-top: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(229,231,235,0.92);
  white-space: pre-line;
}

.np-modal-actions{
  display:flex; justify-content:flex-end; gap:10px;
  padding-top: 14px;
}

.np-modal.np-modal-error .np-modal-icon{
  background: rgba(239,68,68,0.12);
  color: #f87171;
  border: 1px solid rgba(248,113,113,0.35);
}/* End custom CSS */