:root {
  --bg: #f3f6ff;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e5e7eb;
  --blue: #3b82f6;
  --shadow: 0 18px 45px rgba(15, 23, 42, .10);
  --shadow-strong: 0 18px 45px rgba(15, 23, 42, .20);
  --r-22: 22px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%;
  overflow-x: hidden
}

body {
  margin: 0;
  font-family: "Figtree", "Noto Sans Bengali", sans-serif;
  background: var(--bg);
  color: var(--text)
}

a {
  color: inherit
}

button {
  font-family: inherit
}

hr {
  border: 0;
  border-top: 1px solid #cfcfcf;
  margin: 18px 0;
}

#wifiSignal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* padding: 6px; */
  margin: 0;
  padding: 0;
  /* border: 2px solid #c5bbe3;  */
  /* border-radius: 8px;        */
}


/* Topbar */
.nc-topbar {
  height: 64px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px
}

.nc-topbar-left {
  display: flex;
  align-items: center;
  gap: 18px
}

.nc-logo {
  width: 56px;
  height: 36px;
  border: 2px solid #0ea5e9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 450
}

.nc-nav {
  display: flex;
  gap: 14px
}

.nc-nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px
}

.nc-nav a.active,
.nc-nav a:hover {
  background: #eef2ff;
  color: var(--text)
}

.nc-lang {
  border: 1px solid var(--border);
  background: #fff;
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 450;
  cursor: pointer
}

/* Shell */
.nc-shell-container {
  min-height: 100vh;
  display: flex;
  /* align-items: center;   */
  background-image: url("../images/Yellow Stroke.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover; /* adjust if needed */
}

.nc-shell {
  max-width: 1180px;
  margin: 21px auto;
  padding: 0 18px;
  min-height: 100vh;  
}

.nc-frame {
  background: var(--card);
  border-radius: var(--r-22);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 320px 1fr;
  overflow: hidden;
  opacity :  0.9; 
}

.nc-left {
  padding: 26px 22px;
  border-right: 1px solid #eef2ff
}

.nc-right {
  padding: 26px 28px
}

/* Steps */
.nc-stepbox {
  border-radius: 16px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  border: 1px solid #e2e8f0;
  background: #fff
}

.nc-stepbox--active {
  background: #f2f7ff;
  border-color: #dbeafe
}

.nc-stepbox--inactive {
  opacity: .75
}

.nc-stepbox--done {
  background: #fff
}

.nc-stepnum {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 450;
  color: #3b82f6
}

.nc-stepnum--active {
  background: #3b82f6;
  color: #fff
}

.nc-stepnum--done {
  background: #dbeafe;
  color: #2563eb
}

.nc-steplabel {
  font-size: 11px;
  font-weight: 450;
  color: var(--muted)
}

.nc-steptitle {
  font-size: 14px;
  font-weight: 450
}

/* Right header */
.nc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px
}

.nc-top-left {
  display: flex;
  align-items: center;
  /* gap: 12px; */
  min-width: 0
}

.nc-icon {
  width: 52px;
  height: 52px;
  /* background:#eef6ff; */
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex: 0 0 auto;
  position: relative
}

.nc-titleRow {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0
}

.nc-h1 {
  font-size: 22px;
  font-weight: 600;
  white-space: nowrap
}

.nc-link {
  font-size: 12px;
  font-weight: 450;
  color: #2563eb;
  text-decoration: none;
  white-space: nowrap
}

.nc-link:hover {
  text-decoration: underline
}

.nc-btn-next,
.nc-btn-confirm {
  border: 0;
  padding: 8px 25px;
  border-radius: 14px;
  font-weight: 600;
  background: #e2e8f0;
  color: var(--muted);
  cursor: not-allowed
}

.nc-btn-next.enabled,
.nc-btn-confirm.enabled {
  background: #d3dbdf;
  color: #0f172a;
  cursor: pointer
}

/* WiFi animation */
.wifi-signal i {
  position: absolute;
  opacity: 0;
  transform: scale(.95);
  transition: opacity .18s ease, transform .18s ease
}

.wifi-signal .w1 {
  font-size: 14px
}

.wifi-signal .w2 {
  font-size: 18px
}

.wifi-signal .w3 {
  font-size: 22px
}

.wifi-signal.level-1 .w1 {
  opacity: 1;
  transform: scale(1)
}

.wifi-signal.level-2 .w1,
.wifi-signal.level-2 .w2 {
  opacity: 1;
  transform: scale(1)
}

.wifi-signal.level-3 .w1,
.wifi-signal.level-3 .w2,
.wifi-signal.level-3 .w3 {
  opacity: 1;
  transform: scale(1)
}

/* Step-1 headings */
.nc-chooseTitle {
  color: var(--Text-Text---Secondary, #637381);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 10px; 
}

.nc-bestOffer {
  margin-top: 20px;
  color: var(--Text-Text---Primary, #212B36);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  }

/* wrapper: title on top, row below */
.nc-packhead{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

/* override existing layout */
.nc-rowhead{
  display:flex;
  align-items:center;
  justify-content:flex-start !important;
  gap:12px;
}
/* keep chip + logo glued */
.nc-rowhead .nc-partners{
  display:inline-flex;
  align-items:center;
  width:auto;
  flex:0 0 auto;
}

.nc-rowhead-p{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin: 10px 0 10px;
  gap: 12px;
}

.nc-rowhead-left,
.nc-partners-p{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: fit-content !important;
  flex: 0 0 auto !important;
  margin-left: 0 !important;         /* cancels margin-left:auto */
}

/* badge anchor */
.brand-p.bongo{
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  line-height: 0 !important;
}

.brand-p.bongo .badge-spark{
  position: absolute !important;
  top: -6px !important;
  right: -10px !important;
}
.home-lite{
  margin-bottom: 20px;
}
.home-regular{
  margin-bottom: 15px;
}
.home-plan{
  margin-bottom: 15px;
}

/* 1.  Force bongo logo to stay small */
.brand-p.bongo.home-lite > img{
  width: 111px;
  height: auto;
  display: block;
}
.brand-p.bongo.home-regular > img{
  width: 145px !important;
  height: auto !important;
  display: block;
}

.brand-p.bongo.home-plan > img{
  width: 135px;
  height: auto !important;
  display: block;
}

/* 2) Force badge image (spark/free) size */
.brand-p.bongo .badge-spark img{
  width: 14px !important;
  height: 14px !important;
  display: block;
}

#vpOneMonth[style*="display: none"] {
  margin: 0 !important;
}


.nc-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 0 10px 10px 0;
  /* border: 1px solid #e5e7eb; */
  background: #fff
}

.nc-chip--gold {
  background: linear-gradient(
    to left,
    #fff5d8 0%,     /* existing left color */
    #ffe745 100%    /* right-side color (adjust if needed) */
  );
  color: #0f172a;
}

.nc-chip--purple {
  background: linear-gradient(
    to left,
    #fdf9ff 0%,     /* existing left color */
    #d6d3ff 100%    /* right-side color (adjust if needed) */
  );
  color: #0f172a;
}

.nc-partners {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap
}

.nc-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #0f172a
}

.nc-pill--corki {
  background: #fff1f2;
  border-color: #fecaca;
  color: #be123c
}

.nc-pill--spark {
  background: #fff1f2;
  border-color: #fecaca;
  color: #be123c
}

.brand.bongo {
  position: relative;
  /* anchor for badge */
  display: inline-flex;
  align-items: center;
}

/* notification spark */
.badge-spark {
  position: absolute;
  top: -4px;
  right: -8px;
  margin: 0;
  padding: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(239, 68, 68, .35);
  pointer-events: none;
}

/* spark image inside */
.badge-spark img {
  width: 14px;
  height: 14px;
  display: block;
}


/* Package grid */
.pkg-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;


}



/* Drawer */
.vp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .45);
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
  z-index: 9997
}

.vp-overlay.open {
  opacity: 1;
  pointer-events: auto
}

.vp-drawer {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 470px;
  max-width: 92vw;
  height: 100vh;
  background: #fff;
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  box-shadow: var(--shadow-strong);
  transition: .24s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column
}

.vp-drawer.open {
  transform: translateX(0);
  display: flex !important;
}

.vp-close {
  position: absolute;
  left: -52px;
  top: 14px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;

}

.vp-drawer.open .vp-close {
  opacity: 1;
  pointer-events: auto;
}


.vp-head {
  padding: 18px 18px 10px;
  border-bottom: 1px solid #eef2ff
}

.vp-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px
}

.vp-speedRow {
  margin-left: -18px;
  margin-right: -18px;
  background: #ecf8ff;
  border: 1px solid #bae6ff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 16px
}

.vp-speedNum {
  font-size: 50px;
  font-weight: 700;
  line-height: 1
}

.vp-speedUnit {
  font-size: 43px;
  font-weight: 300;
  margin-left: 6px;
  letter-spacing: -1px;
}

.vp-rate {
  padding-left: 14px;
  border-left: 1px solid #bae6ff;
}

.vp-rateLabel {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted)
}

.vp-rateValue {
  font-size: 20px;
  font-weight: 600
}

.vp-body {
  padding: 14px 18px;
  overflow: auto;
  flex: 1
}

.vp-card {
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  background: #fff
}

.vp-card.active {
  border-color: #e5e7eb;
  box-shadow: 0 10px 22px rgba(59, 130, 246, .12)
}

.vp-cardTitle {
  font-size: 20px;
  font-weight: 600
}

.vp-cardSub {
  font-size: 16px;
  font-weight: 400;
  color: #4f5257;
  margin-top: 4px
}

.vp-cardPrice {
  /* margin-top: -25px; */
  font-size: 22px;
  font-weight: 600
}



.vp-acc {
  margin-top: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc
}

.vp-accBtn {
  width: 100%;
  border: 0;
  background: #f8fafc;
  padding: 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px
}

.vp-accBody {
  display: none;
  padding: 12px
}

.vp-acc.open .vp-accBody {
  display: block
}

.vp-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  cursor: pointer;
  transition: 0.25s ease;
}

.vp-item+.vp-item {
  margin-top: 10px;
}

.vp-item.active,
.vp-card.active {
  border: 2px solid transparent;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(180deg, #2390FE 0%, #2390FE 80%, #9A21EA 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.vp-itemTitle {
  font-size: 20px;
  font-weight: 600
}

.vp-itemMeta {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 4px
}

.vp-dot {
  margin: 0 6px
}

.vp-save {
  color: #0071ff;
}

.vp-free {
  font-weight: 600;
  font-size: 13px;
  background: linear-gradient(90deg, #2390FE 0%, #2390FE 50%, #9A21EA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vp-per {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  gap: 8px;
  align-items: center
}

.vp-oldPrice{
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #000; /* black text */
}

/* diagonal red strike */
.vp-oldPrice::after{
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 50%;
  height: 2px;
  background: #ef4444; /* red */
  transform: rotate(-8deg); /* diagonal angle */
}

.vp-footer {
  padding: 14px 18px;
  border-top: 1px solid #eef2ff;
  background: #fff;
  
}

.vp-continue {
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 0;
  background: #cbd5e1;
  color: var(--muted);
  font-weight: 600;
  cursor: not-allowed
}

.vp-continue.enabled {
  background: #0071ff;
  color: #fff;
  cursor: pointer
}

/* Step-2 selection */
.sel-wrap {
  margin: 10px 0 18px
}

.sel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  margin-top: -10px;
}

.sel-label {
  font-size: 12px;
  font-weight: 450;
  color: var(--muted)
}

.sel-edit {
  border: 0;
  background: transparent;
  color: #2563eb;
  font-weight: 600;
  cursor: pointer
}

/* Compact card like reference image (shorter height) */
.sel-card {
  background: #ecf8ff;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  padding: 16px 32px 12px;
  position: relative;
}

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

/* Row: Speed | Duration | Total | X */
.sel-main {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 36px;
  /* space for X */
}

.sel-speed {
  display: flex;
  align-items: baseline;
  gap: 6px
}

.sel-speedNum {
  font-size: 34px;
  font-weight: 600;
  line-height: 1
}

.sel-speedUnit {
  font-size: 12px;
  font-weight: 600
}

.sel-per {
  font-size: 12px;
  font-weight: 450;
  color: var(--muted);
  margin-left: 2px
}

/* Columns (Duration + Total) compact */
.sel-cols {
  display: flex;
  gap: 12px;
  align-items: center;
}

.sel-colLabel {
  font-size: 11px;
  font-weight: 450;
  color: var(--muted)
}

.sel-colValue {
  font-size: 12px;
  font-weight: 600;
  margin-top: 2px;
  white-space: nowrap
}

/* Small X inside the card (top-right) */
.sel-close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 24px;
  height: 24px;
  border-radius: 10px;
  border: 1px solid #cfe2ff;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tags row: smaller pills, single line if possible */
.sel-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-size: 13px;
  font-weight: 600;
  /* padding: 5px 10px; */
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
  display: flex;
  line-height: 1;
}

.tag-green {
  background: #ecfdf5;
  border-color: #36B37E;
  color: #36B37E;
  height: 28px;
  padding: 7px 12px;
}

.tag-orange {
  background: #fff7ed;
  border-color: #C85B2B;
  color: #9a3412;
  height: 28px;
  padding: 7px 12px;
}

.tag-red {
  background: #fff1f2;
  border-color: #C85B2B;
  color: #be123c
}

/* Form */
.f-group {
  margin-bottom: 14px
}

.f-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px
}

/* ===== FIX: FORM WIDTH + SAME GRADIENT DESIGN ===== */

/* Full width inputs */
.f-input{
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 40px !important;
  padding: 0 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  box-sizing: border-box;
  outline: none;
  transition: .25s ease;
  font-size: 14px;
}

/* Gradient focus */
.f-input:focus,
.f-input:focus-visible{
  border: 2px solid transparent !important;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(180deg, #2390FE 0%, #2390FE 80%, #9A21EA 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: none;
  outline: none;
}

/* wrapper */
.f-phone{
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px !important;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: .25s ease;
}

/* left code */
.f-code{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 14px;
  background: #f8fafc !important; 
  border: 0 !important;          
  border-right: 1px solid #e5e7eb; 
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* input */
.f-input--phone{
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 12px;

  /* ❌ prevent inner border */
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* ✅ ONLY outer gets gradient */
.f-phone:focus-within{
  border: 2px solid transparent;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(180deg, #2390FE 0%, #2390FE 80%, #9A21EA 80%, #9A21EA 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* 🚫 BLOCK inner highlight completely */
.f-phone *:focus{
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background-image: none !important;
}

.f-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px
}

.f-use {
  border: 0;
  background: transparent;
  color: #2563eb;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .45);
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
  z-index: 9997
}

.mobile-packages {
  display: none;
}

.modal.open,
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto
}

/* Track */
.tyr-card {
  width: min(510px, 92vw);
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-strong)
}

.tyr-head {
  height: 56px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: linear-gradient(90deg, #00a3ff 0%, #1d4ed8 50%, #6d28d9 100%);
}

.tyr-title {
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 700;
}

.tyr-close {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer
}

.tyr-body {
  padding: 40px 24px;
}

.tyr-label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px
}

.tyr-phone {
  display: flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: #fff
}

.tyr-code {
  padding: 10px 12px;
  font-weight: 400;
  font-size: 14px;
  background: #f8fafc;
  border-right: 1px solid #e5e7eb
}

.tyr-input {
  flex: 1;
  border: 0;
  outline: none;
  padding: 10px 12px;
  font-weight: 400;
  font-size: 14px
}

.tyr-btn {
  width: 100%;
  height: 44px;
  margin-top: 40px;
  border: 0;
  border-radius: 10px;
  background: #cbd5e1;
  color: var(--muted);
  font-weight: 700;
  cursor: not-allowed
}

.tyr-btn.enabled {
  background: #3b82f6;
  color: #fff;
  cursor: pointer
}

/* OTP */
/* OTP container */
.otp {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

/* FINAL OTP FOCUS FIX */
  #otpModal .otp-box,
  #otpModal .otp-in {
    background: #fff;
    outline: none;
    transition: .25s ease;
  }

/* Remove full-width behavior if any */
.otp-box {
  flex: none !important;
}

.otp-card {
  width: min(610px, 96%);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .20);
  border: 1px solid rgba(229, 231, 235, .9);
  padding: 40px 80px;
  position: relative;
  text-align: center
}

.otp-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center
}

.otp-iconWrap {
  display: flex;
  justify-content: center;
  margin-bottom: 12px
}

.otp-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #eaf2ff;
  display: flex;
  align-items: center;
  justify-content: center
}

.otp-dot {
  width: 8px;
  height: 8px;
  background: #2563eb;
  border-radius: 3px;
  margin: 0 3px
}

.otp-title {
  padding-top: 32px;
  font-size: 36px;
  font-weight: 700;
}

.otp-sub {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.3
}

.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 14px 0 18px
}

.otp-in {
  width: 61px;
  height: 50px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  text-align: center;
  font-size: 16px;
  font-weight: 400;  
  color: #111827;
  outline: none
}


.otp-btn {
  width: min(380px, 100%);
  height: 44px;
  border-radius: 10px;
  border: 0;
  background: #cbd5e1;
  color: var(--muted);
  font-weight: 600;
  cursor: not-allowed
}

.otp-btn.enabled {
  background: #3b82f6;
  color: #fff;
  cursor: pointer
}

.otp-bottom {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center
}

.otp-row {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted)
}

.otp-link {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none
}

.otp-link:hover {
  text-decoration: underline
}

.otp-back {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none
}

.otp-back:hover {
  text-decoration: underline
}

/* Location modals */
.loc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999
}

.loc-overlay.open {
  display: flex
}

.loc-modal {
  width: min(520px, 100%);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(15, 23, 42, .25);
  padding: 32px 40px;
  position: relative
}

.loc-x {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1
}

.loc-h3 {
  margin: 2px 0 8px;
  font-size: 36px;
  color: #0f172a;  
  font-weight: 700;
}

.loc-p {
  margin: 0 0 16px;
  color: #64748b;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4
}

.loc-allow {
  width: 100%;
  height: 35px;
  border: 0;
  border-radius: 12px;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  cursor: pointer
}

.loc-allow:active {
  transform: translateY(1px)
}

.map-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 10000
}

.map-overlay.open {
  display: flex
}

.map-modal {
  width: min(600px, 96vw);
  height: min(600px, 96vw);
  max-width: 600px;
  max-height: 600px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(15, 23, 42, .25);
  padding: 32px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.map-x {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1
}

.map-h3 {
  margin: 4px 0 12px;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  color: #212B36;
}

.map-frameWrap {
  position: relative;
  flex: 1;
  min-height: 0;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  background: #f8fafc;
}

.map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 250, 252, .9);
  color: #334155;
  font-weight: 800;
  font-size: 14px
}

.map-save {
  margin-top: 14px;
  width: 100%;
  height: 35px;
  border: 0;
  border-radius: 12px;
  background: #2563eb;
  color: #fff;
  font-weight: 450;
  cursor: pointer
}

.map-save:disabled {
  opacity: .55;
  cursor: not-allowed
}

.map-save:active {
  transform: translateY(1px)
}

.loc-overlay {
  padding: 16px;
}

.loc-modal {
  width: min(610px, calc(100vw - 32px));
  max-width: 610px;
  box-sizing: border-box;
  margin: 0 auto;
}



/* Make sure centering always works */
.loc-overlay.open,
.map-overlay.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- FIX: Map modal should never overflow on mobile --- */
.map-overlay {
  padding: 16px;
}

.map-frameWrap {
  width: 100%;
}


/* Hover effect for Select Plan items */
.vp-item,
.vp-card {
  transition: 
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    background-color .25s ease;
  will-change: transform;
}

/* Hover + focus */
.vp-item:hover,
.vp-card:hover {
  border: 2px solid transparent;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(180deg, #2390FE 0%, #2390FE 80%, #9A21EA 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* Active (clicked) state */
.vp-item.active,
.vp-card.active {
  transform: translateY(-2px);
}

.vp-drawer {
  max-width: 100vw
}

.vp-per i {
  color: #0071ff;
}
/* --- Left block: make Mbps فوق and 792/Month নিচে --- */
.sel-speedBox{
  min-width:160px;
}

.sel-speedTop{
  display:flex;
  align-items:flex-start;
  gap:10px;
}

.sel-speedNum{
  font-size:50px;
  font-weight:700;
  line-height:1;
}

/* stacked block */
.sel-speedMeta{
  display:flex;
  flex-direction:column;
  gap:2px;
  margin-top:2px;
}

.sel-mbps{
  font-size:16px;
  font-weight:300;
  color:#475569;
  line-height:1.1;
}

.sel-monthly{
  font-size:20px;
  font-weight:600;
  color:#0f172a;
  line-height:1.1;
}

/* IMPORTANT: if your existing .sel-cols has margin-left:auto, override it */
.sel-main{
  display:flex;
  align-items:center;
  gap:14px;
  padding-right:42px; /* space for X */
}

.sel-vline{
  width:1px;
  height:40px;
  background:#D7E7F1;
  opacity:1;
  margin: 0;
}

/* keep your stacked Mbps/Month look */
.sel-speedMeta{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.sel-label{
  font-size:16px;
  font-weight:400;
  color:#64748b;
}

.sel-value{
  font-size:16px;
  font-weight:500;
  color:#0f172a;
  white-space:nowrap;
}
/* Track Your Request */
a#trackRequestBtn,
a#trackRequestBtn:link,
a#trackRequestBtn:visited,
a#trackRequestBtn:active{
  text-decoration: none !important;  /* remove underline */
  color: #2563eb !important;         /* normal color */
}

/* hover color */
a#trackRequestBtn:hover{
  text-decoration: none !important;
  color: #3d3fd8 !important;         /* hover color */
}


.nc-rowhead-left{
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

/* chip same height as logo pill */
.nc-chip{
  height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  line-height: 1;
}

/* logo pill */
.brand-p{
  height: 30px;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  /* padding: 0 10px !important; */
  line-height: 1 !important;
}

/* kill any previous "push down/up" effects */
.nc-partners-p{ padding-bottom: 0 !important; }



/* Fix: keep price + currency together */
.pkg .pkg-price,
.pkg .price,
.pkg .amount {
  white-space: nowrap;
}

/* If your markup is like: <small>1,470</small><span>৳</span> */
.pkg .pkg-price span,
.pkg .price span {
  display: inline;
  white-space: nowrap;
}

  .shell-card{
      border-radius: 22px;
      box-shadow: 0 10px 30px rgba(0,0,0,.06);
      border: 1px solid rgba(0,0,0,.04);
      padding: 15px 60px;
      margin: 20px 0;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

  /* Desktop header style */
  .header-bar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    /* padding: 20px 0 0 0; */
    gap: 16px;
  }

  .header-left{
    display:flex;
    align-items:center;
    gap: 14px;
    flex:1;
    min-width: 0;
  }

  .wifi-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width: 40px;
    height: 40px;
  }

  .title-inline{
    display:flex;
    align-items:baseline;
    gap: 16px;
    flex-wrap: wrap;
  }

  .top-title{
    font-weight: 600;
    font-size: 30px;
    line-height: 1.2; /* ⚠️ fix (0.1 is too small) */
  }


  .tyr-phone{
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: .25s ease;
  }

  .tyr-code{
    padding: 10px 12px;
    font-weight: 400;
    font-size: 14px;
    background: #f8fafc;
    border-right: 1px solid #e5e7eb;
  }

  .tyr-input{
    flex: 1;
    border: 0;
    outline: none;
    padding: 10px 12px;
    font-weight: 400;
    font-size: 14px;
    background: transparent;
  }

  /* same gradient design */
  .tyr-phone:focus-within{
    border: 2px solid transparent;
    background-image:
      linear-gradient(#fff, #fff),
      linear-gradient(180deg, #2390FE 0%, #2390FE 75%, #7A3BFF 90%, #9A21EA 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
  }

  .track-link{
    position: relative; /* 🔥 FIX */
    font-size: 16px;
    padding-left: 16px;
    line-height: 20px;
    font-weight: 600;
    text-decoration:none;
    color:#0d6efd;
    white-space: nowrap;
  }

  .track-link::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 35px;
    background: #e5e7eb;
  }


  .btn-next {
    padding: 8px 35px;
    border: none;
    border-radius: 12px;
    background-color: #d3dbff; /* grey */
    color: #606b77;
    font-weight: 700;
    font-size: 16px;
    cursor: not-allowed;
    transition: all 0.3s ease;
  }

  /* enabled state */
  .btn-next:not(:disabled) {
    background-color: #D3DBDF;
    color: #606B77;
    cursor: pointer;
  }


    .header-divider{
      height: 1px;
      background: #eceff3;
      width: 100%;
      margin: 10px 0 10px 0;
    }

    /* ---------- STEPPER ---------- */
    .stepper{
      padding: 0 18px;
      min-height: auto !important;
    }
    .step{
      display:flex;
      gap:12px;
      align-items:flex-start;
      margin-bottom: 18px;
    }
    .step .dot{
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-size: 12px;
      font-weight: 800;
      margin-top: 2px;
      flex: 0 0 auto;
    }
    .dot.active{
      background:#0d6efd;
      color:#fff;
      box-shadow: 0 6px 14px rgba(13,110,253,.25);
    }
    .dot.inactive{
      background:#e9ecef;
      color:#6c757d;
    }
    .step small{
      display:block;
      font-weight: 500;
      font-size: 10px;
      color:#6c757d;
      letter-spacing:.3px;
    }
    .step b{
      display:block;
      font-weight: 400;
      font-size: 16px;
      color:#212529;
    }


  /* ===== ISOLATED STEPPER FIX ===== */
    .stepper-v2{
      padding: 0;
    }

    .stepper-v2__item{
      position: relative;
      display: grid;
      grid-template-columns: 28px 1fr;
      column-gap: 12px;
      align-items: start;
      margin: 0 0 30px 0;
    }

    .stepper-v2__item:last-child{
      margin-bottom: 0;
    }

    /* connector line */
    .stepper-v2__item:first-child::after{
      content: "";
      position: absolute;
      left: 13px;
      top: 31px;
      height: calc(100% - 6px);
      width: 2px;
      background: #d7dde5;
      z-index: 0;
    }

    .stepper-v2__dot{
      position: relative;
      z-index: 1;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      line-height: 1;
      margin: 0;
      flex-shrink: 0;
    }

    .stepper-v2__dot--active{
      background: #0d6efd;
      color: #fff;
      box-shadow: 0 6px 14px rgba(13,110,253,.20);
    }

    .stepper-v2__dot--inactive{
      background: #cfd4da;
      color: #fff;
    }

    .stepper-v2__content{
      padding-top: 0;
      min-width: 0;
    }

    .stepper-v2__content small{
      display: block;
      margin: 0 0 2px 0;
      font-size: 10px;
      line-height: 1.2;
      font-weight: 500;
      color: #7b8794;
      text-transform: uppercase;
    }

    .stepper-v2__content b{
      display: block;
      margin: 0;
      font-size: 16px;
      line-height: 1.25;
      font-weight: 600;
      color: #1f2937;
    }

    .stepper-v2__content b.text-muted{
      color: #6b7280 !important;
    }

    .section-label{
      font-size: 12px;
      color:#6c757d;
      font-weight:700;
      margin-bottom: 10px;
    }

    .plan-header{
      margin-left: -16px;
      margin-right: -16px;
      border-radius: 12px;
    }


  
/* =====================================
   CLEAN STEP DIVIDER (ONLY ONE LINE)
===================================== */

.stepper-col{
  border-right: 1px solid #e5e7eb;
}

/* spacing adjustment */
.stepper-col{
  padding-right: 24px;
}
.content-col{
  padding: 0 20px 0 20px;
}
/* Bottom Next button (mobile only) */
.mobile-next-wrap{
  display: none;
}





/* ===== Success modal ===== */
.success-overlay{
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 10020;
}

.success-overlay.open{
  display: flex;
}

/* .success-modal{
  width: min(610px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  background: #fff;
  border-radius: 22px;
  padding: 28px 28px 22px;
  position: relative;
  text-align: center;
  box-shadow: 0 18px 60px rgba(15, 23, 42, .25);
} */

.success-close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon{
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon img{
  width: 75px;
  height: 75px;
  display: block;
}

.success-title{
  margin: 0 0 14px;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 700;
  color: #1f2937;
}

.success-text,
.success-support{
  margin: 0 auto 14px;
  max-width: 440px;
  font-size: 16px;
  line-height: 1.55;
  color: #6b7280;
}

.success-support a{
  color: #2563eb;
  text-decoration: underline;
}

.success-home-btn{
  width: 100%;
  max-width: 320px;
  min-height: 48px;
  margin: 10px auto 0;
  border-radius: 12px;
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
}

.success-home-btn:hover{
  background: #0b5ed7;
  color: #fff;
}

/* tablet */
@media (max-width: 768px){
  .success-modal{
    width: min(520px, calc(100vw - 24px));
    padding: 24px 20px 20px;
    border-radius: 20px;
  }

  .success-title{
    font-size: 30px;
  }

  .success-text,
  .success-support{
    font-size: 15px;
  }
}

/* mobile */
@media (max-width: 480px){
  .success-overlay{
    padding: 12px;
  }

  .success-modal{
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    padding: 22px 16px 18px;
    border-radius: 18px;
  }

  .success-close{
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .success-icon{
    width: 60px;
    height: 60px;
    margin-bottom: 14px;
  }

  .success-icon img{
    width: 60px;
    height: 60px;
  }

  .success-title{
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .success-text,
  .success-support{
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .success-home-btn{
    width: 100%;
    max-width: 100%;
    min-height: 46px;
    font-size: 14px;
  }
}






/* ===== CHATGPT FIX: OTP + Track input gradient focus (scoped, safe) ===== */

#tyrModal .tyr-phone {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  transition: 0.25s ease;
}

#tyrModal .tyr-phone:hover,
#tyrModal .tyr-phone:focus-within {
  border: 2px solid transparent;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(180deg, #2390FE 0%, #2390FE 80%, #9A21EA 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: none;
}

#tyrModal .tyr-code{
  padding:10px 12px !important;
  font-weight:400 !important;
  font-size:14px !important;
  background:#f8fafc !important;
  border-right:1px solid #e5e7eb !important;
}

#tyrModal .tyr-input{
  flex:1 1 auto !important;
  min-width:0 !important;
  border:0 !important;
  outline:none !important;
  padding:10px 12px !important;
  font-weight:400 !important;
  font-size:14px !important;
  background:transparent !important;
}


/* OTP modal layout reset */
#otpModal .otp{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  gap:16px !important;
  flex-wrap:nowrap !important;
  width:100% !important;
  margin:12px 0 0 !important;
  overflow:visible !important;
}
#otpModal .otp-box,
#otpModal .otp-in{
  flex:0 0 61px !important;
  width:61px;
  min-width:61px;
  max-width:61px;
  height:50px;
  padding:0 !important;
  margin:0 !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  font-size:16px !important;
  font-weight:400 !important;
  color:#111827 !important;
  border:1px solid #e5e7eb !important;
  border-radius:8px !important;
  background:#fff !important;
  outline:none !important;
  box-sizing:border-box !important;
  appearance:none !important;
  -webkit-appearance:none !important;
  transition:.25s ease !important;
}
#otpModal .otp-box::placeholder,
#otpModal .otp-in::placeholder{
  color:#9ca3af !important;
  opacity:1 !important;
}

#otpModal .otp-in:focus,
#otpModal .otp-in:focus-visible,
#otpModal .otp-box:focus,
#otpModal .otp-box:focus-visible {
  border: 1px solid transparent !important;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(180deg, #2390FE, #9A21EA) !important;
  background-origin: border-box !important;
  background-clip: padding-box, border-box !important;
  box-shadow: none !important;
  outline: none !important;
}


.mobile-confirm-btn {
  display: none;
}


.pkg {
  width: 210px;
  height: 77px;
  background: #fff;
  border: 1px solid #d4e1eb;
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
  transition: width .3s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.pkg:hover,
.pkg.active {
  width: 250px;
  border-color: #0071ff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .06);
}

.pkg-left {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.pkg-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.pkg-speed-row {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  line-height: 1;
}

.pkg-num {
  font-size: 37px;
  font-weight: 600;
  line-height: 110%;
  color: #111827;
}

.pkg-unit {
  font-size: 14px;
  font-weight: 400;
  color: #4b5563;
  margin-bottom: 10px;
}

.pkg-price {
  margin-top: 7px;
  padding-left: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
}

.pkg-action {
  position: absolute;
  top: 7px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  height: auto;
  padding: 0;
  margin: -7px;
}

.pkg-view {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transform: translateX(-8px);
  transition: max-width .25s ease, opacity .25s ease, transform .25s ease;
  color: #111827;
  font-size: 14px;
  font-weight: 400;
}

.pkg:hover .pkg-view,
.pkg.active .pkg-view {
  opacity: 1;
  max-width: 70px;
  transform: translateX(0);
}

.pkg-arrow {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #F9FAFA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #5b6472;
  flex-shrink: 0;
  transition: .25s ease;
}

.pkg-arrow i {
  line-height: 1;
}

.pkg:hover .pkg-arrow,
.pkg.active .pkg-arrow {
  color: #0071ff;
}

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

.pkg-price-row .pkg-price {
  margin-left: auto;
}

.pkg-old {
  position: relative;
  right: auto;
  bottom: auto;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #111827;
  white-space: nowrap;
  margin-top: 7px;
}

.pkg-old::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 50%;
  height: 1px;
  background: #ef4444;
  transform: rotate(-8deg);
}

.nc-brand-regular {
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nc-brand-regular-img {
  width: 115px;
  height: auto;
  display: block;
  object-fit: contain;
}