﻿:root {
  --ink:      #111318;
  --ink-2:    #3a3f4b;
  --ink-3:    #7a8394;
  --rule:     #e8eaee;
  --rule-2:   #f2f4f7;
  --white:    #ffffff;
  --blue:     #2058f0;
  --blue-lt:  #eef2ff;
  --amber:    #e8a020;
  --amber-lt: #fff8ec;
  --green:    #12a460;
  --green-lt: #edfaf4;
  --red:      #e03030;
  --red-lt:   #fff0f0;
  --accent:   #2058f0;
  --r:        10px;
  --r-sm:     6px;
  --shadow-1: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-2: 0 4px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  --shadow-3: 0 12px 40px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.05);
  --t: .18s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }



/* ═══════════════════════════════ TOPBAR ═══ */
.topbar {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  box-shadow: var(--shadow-1);
}
.product_icon_mobile{ display:none;}
.headernew{box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 18px;}
.topbar-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; height: 56px;
}
.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.25rem;
  color: var(--ink); text-decoration: none;
  letter-spacing: -.01em;
  display: flex; align-items: center; gap: 8px;
}
.logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--ink-3);
}
.breadcrumb a { color: var(--ink-3); text-decoration: none; transition: color var(--t); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { opacity: .4; font-size: 10px; }

/* ═══════════════════════════════ HERO ═══ */
.hero {
  background: linear-gradient(120deg, #0f1f5c 0%, #1a3a8c 55%, #0d3068 100%);
  border-bottom: 1px solid var(--rule);
  padding: 15px 25px 14px;
  max-width: 100%;
}
.hero-inner { max-width: 1280px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-lt);
  color: var(--blue);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: 2px 9px;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: -.02em;
}
.hero p {
  color: #ffffff;
  font-size: 13px;
  max-width: 520px;
  margin-bottom: 9px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
}
.hero-stat i { color: var(--blue); font-size: 13px; }

/* ═══════════════════════════════ IPO STRIP ═══ */
.ipo-strip {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 31px 3px;
  padding-top: 11px;
}
.ipo-strip-inner {/* max-width: 1280px; */margin: 0 auto;text-align: center;}
.strip-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  text-align: center;
}
.strip-label::after {
  content: ''; flex: 1; height: 1px; background: var(--rule);
}
.ipo-cards {
  display: flex;
  /* gap: 10px; */
  /* flex-wrap: wrap; */
  align-items: center;
  text-align: center;
  margin: auto;
}
.ipo-card {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px 0px;
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: var(--r);
  text-decoration: none;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-1);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t), background var(--t);
  white-space: nowrap;
}
.ipo-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
  background: var(--blue-lt);
}
.ipo-card:hover .ipo-icon { background: var(--blue); color: var(--white); }
.ipo-icon {
  width: 30px; height: 30px; border-radius: var(--r-sm);
  background: var(--rule-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--blue);
  transition: background var(--t), color var(--t);
  flex-shrink: 0;
}
.ipo-tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: .05em;
  padding: 2px 7px; border-radius: 99px;
}
.tag-ipo  { background: var(--blue-lt);  color: var(--blue); }
.tag-ncd  { background: var(--amber-lt); color: var(--amber); }
.tag-cta  { background: var(--blue);     color: #fff; }

/* ═══════════════════════════════ LAYOUT ═══ */
.page-body {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 224px 1fr;
  gap: 0;
  padding: 22px 0px 45px;
  align-items: start;
}

/* ═══════════════════════════════ SIDEBAR ═══ */
.sidebar {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 14px;
  box-shadow: var(--shadow-1);
  overflow: hidden;
  position: sticky;
  top: 76px;
}
.sidebar-head {
  padding: 14px 16px 12px;
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #2e2f32;
}
.nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: none;
  background: none;
  padding: 11px 16px;
  /* font-family: 'Instrument Sans', sans-serif; */
  font-size: 13.5px;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
  text-align: left;
  transition: background var(--t), color var(--t);
  position: relative;
  border-bottom: 1px solid transparent;
}
.nav-btn:hover { background: var(--rule-2); color: var(--ink); }
.nav-btn.active {
  background: #fffcea;
  color: #9b9045;
  font-weight: 600;
}
.nav-btn.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #9b9045;
  border-radius: 0 2px 2px 0;
}
.nav-btn:not(:last-child) { border-bottom: 1px solid var(--rule-2); }
.nb-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: var(--rule-2);
  color: #535966;
  flex-shrink: 0;
  transition: background var(--t), color var(--t);
}
.nav-btn.active .nb-icon {background: #9b9045;color: #fff;}
.nav-btn:hover:not(.active) .nb-icon { background: var(--rule); color: var(--ink); }
.nb-text { flex: 1; line-height: 1.3; }
.nb-count {
  font-size: 10.5px; font-weight: 700;
  background: var(--rule-2); color: var(--ink-3);
  border-radius: 99px; padding: 1px 7px;
  transition: background var(--t), color var(--t);
}
.nav-btn.active .nb-count {background: #9b9045;color: #fff;}

/* ═══════════════════════════════ CONTENT ═══ */
.content {
  padding-left: 22px;
}

/* Tab panes */
.tab { display: none; }
.tab.active {
  display: block;
  animation: rise .2s ease;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Content header */
.content-hd {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-1);
  display: flex; align-items: center; gap: 14px;
}
.content-hd-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #4e4cdf;
  flex-shrink: 0;
}
.content-hd h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--ink); letter-spacing: -.01em;
  margin-bottom: 2px;
}
.content-hd p { font-size: 12.5px; color: var(--ink-3); }

/* Search */
.search-bar {
  position: relative; margin-bottom: 16px;
}
.search-bar input {
  width: 100%;
  padding: 11px 16px 11px 44px;
  border: 1.5px solid var(--rule);
  border-radius: 99px;
  background: var(--white);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px; color: var(--ink);
  outline: none;
  box-shadow: var(--shadow-1);
  transition: border-color var(--t), box-shadow var(--t);
}
.search-bar input::placeholder { color: var(--ink-3); }
.search-bar input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(32,88,240,.1);
}
.search-bar i {
  position: absolute; left: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--ink-3); font-size: 13.5px; pointer-events: none;
}
.search-clear {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: var(--ink-3); font-size: 13px; cursor: pointer;
  display: none; padding: 4px;
  border-radius: 50%;
  transition: color var(--t), background var(--t);
}
.search-clear:hover { color: var(--ink); background: var(--rule-2); }
.search-clear.visible { display: block; }

/* Accordion groups */
.acc-group {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow: var(--shadow-1);
  transition: box-shadow var(--t);
}
.acc-group:hover { box-shadow: var(--shadow-2); }
.acc-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  cursor: pointer;
  user-select: none;
  transition: background var(--t);
  background: var(--white);
}
.acc-head:hover { background: var(--rule-2); }
.acc-head-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--blue-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--blue);
  flex-shrink: 0;
  transition: background var(--t), color var(--t);
}
.acc-group.open .acc-head-icon {background: #4e4cdf;color: #fff;}
.acc-head-text { flex: 1; font-weight: 600; font-size: 13.5px; color: var(--ink); }
.acc-head-meta {
  display: flex; align-items: center; gap: 8px;
}
.acc-count {
  font-size: 11px; font-weight: 700;
  background: var(--rule-2); color: var(--ink-3);
  border-radius: 99px; padding: 2px 8px;
  transition: background var(--t), color var(--t);
}
.acc-group.open .acc-count { background: var(--blue-lt); color: var(--blue); }
.acc-caret {
  font-size: 11px; color: var(--ink-3);
  transition: transform var(--t), color var(--t);
}
.acc-group.open .acc-caret { transform: rotate(180deg); color: var(--blue); }

.acc-body { display: none; border-top: 1px solid var(--rule); }
.acc-body.open { display: block; }

/* Download rows */
.dl-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  text-decoration: none; color: var(--ink);
  border-bottom: 1px solid var(--rule-2);
  transition: background var(--t);
}
.dl-row:last-child { border-bottom: none; }
.dl-row:hover { background: #f8f9fc; }
.dl-row:hover .dl-action { background: var(--blue); color: #fff; transform: translateY(1px); }
.dl-row-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--rule-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--ink-3);
  flex-shrink: 0;
  transition: background var(--t), color var(--t);
}
.dl-row:hover .dl-row-icon { background: var(--blue-lt); color: var(--blue); }
.dl-row-text { flex: 1; }
.dl-row-name { font-size: 13.5px; font-weight: 500; color: var(--ink); line-height: 1.35; }
.dl-row-sub { font-size: 11.5px; color: var(--ink-3); margin-top: 1px; }
.dl-action {
  width: 32px; height: 32px; border-radius: 99px;
  background: var(--rule-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--ink-2);
  flex-shrink: 0;
  transition: background var(--t), color var(--t), transform var(--t);
}

/* ═══════════════════════════════ EMPTY STATE ═══ */
.empty-state {
  text-align: center; padding: 48px 24px;
  background: var(--white); border: 1px solid var(--rule);
  border-radius: 14px;
}
.empty-state i { font-size: 32px; color: var(--rule); margin-bottom: 12px; display: block; }
.empty-state p { color: var(--ink-3); font-size: 13.5px; }

/* ═══════════════════════════════ MOBILE ═══ */
@media (max-width: 820px) {
  .page-body { grid-template-columns: 1fr; padding: 16px; }
  .sidebar {
    position: fixed; left: -260px; top: 0; bottom: 0;
    width: 260px; z-index: 500;
    border-radius: 0; border: none;
    box-shadow: var(--shadow-3);
    overflow-y: auto;
    transition: left var(--t);
    height: 100dvh;
    padding-top: 56px;
  }
  .sidebar.open { left: 0; }
  .backdrop {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.3); z-index: 499;
    backdrop-filter: blur(2px);
  }
  .backdrop.show { display: block; }
  .mobile-fab {
    display: flex; position: fixed; bottom: 24px; right: 24px;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--blue); color: #fff;
    border: none; box-shadow: var(--shadow-3);
    font-size: 17px; cursor: pointer; z-index: 300;
    align-items: center; justify-content: center;
    transition: transform var(--t);
  }
  .mobile-fab:hover { transform: scale(1.06); }
  .content { padding-left: 0; }
  .hero { padding: 24px 16px 20px; }
  .ipo-strip {padding: 16px;}
  .hero h1 { font-size: 1.4rem; }
  .topbar-inner { padding: 0 16px; }
  .hero-meta { flex-wrap: wrap; gap: 12px; }
}
@media (min-width: 821px) {
  .mobile-fab { display: none; }
  .backdrop { display: none !important; }
}

/* ═══════════════════════════════ SCROLLBAR ═══ */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: #ccc; }

/***********************************************/
/* ── Live dot animation ── */
.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #12a460;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
    animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%,100% { box-shadow: 0 0 0 0 rgba(18,164,96,0.5); }
    50%      { box-shadow: 0 0 0 6px rgba(18,164,96,0); }
}

/* ── Card base ── */
.ipo-card {
    position: relative;
    border: 1.5px solid #e8eaee;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    text-decoration: none !important;
    display: block;
    transition: transform 0.22s cubic-bezier(.4,0,.2,1),
                box-shadow 0.22s cubic-bezier(.4,0,.2,1),
                border-color 0.22s;
}

/* ── Staggered fade-in on load ── */
.ipo-card--anim {
    opacity: 0;
    transform: translateY(18px);
    animation: card-rise 0.45s cubic-bezier(.4,0,.2,1) forwards;
}
.col-lg-2:nth-child(1) .ipo-card--anim { animation-delay: 0.05s; }
.col-lg-2:nth-child(2) .ipo-card--anim { animation-delay: 0.12s; }
.col-lg-2:nth-child(3) .ipo-card--anim { animation-delay: 0.19s; }
.col-lg-2:nth-child(4) .ipo-card--anim { animation-delay: 0.26s; }
.col-lg-2:nth-child(5) .ipo-card--anim { animation-delay: 0.33s; }
@keyframes card-rise {
    to { opacity: 1; transform: translateY(0); }
}

/* ── Hover lift ── */
.ipo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(32,88,240,0.13);
    border-color: #2058f0;
}

/* ── CTA card ── */
.ipo-card--cta {
    border-color: #2058f0;
    background: #eef2ff;
}
.ipo-card--cta:hover {
    box-shadow: 0 10px 28px rgba(32,88,240,0.22);
}

/* ── Image ── */
.ipo-card .img-gallary {
    display: block;
    width: 100%;
    /* height: 106px; */
    object-fit: contain;
    padding: 10px 8px 4px;
    transition: transform 0.3s ease;
}
.ipo-card:hover .img-gallary {
    transform: scale(1.04);
}

/* ── Badge ── */
.ipo-card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 2px 7px;
    border-radius: 99px;
    background: #eef2ff;
    color: #2058f0;
    line-height: 1.5;
    z-index: 2;
}
.ipo-card-badge--ncd {
    background: #fff8ec;
    color: #b87a0a;
}
.ipo-card-badge--cta {
    background: #2058f0;
    color: #fff;
}

/* ── Footer bar ── */
.ipo-card-footer {
    font-size: 11.5px;
    font-weight: 600;
    color: #3a3f4b;
    text-align: center;
    padding: 7px 8px 9px;
    border-top: 1px solid #e8eaee;
    background: #f9fafb;
    letter-spacing: 0.01em;
    transition: background 0.18s, color 0.18s;
}
.ipo-card:hover .ipo-card-footer {
    background: #eef2ff;
    color: #2058f0;
}
.ipo-card-footer--cta {
    background: #dce7ff;
    color: #2058f0;
}
.ipo-card:hover .ipo-card-footer--cta {
    background: #2058f0;
    color: #fff;
}

/* ── Arrow bounce on hover ── */
.ipo-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}
.ipo-card:hover .ipo-arrow {
    transform: translateX(4px);
}

/*****************/
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9); /* Soft green gradient */
  padding: 1px 12px;
  border-radius: 23px; /* Pill shape */
  border: 1px solid rgba(76, 175, 80, 0.3); /* subtle green border */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.status-dot {
  width: 7px;
  height: 7px;
  background-color: #2e7d32; /* Dark green */
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2); /* Pulsing glow effect */
}

.status-text {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #1b5e20; /* Dark green text */
  letter-spacing: 0.3px;
}