/*
Theme Name: Final Theme
Author: AK Dev
Description: Custom wordpress theme.
Version: 1.0
*/
  :root {
    --orange: #F58220;
    --orange-dark: #ea580c;
    --navy: #0E317E;
    --navy-light: #2d4070;
    --green: #16a34a;
    --red: #dc2626;
    --yellow: #eab308;
    --gray-50: #f9fafb;
    --gray-100: #BABABA;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #444444;
    --gray-700: #374151;
    --gray-900: #111827;
	--gray-med: #6C6C6C;
	--gray-head: #5D5D5D;
    --white: #ffffff;
	--pending: #F4D714;
	--open: #55CA1A;
	--close: #E60C0C;
  }

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

  body {
    font-family: "Roboto", sans-serif;
    color: var(--gray-900);
    background: #fff;
    font-size: 14px;
  }
ul {
	list-style-type: none;
    padding: 0;
    margin: 0;
}
img {
	max-width: 100%;
}
.container-large {
	max-width: 1340px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 30px;
}
.bg-orange {
	background: var(--orange);
}
  /* TOP AD BAR */
  .top-ad-bar {
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #888;
    letter-spacing: 2px;
  }

  /* ── TOP BAR ── */
  .header-top {
    background: var(--orange);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  /* Mosaic/pixel-art style K2M logo */
  .logo-svg-wrap {
    flex-shrink: 0;
  }
  .logo-svg-wrap svg {
    height: 52px;
    width: auto;
  }

  /* Ad box on right side of top bar */
  .header-ad-box {
    flex: 1;
    max-width: 50%;
    background: #EFAF92;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 4px;
    padding: 18px 32px;
    text-align: center;
    color: rgba(255,255,255,0.75);
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
  }

  /* ── NAV BAR ── */
.site-navigation {
	background: #1a3a8a;
}
/*
  .nav-bar {    
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0;
  }
  .nav-bar a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 28px 20px;
    display: block;
    transition: color 0.2s;
    white-space: nowrap;
  }
.nav-bar li:first-of-type a {
	padding-left: 0;
}
  .nav-bar a:hover { color: #fff; }
  .nav-bar a.active { color: var(--orange); font-weight: 500; }
  .nav-bar .nav-spacer { flex: 1; }
  .nav-bar .nav-icon {
    color: rgba(255,255,255,0.88);
    font-size: 20px;
    padding: 18px 12px;
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
  }
  .nav-bar .nav-icon:hover { color: var(--orange); }
  .nav-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
*/

/* ════════════════════════════════════════════
   NAV BAR  (outer ul)
════════════════════════════════════════════ */
.nav-bar {
  background: var(--k2m-navy);
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1000;
  list-style: none;
  margin: 0;
}

/* ── Hamburger — hidden on desktop ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 14px 0;
  background: none;
  border: none;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px)  rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Nav links wrapper (inner ul) ── */
ul.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── Top-level nav items (li) ── */
ul.nav-links > li.nav-item {
  position: relative;
  list-style: none;
}

ul.nav-links > li.nav-item > a {
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  padding: 22px 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
ul.nav-links > li.nav-item > a:hover       { color: var(--white); background: rgba(255,255,255,0.08); }
ul.nav-links > li.nav-item > a.active,
ul.nav-links > li.current-menu-item > a,
ul.nav-links > li.current-menu-ancestor > a { color: var(--k2m-orange); font-weight: 600; }

/* ── Chevron on items that have children ── */
ul.nav-links > li.nav-item.has-sub > a::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 3px;
  opacity: 0.7;
  transition: transform 0.25s;
}
ul.nav-links > li.nav-item.has-sub:hover > a::after {
  transform: rotate(225deg) translateY(-2px);
}

/* ════════════════════════════════════════════
   DROPDOWN (sub-menu ul)
════════════════════════════════════════════ */
ul.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 2000;
  border-top: 3px solid var(--k2m-orange);
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

/* Show on hover / focus */
ul.nav-links > li.nav-item:hover       > ul.nav-dropdown,
ul.nav-links > li.nav-item:focus-within > ul.nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Wide two-column dropdown */
ul.nav-dropdown.wide {
  min-width: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}
ul.nav-dropdown.wide > li.dropdown-col { padding: 10px 0; }
ul.nav-dropdown.wide > li.dropdown-col > span.dropdown-col-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--k2m-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px 6px;
}

/* Dropdown list items */
ul.nav-dropdown > li             { list-style: none; }
ul.nav-dropdown > li > a         {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: #2d3748;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
ul.nav-dropdown > li > a:hover { background: #fff7ed; color: var(--k2m-orange); }

/* Icon badge inside dropdown link */
ul.nav-dropdown > li > a .dd-icon {
  width: 28px;
  height: 28px;
  background: #f3f4f6;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  transition: background 0.15s;
}
ul.nav-dropdown > li > a:hover .dd-icon { background: #fed7aa; }

/* Divider item */
ul.nav-dropdown > li.dd-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 4px 0;
  padding: 0;
  pointer-events: none;
}

/* ── Spacer & Icons ── */
.nav-bar .nav-spacer { flex: 1; }
.nav-bar .nav-icons  { display: flex; align-items: center; }
.nav-bar .nav-icon {
  color: rgba(255, 255, 255, 0.88);
  padding: 18px 12px;
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.nav-bar .nav-icon:hover { color: var(--k2m-orange); }
.nav-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

/* ════════════════════════════════════════════
   MOBILE  ≤ 900px
════════════════════════════════════════════ */
@media (max-width: 900px) {

  .nav-bar {
    padding: 0 16px;
    flex-wrap: wrap;
    align-items: stretch;
  }

  /* Show hamburger */
  .nav-hamburger { display: flex; }

  /* Hide spacer and icons */
  .nav-bar .nav-spacer { display: none; }
  .nav-bar .nav-icons  { display: none; }

  /* Nav links — collapsed by default */
  ul.nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    background: var(--k2m-navy-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
  }
  ul.nav-links.mobile-open { display: flex; }

  /* Full-width nav items */
  ul.nav-links > li.nav-item { width: 100%; }
  ul.nav-links > li.nav-item > a {
    padding: 14px 20px;
    font-size: 15px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  /* Chevron always visible on mobile */
  ul.nav-links > li.nav-item.has-sub > a::after {
    transform: rotate(45deg);
    opacity: 1;
  }
  ul.nav-links > li.nav-item.has-sub.mobile-sub-open > a::after {
    transform: rotate(225deg);
  }

  /* Dropdown — accordion style */
  ul.nav-dropdown,
  ul.nav-dropdown.wide {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    min-width: 100%;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-top: none;
    border-left: 3px solid var(--k2m-orange);
    background: var(--k2m-navy-deeper);
    padding: 4px 0;
  }
  ul.nav-links > li.nav-item.has-sub.mobile-sub-open > ul.nav-dropdown,
  ul.nav-links > li.nav-item.has-sub.mobile-sub-open > ul.nav-dropdown.wide {
    display: block;
  }

  /* Wide col titles on mobile */
  ul.nav-dropdown.wide > li.dropdown-col { padding: 4px 0; }
  ul.nav-dropdown.wide > li.dropdown-col > span.dropdown-col-title {
    padding: 10px 20px 4px;
    font-size: 10px;
  }

  /* Dropdown links on mobile */
  ul.nav-dropdown > li > a {
    padding: 10px 20px 10px 28px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    white-space: normal;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  ul.nav-dropdown > li > a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--k2m-orange);
  }
  ul.nav-dropdown > li > a .dd-icon {
    background: rgba(255, 255, 255, 0.1);
    font-size: 12px;
    width: 24px;
    height: 24px;
  }
  ul.nav-dropdown > li > a:hover .dd-icon { background: rgba(249, 115, 22, 0.25); }
  ul.nav-dropdown > li.dd-divider          { background: rgba(255, 255, 255, 0.08); }
}

/* ════════════════════════════════════════════
   VERY SMALL  ≤ 480px
════════════════════════════════════════════ */
@media (max-width: 480px) {
  .nav-bar { padding: 0 12px; }
}


  /* ════════════════════════════════════
     MOBILE RESPONSIVE  ≤ 900px
  ════════════════════════════════════ */
  @media (max-width: 900px) {

    .header-top { padding: 10px 16px; gap: 12px; }
    .logo-svg-wrap svg { height: 40px; }
    .header-ad-box { padding: 10px 16px; font-size: 12px; letter-spacing: 1.5px; }

    ul.nav-bar { padding: 0 16px; flex-wrap: wrap; align-items: stretch; }

    .nav-hamburger { display: flex; }

    ul.nav-bar .nav-spacer { display: none; }
    ul.nav-bar .nav-icons { display: none; }

    ul.nav-links {
      display: none;
      flex-direction: column;
      align-items: stretch;
      width: 100%;
      background: #162d73;
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-bottom: 8px;
    }
    ul.nav-links.mobile-open { display: flex; }

    ul.nav-links > li.nav-item { width: 100%; }
    ul.nav-links > li.nav-item > a {
      padding: 14px 20px;
      font-size: 15px;
      justify-content: space-between;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    ul.nav-links > li.nav-item.has-sub > a::after { transform: rotate(45deg); opacity: 1; }
    ul.nav-links > li.nav-item.has-sub.mobile-sub-open > a::after { transform: rotate(225deg); }

    /* Mobile accordion dropdown */
    ul.nav-dropdown,
    ul.nav-dropdown.wide {
      position: static;
      display: none;
      grid-template-columns: 1fr;
      min-width: 100%;
      width: 100%;
      border-radius: 0;
      box-shadow: none;
      opacity: 1;
      visibility: visible;
      transform: none;
      border-top: none;
      background: #0f2260;
      border-left: 3px solid var(--orange);
      padding: 4px 0;
    }
    ul.nav-links > li.nav-item.has-sub.mobile-sub-open > ul.nav-dropdown,
    ul.nav-links > li.nav-item.has-sub.mobile-sub-open > ul.nav-dropdown.wide { display: block; }

    ul.nav-dropdown.wide .dropdown-col { padding: 4px 0; }
    ul.nav-dropdown.wide .dropdown-col-title { padding: 10px 20px 4px; font-size: 10px; }

    ul.nav-dropdown > li > a {
      padding: 10px 20px 10px 28px;
      font-size: 13px;
      color: rgba(255,255,255,0.8);
      white-space: normal;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    ul.nav-dropdown > li > a:hover { background: rgba(255,255,255,0.06); color: var(--orange); }
    ul.nav-dropdown > li > a .dd-icon { background: rgba(255,255,255,0.1); font-size: 12px; width: 24px; height: 24px; }
    ul.nav-dropdown > li > a:hover .dd-icon { background: rgba(249,115,22,0.25); }
    ul.nav-dropdown > li.dd-divider { background: rgba(255,255,255,0.08); }
  }

  @media (max-width: 480px) {
    .header-top { padding: 8px 12px; gap: 8px; }
    .logo-svg-wrap svg { height: 34px; }
    .header-ad-box { font-size: 10px; padding: 8px 10px; letter-spacing: 1px; }
  }

  /* HERO AD HERO SECTION */
  /* ── HERO SECTION ── */
  .hero-section {
    background: #0d1f6e;
    position: relative;
    overflow: hidden;
    padding: 71px 0 127px;
	  background-image: url('https://leelanshu.com/wp-content/uploads/2026/03/ad-bg.png');
	  background-repeat: no-repeat;
	  background-position: center center;
	  background-size: cover;
  }

  /* Network/tech geometric background canvas */
  #heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    z-index: 2;
  }

.section-nav-items {
	display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 16px;
    margin-bottom: 50px;
    padding: 10px 20px;
    background: linear-gradient(180deg, #FFFFFF 44.71%, rgba(70, 98, 161, 0.2) 100%);
    border-radius: 48px;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
}
.section-nav-items a {
	color: var(--navy)!important;
}
.section-nav-items a:hover {
	color: var(--orange)!important;
}
.single #main section {
	padding: 30px 0;
}
.hover-anim-shadow {
	transition: all .2s ease-in-out;
}
.hover-anim-shadow:hover {
	transform: translateY(-5px);
	box-shadow: 0px 5px 10px #ddd !important;
}

  /* Large white ad rectangle */
  .hero-ad-box {
    background: #fff;
    border-radius: 16px;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  }
  .hero-ad-box span {
    color: var(--gray-head);
    font-size: 36px;
    font-weight: 300;
    text-transform: uppercase;
  }

  /* ── BROKER STRIP (overlapping bottom of hero) ── */
  .broker-strip-wrap {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin: -52px auto 0;
    padding: 0 40px;
  }
  .broker-strip {
    background: #fff;
    border-radius: 12px;
	padding: 15px 12px 12px 25px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  .broker-strip-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px 13px 10px;
	background: #EBEBEB;
	  border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .broker-strip-card:last-child { border-right: none; }
  

  /* Square icon with colored border */
  .bsc-icon {
    width: 32px;
	height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
	margin-left: -25px;
  }
  .bsc-icon.green { border-color: var(--green); }
  .bsc-icon.red   { border-color: var(--red); }
  .bsc-icon svg { width: 22px; height: 22px; }

  .bsc-info { flex: 1; }
  .bsc-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
  }
  .bsc-sub {
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 1px;
  }

  .bsc-btn {
    background: var(--orange);
    color: #fff;
    border: none;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 3px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
  }
  .bsc-btn:hover { background: var(--orange-dark); }

  /* MAIN CONTENT */
  .main-container { max-width: 1100px; margin: 0 auto; padding: 24px 20px; }

/* flexible content css */
.flexbile-content table {
	opacity: 0;
}
.div-table {
	margin-bottom: 15px;
	display: table;
    width: 100%;
    table-layout: fixed;
}
.flexible-row {
    display: grid;
    gap: 20px;
	margin-top: 40px;
}
.flexible-col {
    padding: 25px;
}
.ipo-timetable .ipo-table[class*="size-"] {
    display: grid;
}
.size-1 {
    grid-template-columns: 1fr;
}
.size-1\/2 {
    grid-template-columns: repeat(2, 1fr);
}
.size-1\/3 {
    grid-template-columns: repeat(3, 1fr);
}
.size-1\/4 {
    grid-template-columns: repeat(4, 1fr);
}
.size-1\/5 {
    grid-template-columns: repeat(5, 1fr);
}
.size-1\/6 {
    grid-template-columns: repeat(6, 1fr);
}
.div-row {
	display: table-row;
    transition: background 0.15s;
    font-size: 18px;
    font-weight: 400;
}
.div-cell {
	font-weight: 400;
	display: table-cell;
	padding: 15px;
	border-bottom: 1px solid var(--gray-100);
}
.cell-th {
	font-weight: 500;
}
.div-cell a {
	color: var(--orange);
	text-decoration: none;
}


/* end flexible content css */

/* SECTION TITLE with orange underline */
.section-title-wrap {
	display: flex;
	justify-content: center;
}
  .section-title {
    font-family: Roboto;
	font-weight: 600;
	font-size: 26px;
	letter-spacing: 0;
    color: var(--gray-head);
    margin-bottom: 20px;
    font-family: "Roboto", sans-serif;
    position: relative;
    padding-bottom: 10px;
	display: inline-block;
	margin-bottom: 42px;
  }
  .section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 50%;
	height: 4px;
    background: var(--orange);
    border-radius: 2px;
  }

  /* TABS SECTION */

  .tabs-bar {
    display: grid!important;
	grid-template-columns: 22px auto 22px;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 4px 0;
    align-items: center;
  }

  .tab-btn {
    padding: 11.5px 22px;
	border-radius: 50px;
    border: 1.5px solid var(--gray-200);
    background: #fff;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
	text-decoration: none;
  }
.tabs-bar .slick-slide {
	margin-right: 10px;
}
  /*.tab-btn:hover { border-color: var(--navy); color: var(--navy); background: rgba(249,115,22,0.05); }*/
  .tab-btn.active, .tab-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); font-weight: 600; }
  .tab-btn.nav-arrow {
    background: transparent;
    border-color: var(--gray-200);
    color: var(--gray-600);
    padding: 7px 10px;
    border-radius: 50%;
    font-size: 14px;
  }
  .tab-btn.nav-arrow:hover { border-color: var(--orange); color: var(--orange); }
	
.tabs-bar .slick-arrow {
	color: transparent;
	background: transparent;
	font-size: 0;
	border: unset;
	padding: 0;
	height: 13px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	cursor: pointer;
}
.tabs-bar .slick-next {
	background-image: url('https://leelanshu.com/wp-content/uploads/2026/03/next.png');
}
.tabs-bar .slick-prev {
	background-image: url('https://leelanshu.com/wp-content/uploads/2026/03/prev.png');
}
.text-content {
	margin-top: 15px;
}
.ipo-timetable .ipo-table {
	display: flex;
	flex-wrap: wrap;
	column-gap: 30px;
}
.ipo-timetable .ipo-table .acf-ul-table {
	width: 100%;
}
.ipo-timetable .ipo-table .size-Half {
	width: 50%;
	flex: 1;
}

  /* IPO GRID */
  .ipo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
  }

  @media(max-width: 700px) { .ipo-grid { grid-template-columns: 1fr; } }

  .ipo-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
	background: linear-gradient(180deg, #FFFFFF 44.71%, rgba(70, 98, 161, 0.2) 100%);

    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .ipo-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }

  .ipo-card-header {
    padding: 12px 25px;
    display: grid;
    grid-template-columns: 1fr;
  }
  .ipo-card-header h3 { font-size: 20px; font-weight: 700; }
  .ipo-card-header .col-label { font-size: 12px; }
.ipo-card-header-inner {
	display: flex;
	justify-content: space-between;
	background: var(--orange);
	padding: 9.5px 24px;
    border-radius: 27px;
    margin-top: 24px;
}
.ipo-card-header-inner div {
	font-weight: 500;
	color: var(--white);
}
  .ipo-table { width: 100%; padding: 0 25px;}
  .ipo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 10px;
	gap: 15px;
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.15s;
    cursor: pointer;
	text-decoration: none!important;
  }
  .ipo-row:last-child { border-bottom: none; }
  .ipo-row:hover { background: rgba(249,115,22,0.05); }
.ipo-badge {
	display: inline-block;
    width: 46px;
    height: 25px;
    border-radius: 26px;
}
.badge-pending {
	background: var(--pending);
}
.badge-close {
	background: var(--close);
}
.badge-open {
	background: var(--open);
}
  .company-name {
    font-weight: 400;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
  }
  .dot-green { background: var(--green); }
  .dot-red { background: var(--red); }
  .dot-yellow { background: var(--yellow); }

  .issue-date {
	font-weight: 400;
    color: var(--gray-600);
    white-space: nowrap;
  }

  .view-all {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    color: var(--gray-med);
    font-weight: 500;
    text-decoration-color: var(--gray-med);
    border-top: 1px solid var(--gray-100);
    transition: background 0.2s;
  }
  .view-all:hover { background: rgba(249,115,22,0.06); }

  .ipo-display-table .check-more {
    text-align: center;
    margin: 55px 0 88px;
  }
  .ipo-display-table .check-more a {
    color: var(--gray-med);
    font-weight: 500;
    font-size: 20px;
  }
  .check-more a:hover { text-decoration: underline; }

  /* ══════════════════════════════════════
     BROKER REVIEWS SECTION
  ══════════════════════════════════════ */
  .broker-section {
    background: #f0f0f0;
    background-image: url('https://leelanshu.com/wp-content/uploads/2026/03/broker-bg.png');
	background-position: center;
	background-repeat: no-repeat;
    background-size: cover;
    background-color: #ececec;
    padding: 70px 0 62px;
  }
  .broker-section-inner { }

  .broker-title-wrap { text-align: center; margin-bottom: 28px; }
  .broker-section-title {
	font-size: 32px;
    font-weight: 500;
    color: var(--navy);
    font-family: "Roboto", sans-serif;
    display: inline-block;
    margin-bottom: 8px;
    position: relative;
  }
  .broker-section-title:after {
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
  }
  .broker-title-underline {
    display: block;
    width: 80px; height: 3px;
    background: var(--orange);
    margin: 0 auto;
    border-radius: 2px;
  }

  /* Toggle tabs — two large pill buttons */
  .broker-type-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 42px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50px;
    padding: 5px 38px;
    /*box-shadow: 0 2px 8px rgba(0,0,0,0.1);*/
  }
  .broker-type-btn {
    padding: 15.5px 24px;
    border: none;
    background: transparent;
    font-family: "Roboto", sans-serif;
	font-size: 16px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.25s;
    border-radius: 50px;
    white-space: nowrap;
	background: #fff;
  }
  .broker-type-btn.active {
    background: #1a3a8a;
    color: #fff;
    box-shadow: 0 2px 8px rgba(26,58,138,0.3);
  }
  .broker-type-btn:hover:not(.active) {
	  background: #fff;
  }

  /* 3-column broker cards grid */
  .broker-cards-grid {
	display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
	padding: 0;
  }
	.broker-cards-grid.active {
		display: grid;
	}
  @media(max-width: 768px) { .broker-cards-grid { grid-template-columns: 1fr; } }

  .broker-review-card {
    background: #fff;
    border-radius: 15px;
    padding: 0 20px 25px;
	box-shadow: 0px 4px 30px 0px #00000040;
    transition: all 0.25s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .broker-review-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.13); transform: translateY(-4px); }
.broker-review-card p {
	font-size: 16px;
	color: var(--gray-700);
}

  /* Top: logo left, orange rating badge top-right corner */
  .brc-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
  }
  .brc-logo-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 26px;
  }
  /* AngelOne logo recreation */
  .brc-logo-angelone {
    display: flex;
	max-width: calc(100% - 30px);
    align-items: center;
    gap: 6px;
  }
  .brc-logo-angelone .logo-icon {
    width: 28px; height: 28px;
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    flex-shrink: 0;
  }
  .brc-logo-angelone .logo-text-angel { font-size: 18px; font-weight: 700; color: #1a237e; }
  .brc-logo-angelone .logo-text-one   { font-size: 18px; font-weight: 700; color: var(--orange); }

  /* ICICI logo recreation */
  .brc-logo-icici {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .brc-logo-icici .logo-main { font-size: 16px; font-weight: 800; color: #c0392b; letter-spacing: -0.5px; }
  .brc-logo-icici .logo-main span { color: #333; font-size: 13px; font-weight: 700; }
  .brc-logo-icici .logo-sub  { font-size: 9px; color: #888; letter-spacing: 0.2px; }

  /* Rating badge — orange square, top-right */
  .brc-rating {
    background: var(--orange);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    width: 58px;
	height: 58px;
    border-radius: 0 0 4px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    flex-shrink: 0;
    line-height: 1;
  }
  .brc-rating .star-icon { font-size: 25px; }
  .brc-rating .rating-num { font-weight: 500; margin-top: 3px; }

  .brc-broker-name {
    color: var(--gray-600);
    margin-bottom: 14px;
    font-weight: 500;
	font-size: 15px;
	margin-top: -12px;
  }

  .brc-divider {
    border: none;
    border-top: 1px solid #e8e8e8;
    margin: 0 0 12px;
  }

  .brc-detail-row {
    margin-bottom: 6px;
    color: var(--gray-700);
  }
  .brc-detail-row .brc-detail-label { font-weight: 700; color: var(--gray-600); margin-right: 4px; }
  .brc-detail-row .brc-detail-value { font-weight: 400; color: var(--gray-600); }

  .brc-divider2 {
    border: none;
    border-top: 1px solid #e8e8e8;
    margin: 12px 0;
  }

  /* Button row: text link + filled navy pill */
  .brc-btn-row {
    display: flex;
    align-items: center;
    gap: 44px;
    margin-top: 21px;
  }
  .btn-outline {
    background: transparent;
    border: none;
    color: var(--gray-med);
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    padding: 0;
    white-space: nowrap;
    transition: color 0.2s;
    flex-shrink: 0;
  }
  .btn-outline:hover { color: var(--navy); }
  .btn-primary {
    flex: 1;
    padding: 13.5px 12px;
    border: none;
    background: #1a3a8a;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
	line-height: 16px;
    font-weight: 400;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    white-space: nowrap;
	text-decoration: none;
  }
  .btn-primary:hover { background: #122a6a; }

  .check-more {
    text-align: center;
    margin: 28px 0 8px;
  }
  .check-more a {
    color: #888;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 400;
    font-size: 15px;
  }
  .check-more a:hover { color: var(--navy); }

  /* ══════════════════════════════════════
     AD BANNER
  ══════════════════════════════════════ */
  .ad-banner-wrap {
    padding: 0;
    margin: 42px auto 31px;
  }
  .ad-banner {
    background-image: url('https://leelanshu.com/wp-content/uploads/2026/03/ad2.png');
	  background-size: cover;
	  background-repeat: no-repeat;
	  background-position: center;
    border-radius: 16px;
    padding: 30px 30px 59px 50px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
    min-height: 160px;
  }
  /* Orange diagonal swoosh behind */
  .ad-banner::before {
    content: '';
    position: absolute;
    bottom: -30px; right: 160px;
    width: 260px; height: 220px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
    transform: rotate(-20deg);
  }
  .ad-banner-left { flex: 1; min-width: 0; }
  .ad-banner-left h4 {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: "Roboto", sans-serif;
  }
  .ad-banner-left p {
    color: rgba(255,255,255,0.92);
    font-size: 18px;
    margin-bottom: 18px;
	margin-bottom: 30px;
  }
  .ad-banner-controls {
    display: flex;
    gap: 23px;
    align-items: center;
    flex-wrap: wrap;
    max-width: 895px;
  }
  /* Dropdown selects — white pill style */
  .ad-select {
    appearance: none;
    -webkit-appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
    border: none;
    border-radius: 50px;
    padding: 12px 36px 12px 18px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    outline: none;
    min-width: 180px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
	width: 100%;
    max-width: 319px;
  }
  .ad-select:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.15); }

  .btn-visit {
    background: var(--navy);
    color: #fff;
    padding: 12px 32px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    font-family: "Roboto", sans-serif;
    flex-shrink: 0;
	width: 204px;
  }
  .btn-visit:hover { background: #122a6a; }

  /* Clipboard/checklist illustration on the right */
  .ad-banner-illustration {
    flex-shrink: 0;
    width: 120px;
    z-index: 1;
    align-self: flex-end;
  }
.ad-banner-illustration img {
	 max-width: 170px;
    position: absolute;
    width: auto;
    right: 0;
    bottom: 0;
}
  .ad-banner-illustration svg { width: 120px; height: 130px; }

  /* ══════════════════════════════════════
     FOOTER
  ══════════════════════════════════════ */
  footer {
    background: #082055;
    color: #fff;
    padding: 48px 0 0;
    border-top: 6px solid var(--orange);
  }
  .footer-inner {  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.4fr;
    gap: 24px;
    margin-bottom: 32px;
	padding: 0 50px;
  }
  @media(max-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

  .footer-col-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 16px;
    font-family: "Roboto", sans-serif;
  }
  .footer-col a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 10px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--orange); }

  /* Newsletter column */
  .footer-newsletter-label {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    margin-bottom: 14px;
  }
  .footer-newsletter {
    display: flex;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  .footer-newsletter input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    outline: none;
    background: transparent;
    color: #333;
    min-width: 0;
  }
  .footer-newsletter input::placeholder { color: #aaa; }
  .footer-newsletter button {
    background: #1a3a8a;
    color: #fff;
    border: none;
    padding: 9px 20px;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 50px;
    white-space: nowrap;
    max-height: 37px;
    top: 3px;
    position: relative;
    right: 3px;
  }
  .footer-newsletter button:hover { background: #122a6a; }
.footer-bottom-wrap {
	background: #061840;
	padding: 19px 0;
}
  .footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #fff;
	display: flex;
    justify-content: space-between;
  }

.ipo-display-table .ipo-card-header {
	padding: 35px 25px;
}

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .ipo-card { animation: fadeUp 0.4s ease both; }
  .ipo-card:nth-child(1) { animation-delay: 0.05s; }
  .ipo-card:nth-child(2) { animation-delay: 0.1s; }
  .ipo-card:nth-child(3) { animation-delay: 0.15s; }
  .ipo-card:nth-child(4) { animation-delay: 0.2s; }
  .ipo-card:nth-child(5) { animation-delay: 0.25s; }
  .ipo-card:nth-child(6) { animation-delay: 0.3s; }

@media(min-width:1025px) {
	.company-name, .issue-date, .ipo-card-header-inner div, .view-all, .broker-type-btn, .brc-rating .rating-num, .brc-broker-name {
    	font-size: 20px;
	}
	.ipo-card-header h3 {
		font-size: 26px;
	}
	.ipo-row {
		padding: 18px 15px;
	}
	.ipo-grid {
		gap: 30px;
	}
	.broker-section-title {
    	font-size: 48px;
	}
	.broker-cards-grid {
		padding: 0 38px;
	}
	.brc-rating .star-icon {
		font-size: 45px;
	}
	ul.nav-links > li.nav-item > a, .brc-detail-row, .btn-outline, .tab-btn, .footer-col a {
		font-size: 16px;
	}
	ul.nav-links > li.nav-item > a {
		padding: 28px 20px;
	}
	.brc-rating {
		width: 98px;
		height: 98px;
	}
	.section-title {
		font-size: 36px;
	}
	.tab-btn {
		padding: 15.5px 26px;
	}
	.tabs-bar .slick-slide {
		margin-right: 17px;
	}
	.broker-strip {
		padding: 20px 18px 20px 35px;
		gap: 46px;
	}
	.header-ad-box {
		max-height: 623px;
	}
}

@media(max-width: 1024px) {
	.size-1\/6 {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
	.cell-data {
		padding: 15px 0px !important;
    	font-size: 14px !important;
	}
	.ipo-display-table .ipo-card-header {
		padding: 35px 15px 15px;
	}
}
@media(max-width: 960px) {
	.hero-ad-box {
		min-height: 190px;
	}
}
@media(max-width: 960px) {
	.broker-strip {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.broker-strip-card {
		width: calc(50% - 14px);
	}
}
@media(max-width: 768px) {
	.ipo-badge {
		width: 34px;
    	height: 18px;
	}
	.broker-strip-wrap, .container-large {
		padding: 0 25px;
	}
	.ipo-card-header {
		padding: 12px 15px;
	}
	.ipo-table {
		padding: 0 15px;
	}
	.ipo-card-header h3 {
		font-size: 18px;
	}
	.ipo-card-header-inner {
		margin-top: 15px;
	}
	.footer-grid {
		padding: 0;
	}
	.section-nav-items {
		justify-content: center;
	}
	.single #main section {
		padding: 15px 0;
	}
	.size-1\/4, .size-1\/5, .size-1\/6 {
		grid-template-columns: 1fr 1fr;
	}
}
@media(max-width: 600px) {
	.broker-strip-card {
		width: 100%;
	}
	.broker-strip-wrap {
		margin-top: -100px;
	}
	.hero-ad-box {
		min-height: 130px;
	}
	.hero-section {
		padding-top: 35px;
	}
	.broker-strip-wrap, .container-large {
		padding: 0 15px;
	}
	.broker-type-tabs {
		gap: 15px;
		padding: 5px 0px;
	}
	.broker-type-tabs {
		margin-bottom: 25px;
	}
	.footer-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.footer-grid .footer-col:last-of-type {
		grid-column: 1 / -1;
	}
	.size-1\/2, .size-1\/3, .size-1\/4, .size-1\/5, .size-1\/6 {
		grid-template-columns: 1fr;
	}
	.section-nav-items {
		gap: 15px;
		border-radius: 10px;
		justify-content: flex-start;
		padding: 20px 15px;
	}
	.section-nav-items a {
		padding: 7px 16px;
        background: var(--orange);
        border-radius: 20px;
        color: #fff !important;
	}
	.ad-banner-wrap {
		margin-top: 0px;
	}
	.broker-type-btn {
		font-size: 14px;
	}
}