@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --orange:       #FF6B00;
  --orange-hover: #e55e00;
  --orange-pale:  #fff5ee;
  --orange-dim:   rgba(255, 107, 0, 0.10);
  --dark:         #1a1a1a;
  --text:         #222222;
  --text-2:       #555555;
  --text-3:       #999999;
  --border:       #e8e4df;
  --bg:           #f8f7f5;
  --white:        #ffffff;
  --radius:       10px;
  --radius-sm:    6px;
  --shadow-sm:    0 1px 6px rgba(0,0,0,0.07);
  --shadow:       0 3px 16px rgba(0,0,0,0.09);
  --font:         'Poppins', sans-serif;
}

/* ── Reset (Bootstrap ke saath compatible) ─────────────────── */
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  font-family: var(--font);
}
.blog-header{
  position: relative;
}
.blog-header .navbar {
  padding-top: 10px;
}
.blag-contant .top_home_wraper.white_option::before{
  display: none;
}
/* ================================================================
   HERO / TITLE SECTION
   ================================================================ */
.pb-hero {
  background: var(--dark);
  padding: 52px 0 44px;
  position: relative;
  overflow: hidden;
}
.pb-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg, transparent, transparent 44px,
    rgba(255,107,0,0.04) 44px, rgba(255,107,0,0.04) 88px
  );
  pointer-events: none;
}
.pb-hero-inner {
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.pb-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 12px;
  color: var(--text-3);
  padding: 0;
  background: transparent;
  list-style: none;
  margin-bottom: 18px !important;
}
.pb-hero-breadcrumb .breadcrumb-item a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}
.pb-hero-breadcrumb .breadcrumb-item a:hover { color: var(--orange); }
.pb-hero-breadcrumb .breadcrumb-item.active { color: #ccc; }
.pb-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #555;
  padding-right: 8px;
}

.pb-hero-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 13px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.pb-hero h1 {
  font-family: var(--font);
  font-size: clamp(24px, 3.8vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.28;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
}
.pb-hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.pb-hero-sub {
  font-family: var(--font);
  font-size: 15px;
  color: #aaaaaa;
  margin-bottom: 24px;
  line-height: 1.65;
  max-width: 640px;
}
.pb-hero-meta {
  font-family: var(--font);
  font-size: 12.5px;
  color: #888;
}
.pb-hero-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Feature Image */
.pb-feature-img {
  padding-top: 0;
  transform: translateY(28px);
}
.pb-feature-img img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow);
}

/* ================================================================
   MAIN LAYOUT — Bootstrap Row/Col
   ================================================================ */
.pb-layout {
  padding-top: 60px;
  padding-bottom: 0px;
}

/* ================================================================
   CONTENT COLUMN
   ================================================================ */
.pb-content {
  min-width: 0;
  font-family: var(--font);
}

/* Intro paragraph */
.pb-intro {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* Headings */
.pb-content h2 {
  font-family: var(--font);
  font-size: 21px;
  font-weight: 700;
  color: var(--dark);
  margin: 16px 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--orange);
  line-height: 1.35;
}
.pb-content h3 {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin: 28px 0 10px;
}

/* Paragraphs & Lists */
.pb-content p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 0px;
}
.pb-content ul,
.pb-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.pb-content li {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 6px;
}
.pb-content strong { color: var(--text); font-weight: 600; }
.pb-content a { color: var(--orange); text-decoration: none; }
.pb-content a:hover { text-decoration: underline; }

/* ── Info Box ─────────────────────────────────────────────── */
.pb-info-box {
  background: var(--orange-pale);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
}
.pb-info-box strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

/* ── Warning Box ──────────────────────────────────────────── */
.pb-warn-box {
  background: #fff8f5;
  border: 1px solid #ffd5bc;
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 24px 0;
  font-family: var(--font);
}
.pb-warn-title {
  font-size: 13px;
  font-weight: 700;
  color: #c04a00;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pb-warn-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 9px 0;
  border-bottom: 1px solid #ffe0cc;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}
.pb-warn-item:last-child { border-bottom: none; padding-bottom: 0; }
.pb-warn-item b { color: var(--text); font-weight: 600; }
.pb-warn-icon { color: #dd4400; min-width: 18px; font-style: normal; }

/* ── Steps ────────────────────────────────────────────────── */
.pb-steps {
  position: relative;
  margin: 24px 0;
}
.pb-steps::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange) 60%, transparent);
  z-index: 0;
}
.pb-step {
  display: flex;
  gap: 18px;
  margin-bottom: 14px;
}
.pb-step-num {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px rgba(255,107,0,0.25);
}
.pb-step-body {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  flex: 1;
  box-shadow: var(--shadow-sm);
  font-family: var(--font);
}
.pb-step-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
}
.pb-step-body p,
.pb-step-body li {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 0;
}
.pb-step-body ul { margin: 6px 0 0; padding-left: 18px; }

/* ── Bilty Preview Card ───────────────────────────────────── */
.pb-bilty-preview {
  border: 1.5px solid #e0d8d0;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 24px 0;
  box-shadow: var(--shadow);
  font-family: var(--font);
  background: #fff;
}
.pb-bilty-head {
  background: var(--orange);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
}
.pb-bilty-head-title { font-weight: 700; font-size: 13px; letter-spacing: 0.5px; }
.pb-bilty-head-lr {
  font-size: 12px;
  background: rgba(0,0,0,0.18);
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 600;
}
.pb-bilty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.pb-bilty-cell {
  padding: 11px 14px;
  border-right: 1px solid #ede8e0;
  border-bottom: 1px solid #ede8e0;
}
.pb-bilty-cell:nth-child(3n) { border-right: none; }
.pb-bilty-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 3px;
}
.pb-bilty-val { font-size: 13px; font-weight: 600; color: var(--text); }

/* ── Comparison Table ─────────────────────────────────────── */
.pb-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  font-family: var(--font);
}
.pb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  background: var(--white);
  margin-bottom: 0 !important;
}
.pb-table thead tr { background: var(--dark); }
.pb-table thead th {
  padding: 13px 16px;
  text-align: left;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  border: none;
}
.pb-table thead th.pb-col-orange { background: var(--orange); }
.pb-table tbody tr { border-bottom: 1px solid #f0ece6; transition: background 0.15s; }
.pb-table tbody tr:hover { background: var(--orange-pale); }
.pb-table tbody tr:last-child { border-bottom: none; }
.pb-table td { padding: 12px 16px; color: var(--text-2); vertical-align: top; border: none; }
.pb-table td:first-child { font-weight: 500; color: var(--text); }
.pb-check { color: #28a05a; font-weight: 700; }
.pb-cross { color: #cc3300; }

/* ── FAQ ──────────────────────────────────────────────────── */
.pb-faq {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font);
}
.pb-faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pb-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  cursor: pointer;
  user-select: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  gap: 12px;
  transition: background 0.2s;
}
.pb-faq-q:hover { background: var(--orange-pale); }
.pb-faq-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.3s, background 0.2s;
  line-height: 1;
}
.pb-faq-item.open .pb-faq-icon { transform: rotate(45deg); background: var(--orange); color: #fff; }
.pb-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  padding: 0 18px;
}
.pb-faq-item.open .pb-faq-a {
  max-height: 320px;
  padding: 14px 18px 18px;
  border-top: 1px solid var(--border);
}

/* ── Tags ─────────────────────────────────────────────────── */
.pb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-family: var(--font);
}
.pb-tag {
  background: var(--orange-dim);
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 99px;
  text-decoration: none;
  transition: background 0.2s;
  border: 1px solid rgba(255,107,0,0.2);
}
.pb-tag:hover { background: rgba(255,107,0,0.18); }

/* ── CTA ──────────────────────────────────────────────────── */
.pb-cta {
  background: var(--dark);
  border-radius: 14px;
  padding: 36px 32px;
  text-align: center;
  margin: 44px 0 0;
  position: relative;
  overflow: hidden;
  font-family: var(--font);
}
.pb-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 60%, rgba(255,107,0,0.16) 0%, transparent 60%);
  pointer-events: none;
}
.pb-cta-title {
  font-size: 21px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  position: relative;
}
.pb-cta-sub {
  font-size: 14px;
  color: #999;
  margin-bottom: 22px;
  position: relative;
}
.pb-cta-pills {
  position: relative;
}
.pb-cta-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 99px;
  padding: 5px 13px;
  font-size: 12px;
  color: #ccc;
}
.pb-btn {
  display: inline-block;
  background: var(--orange);
  color: #fff !important;
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 34px;
  border-radius: 99px;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255,107,0,0.35);
  position: relative;
}
.pb-btn:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,0,0.4);
}

/* ================================================================
   SIDEBAR COLUMN — STICKY TOC
   ================================================================ */
.pb-sidebar {
 position: sticky;
  top: 28px;
  align-self: flex-start; /* ← YE ADD KAREIN */
  font-family: var(--font);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* TOC Card */
.pb-toc {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.pb-toc-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pb-toc-title::before {
  content: '';
  width: 14px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.pb-toc ol {
  list-style: none;
  counter-reset: toc-c;
  padding: 0;
  margin: 0;
}
.pb-toc ol li {
  counter-increment: toc-c;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid #f2ede8;
  font-size: 13.5px;
  color: var(--text-2);
}
.pb-toc ol li:last-child { border-bottom: none; padding-bottom: 0; }
.pb-toc ol li::before {
  content: counter(toc-c, decimal-leading-zero);
  font-size: 11px;
  color: var(--orange);
  font-weight: 700;
  min-width: 20px;
  padding-top: 2px;
}
.pb-toc ol li a {
  color: var(--text-2);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}
.pb-toc ol li a:hover { color: var(--orange); }

/* Sidebar CTA Card */
.pb-sidebar-cta {
  background: var(--orange);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
  color: #fff;
}
.pb-sidebar-cta h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.pb-sidebar-cta p {
  font-size: 13px;
  opacity: 0.88;
  margin-bottom: 16px;
  line-height: 1.55;
}
.pb-sidebar-cta .pb-btn {
  background: #fff;
  color: var(--orange) !important;
  font-size: 13px;
  padding: 10px 22px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}
.pb-sidebar-cta .pb-btn:hover {
  background: #fff;
  transform: translateY(-1px);
  color: var(--orange-hover) !important;
}

/* ================================================================
   RELATED BLOGS SECTION
   ================================================================ */
.pb-related {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 0 64px;
  font-family: var(--font);
}
.pb-related-inner {
  max-width: 100%;
}
.pb-related-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pb-related-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
}

/* Blog Cards */
.pb-blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
}
.pb-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
}
.pb-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: #ede8e0;
}
.pb-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #f0ebe3 0%, #e8e2d8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.pb-card-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pb-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 7px;
}
.pb-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.pb-blog-card:hover .pb-card-title { color: var(--orange); }
.pb-card-desc {
  font-size: 13.5px;
  color: var(--text-3);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 12px;
}
.pb-card-meta {
  font-size: 12px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

/* ================================================================
   RESPONSIVE — Bootstrap breakpoints ke saath kaam karta hai
   ================================================================ */
@media (max-width: 991.98px) {
  /* lg breakpoint se neeche — Bootstrap handles the column stacking */
  .pb-layout {
    padding-top: 40px;
    padding-bottom: 0px;
  }
  .pb-sidebar {
    position: static;
    order: -1; /* Sidebar pehle aaye mobile mein */
  }
}

@media (max-width: 575.98px) {
  .pb-hero { padding: 36px 0 32px; }
  .pb-feature-img { transform: translateY(18px); }
  .pb-bilty-grid { grid-template-columns: 1fr 1fr; }
  .pb-bilty-cell:nth-child(3n) { border-right: 1px solid #ede8e0; }
  .pb-bilty-cell:nth-child(2n) { border-right: none; }
  .pb-cta { padding: 28px 20px; }
}

@media screen and (max-width: 767px) {
    body {
        font-size: 16px;
        text-align: left !important;
    }
    .pb-cta-pills {
    position: relative;
    gap: 12px;
}

.pb-content p {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.85;
    margin-bottom: 0;
    padding-bottom: 0;
    margin-top: 20px;
}
    .pb-feature-img {
        transform: translateY(18px);
        padding-top: 30px;
    }
      .page_wrapper {
        width: 100%;
        overflow-x: hidden;
      }
    .pb-sidebar {
        margin-bottom: 30px;
    }
}