/*
Theme Name: RojgarPDF
Theme URI: https://rojgarpdf.com/
Description: Dedicated RojgarPDF child theme for GeneratePress with exact homepage & single post page CSS, side navigation drawer, 3-column grid, tables, FAQ accordions, and content containers.
Author: RojgarPDF
Template: generatepress
Version: 1.3.0
*/

/* ================================================================
   🎨 ROJGARPDF DESIGN SYSTEM — CSS Custom Properties
   ================================================================ */

:root {
  --brand: #25cb43;
  --a-color: #25cb43;
  --border: #d6dbea;
  --bg-body: #ffffff;
  --bg-white: #ffffff;
  --text-pri: #0f172a;
  --text-sec: #64748b;
  --width-content : 1000px;
  --overlay : rgba(0,0,0,0.5);
  --menu-hover: linear-gradient(90deg, #e8fff0, #f4fff8);
  --menu-border: linear-gradient(90deg, #25cb43, #45ec62);
  --title-bg: linear-gradient(90deg, #FFFFFF 0%, #F1F4FF 25%, #F1F4FF 50%, #F1F4FF 75%, #FFFFFF 100%);
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --card-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* ================================================================
   🌐 GLOBAL RESET & BASE STYLES
   ================================================================ */

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

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  background: #ffffff;
  color: var(--text-pri);
}

body.rojgarpdf-body {
  padding-top: 55px;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

a {
  color: #0A66C2;
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: var(--brand);
}

.container, .main-wrapper, .content-area, .sidebar-news {
  box-sizing: border-box;
}

.container {
  max-width: var(--width-content);
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  background: var(--bg-white);
  padding: 0;
  overflow: hidden;
}

.main-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: var(--width-content);
  margin: 0 auto;
  gap: 0;
}

.content-area,
.content-area.post-page,
.content-area.page-content-area,
.content-area.label-page {
  flex: 0 0 70%;
  max-width: 70%;
  min-width: 0;
  padding: 0 10px;
  box-sizing: border-box;
}

.content-area.home-page,
.home-page,
body.home .content-area,
body.front-page .content-area {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 10px !important;
}

body.home .sidebar-news,
body.front-page .sidebar-news {
  display: none !important;
}

.sidebar-news {
  flex: 0 0 30%;
  max-width: 30%;
  min-height: 400px;
  contain: layout style;
  overflow: hidden;
  padding: 0 10px;
  box-sizing: border-box;
}

/* ================================================================
   📌 HEADER & DRAWER NAVIGATION
   ================================================================ */

body.rojgarpdf-body {
  padding-top: 55px !important;
}

header.rojgarpdf-header {
  display: flex;
  align-items: center;
  background: #ffffff !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999 !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  height: 55px;
}

/* 🔑 WordPress Admin Bar Compatibility & Fixed Scroll Leak Fix */
#wpadminbar {
  position: fixed !important;
  top: 0 !important;
  z-index: 99999 !important;
}

body.admin-bar header.rojgarpdf-header {
  top: 32px !important;
}

/* body.admin-bar.rojgarpdf-body {
  padding-top: 87px !important;
} */

body.admin-bar #sidebar-menu {
  top: 87px !important;
  height: calc(100% - 87px) !important;
}

@media (max-width: 782px) {
  body.admin-bar header.rojgarpdf-header {
    top: 46px !important;
  }
  body.admin-bar.rojgarpdf-body {
    padding-top: 101px !important;
  }
  body.admin-bar #sidebar-menu {
    top: 101px !important;
    height: calc(100% - 101px) !important;
  }
}

.header-container {
  max-width: var(--width-content);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  height: 55px;
}

.menu-icon {
  display: inline-block;
  cursor: pointer;
}

.menu-icon div {
  width: 25px;
  height: 3px;
  background: var(--text-pri);
  margin: 5px 0;
  transition: 0.4s;
  border-radius: 1.5px;
}

.menu-icon .bar2 {
  width: 20px;
}

.menu-icon.change .bar1 {
  transform: translateY(8px) rotate(45deg);
}

.menu-icon.change .bar2 {
  opacity: 0;
}

.menu-icon.change .bar3 {
  transform: translateY(-8px) rotate(-45deg);
}

.header-logo {
  display: flex;
  align-items: center;
}

.site-branding-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  color: #0f172a;
}

.header-logo img,
.header-logo .custom-logo-img,
.header-logo .custom-logo {
  max-height: 38px !important;
  height: auto;
  width: auto !important;
  object-fit: contain;
  display: block;
}

.site-title-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.site-title-text {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.3px;
}

.site-tagline-text {
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
  line-height: 1.15;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}

.notification-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-pri);
  text-decoration: none;
}

.notification-icon svg {
  width: 26px;
  height: 26px;
  fill: #25D366;
}

.notification-count {
  position: absolute;
  top: -4px;
  right: -6px;
  background-color: red;
  color: white;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  font-size: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Navbar — Full Width Seamless Alignment */
.navbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  margin: 0 auto 10px auto;
  width: 100% !important;
  max-width: 100% !important;
  background: #F1F4FF;
  box-shadow: var(--card-shadow);
  border-bottom: 1px solid var(--border);
  scrollbar-width: none;
}

.navbar::-webkit-scrollbar {
  display: none;
}

.nav-list {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0 auto;
  padding: 0 15px;
}

.nav-item,
.nav-list li {
  display: flex;
  align-items: center;
}

.nav-link,
.nav-list li a {
  display: block;
  padding: 8px 14px;
  color: var(--text-pri);
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover,
.nav-list li a:hover {
  color: var(--brand);
}

/* Side Drawer Menu */
#sidebar-menu {
  position: fixed;
  top: 55px;
  left: -284px;
  width: 284px;
  padding: 5px 10px 0 0;
  height: calc(100% - 55px);
  background: var(--bg-white);
  transition: 0.3s;
  box-shadow: 2px 0 6px rgba(0,0,0,0.2);
  z-index: 1001;
  overflow-y: scroll;
}

#sidebar-menu.active {
  left: 0;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  display: none;
  z-index: 999;
}

#overlay.active {
  display: block;
}

#sidebar-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#sidebar-menu ul li a {
  padding: 10px 12px;
  border-bottom: 1px solid #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  color: var(--text-pri);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

#sidebar-menu ul li a:hover {
  color: var(--brand);
  font-weight: bold;
}

/* WordPress Customizer Side Drawer Menu Styles */
#sidebar-menu ul.side-drawer-menu li.menu-item-has-children > a::after {
  content: "\002B";
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

#sidebar-menu ul.side-drawer-menu li.menu-item-has-children.open-submenu > a::after {
  content: "\2212";
}

#sidebar-menu ul.side-drawer-menu li.menu-item-has-children > ul.sub-menu {
  display: none;
  background: linear-gradient(135deg, #ffffff, #f5f9ff);
  padding: 5px 0 5px 15px;
  border-radius: 8px;
  margin: 5px 10px;
  list-style: none;
}

#sidebar-menu ul.side-drawer-menu li.menu-item-has-children.open-submenu > ul.sub-menu {
  display: block;
}

#sidebar-menu ul.side-drawer-menu ul.sub-menu li a {
  font-size: 14px !important;
  font-weight: 500 !important;
  border-bottom: none !important;
  padding: 8px 15px !important;
}

.drop-label {
  display: block;
  padding: 10px;
  color: var(--text-pri);
  cursor: pointer;
  border-bottom: 1px solid #f8f8f8;
  font-size: 15px;
}

.drop-label::after {
  float: right;
  margin-right: 6px;
  content: "\002B";
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.dropdown input[type="checkbox"]:checked + .drop-label::after {
  content: "\2212";
}

.submenu {
  max-height: 0;
  transition: 0.3s ease;
  opacity: 0;
  border: 0 !important;
  pointer-events: none;
  background: linear-gradient(135deg, #ffffff, #f5f9ff);
  border-radius: 10px;
  overflow: hidden;
}

.dropdown input[type="checkbox"]:checked ~ .submenu {
  max-height: calc(100vh - 120px);
  opacity: 1;
  pointer-events: auto;
}

.submenu li a {
  padding: 12px 40px !important;
  font-size: 15px !important;
}

#sidebar-menu input[type="checkbox"] {
  display: none;
}

/* ================================================================
   🔥 SARKARIPREP.IN HOME GRID
   ================================================================ */

.home-page,
.home-content,
.content-area.home-page {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch !important;
  gap: 10px;
  position: relative;
  margin: 10px 0;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.home-column {
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  min-height: 450px;
  overflow: hidden !important;
  box-sizing: border-box;
  background: #ffffff !important;
  padding: 0 !important;
  margin: 0 !important;
}

.home-column h2.column-title,
.column-title {
  background: var(--title-bg) !important;
  color: var(--text-pri) !important;
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 10px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  text-align: center !important;
  border: 0 !important;
  border-bottom: 1px solid var(--border) !important;
  border-radius: 9px 9px 0 0 !important;
  flex-shrink: 0 !important;
}

.list-group {
  flex: 1;
  min-height: 220px;
  overflow: hidden;
}

.home-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-column li {
  display: block;
  transition: 0.2s;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.home-column li:last-child {
  border-bottom: 0;
}

.home-column .list-dot {
  position: absolute;
  background: var(--brand);
  width: 7px;
  height: 7px;
  top: 18px;
  left: 8px;
  border-radius: 50px;
}

.home-column .list-link {
  display: block;
  text-decoration: none;
  color: var(--text-pri);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  margin-left: 10px;
  padding: 10px 15px;
}

.home-column .list-link:hover {
  color: var(--brand);
}

.new-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  vertical-align: middle;
  text-transform: uppercase;
  background: var(--title-bg);
  color: var(--red);
  border: 1px solid var(--red);
  font-size: 9px;
  font-weight: bold;
  padding: 1px 6px;
  border-radius: 6px;
  margin-left: 4px;
  animation: blink-new 1.5s infinite;
}

@keyframes blink-new {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}

.column-btn {
  position: relative;
  flex-shrink: 0;
  margin-top: auto;
}

.view-all-btn {
  text-decoration: none;
  color: var(--text-pri);
  padding: 12px;
  border-top: 1px solid var(--border);
  background: var(--title-bg);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  display: block;
  line-height: 1.4;
}

.view-all-btn:hover {
  color: var(--brand);
  background: #ffffff;
}

/* ================================================================
   📑 EXACT SARKARIPREP.IN HOME & GENERAL CONTENT STYLING
   ================================================================ */

.home-content {
  box-sizing: border-box;
  margin: 10px 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.home-content * {
  box-sizing: border-box;
}

.home-content a {
  color: #0A66C2;
  text-decoration: none;
}

.home-content a:hover {
  color: var(--brand);
}

.home-content h1,
.home-content h2,
.home-content h3,
.home-content h4 {
  margin: 0;
  padding: 10px 15px;
  line-height: 1.5;
  text-align: center;
  font-family: var(--font-body);
}

.home-content h1 {
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-size: 18px;
  font-weight: 700;
}

.home-content h2,
.home-content h3,
.home-content h2.gb-text {
  background: var(--title-bg) !important;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--text-pri) !important;
}

.home-content p,
.home-content .gb-text {
  margin: 0;
  padding: 10px;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  text-align: justify;
  color: var(--text-pri);
}

/* ================================================================
   📄 EXACT SARKARIPREP.IN SINGLE POST PAGE STYLING
   ================================================================ */

.breadcrumb {
  font-size: 15px;
  margin: 5px 10px 10px 0;
  color: #000;
  font-weight: 500;
}

.breadcrumb a {
  color: var(--text-pri);
  text-decoration: none;
  text-transform: capitalize;
}

.breadcrumb a:hover {
  color: var(--brand);
}

.breadcrumb span {
  color: var(--text-pri);
}

.single-post {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-right: 0;
  background: #ffffff;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
}

.single-post h1.post-title {
  margin: 15px 20px 8px 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--text-pri);
}

.meta-row-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
  margin: 10px 0 15px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #ffffff;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.meta-row-wrapper .post-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 10px;
  background: var(--title-bg);
  font-size: 13px;
  color: var(--text-pri);
  font-weight: 500;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.meta-wrapper .post-meta a {
  text-decoration: none;
  color: var(--text-pri);
  font-weight: 500;
}

.post-body p {
  line-height: 1.7 !important;
  word-spacing: 1px !important;
  font-size: 16px !important;
  text-align: justify !important;
  margin-top: 0 !important;
  margin-bottom: 15px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  color: var(--text-pri) !important;
}

.post-body a {
  color: #3740FF;
  text-decoration: none;
}

.post-body a:hover {
  color: var(--brand);
}

/* Base Headings in Post Body (excluding FAQ questions) */
.post-body h2:not(.faq-question):not(.rank-math-question):not(.post-card h2),
.post-body h3:not(.faq-question):not(.rank-math-question):not(.post-card h3),
.post-body h4:not(.faq-question):not(.rank-math-question):not(.post-card h4) {
  text-align: center !important;
  padding: 10px !important;
  background: var(--title-bg) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-top: 15px !important;
  margin-bottom: 10px !important;
  border-top: 1px solid var(--border) !important;
  border-bottom: 1px solid var(--border) !important;
  color: var(--text-pri) !important;
}

.post-body ul:not(.sarkari-result-list):not(.nav-list) {
  list-style-type: none;
  padding: 0;
  margin: 0 15px 15px 15px;
  font-size: 16px;
}

.post-body ul:not(.sarkari-result-list):not(.nav-list) li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
  line-height: 1.7;
  text-align: justify;
  font-size: 16px;
}

.post-body ul:not(.sarkari-result-list):not(.nav-list) li::before {
  content: "\2756";
  color: var(--brand);
  position: absolute;
  left: 0;
  top: -2px;
  font-weight: bold;
  font-size: 14px;
}

.post-body img {
  max-width: 95%;
  height: auto;
  display: block;
  object-fit: cover;
  margin: 15px auto;
  border-radius: 10px;
}

.tr-caption-container {
  max-width: 95%;
  margin: 15px auto;
  text-align: center;
}

.tr-caption {
  font-size: 13px;
  color: #000;
  padding: 6px 10px;
  font-weight: 500;
  background: var(--title-bg);
  border-radius: 0 0 10px 10px;
  border: 1px solid var(--border);
  border-top: 0;
}

.share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--border);
  border-radius: 0 0 10px 10px;
  padding: 12px;
  background: var(--title-bg);
}

.share-label {
  font-weight: bold;
  font-size: 15px;
}

.share-buttons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

#wa-share { background: linear-gradient(135deg, #25D366, #128C7E); }
#tg-share { background: linear-gradient(135deg, #00BFFF, #0088cc); }
#fb-share { background: linear-gradient(135deg, #1877f2, #0d47a1); }
#tw-share { background: linear-gradient(135deg, #333, #000); }

.share-buttons a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* ================================================================
   🏷 EXACT SARKARIPREP.IN CATEGORY, LABEL & ARCHIVE PAGE STYLING
   ================================================================ */

.label-page {
  padding-right: 10px;
}

/* ================================================================
   🚨 PAGE ARTICLE & GENERATEBLOCKS RESET FOR STATIC PAGES
   ================================================================ */

.page-article,
.page-content-wrapper {
  width: 100% !important;
  box-sizing: border-box !important;
}

.page-content-wrapper > div[class*="gb-element"],
.page-content-wrapper > div[class*="gb-container"],
.page-content-wrapper .gb-inside-container,
.post-body [class*="gb-element"],
.post-body [class*="gb-container"] {
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  max-width: 100% !important;
  width: 100% !important;
  text-align: left !important;
}

/* Hide duplicate GenerateBlocks inner title headings when page title is present */
.page-content-wrapper > div[class*="gb-element"] > div > h1.gb-text,
.page-content-wrapper > div[class*="gb-element"] > div > h2.gb-headline {
  display: none !important;
}

.label-header,
.page-article .label-header {
  border: 1px solid var(--border) !important;
  border-radius: 10px 10px 0 0 !important;
  border-bottom: 1px solid var(--border) !important;
  overflow: hidden !important;
  margin-top: 10px !important;
  margin-bottom: 0 !important;
  background: var(--title-bg) !important;
}

.label-header h1,
.page-article .label-header h1 {
  font-size: 18px !important;
  background: var(--title-bg) !important;
  padding: 10px !important;
  text-align: center !important;
  text-transform: capitalize !important;
  margin: 0 !important;
  font-weight: 700 !important;
  color: var(--text-pri) !important;
  border: 0 !important;
}

.label-posts-wrapper,
.page-content-wrapper .label-posts-wrapper {
  margin-bottom: 15px;
  width: 100% !important;
}

.sarkari-result-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 15px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  overflow: hidden !important;
  width: 100% !important;
}

/* Post Cards List Rows (Compact Sarkariprep Spacing) */
div.post-card,
.post-card,
.page-content-wrapper div.post-card,
.page-content-wrapper .post-card,
.post-body div.post-card,
.post-body .post-card,
.label-posts-wrapper div.post-card,
.label-posts-wrapper .post-card,
.sarkari-result-list li.sarkari-item,
.sarkari-result-list li.post-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  gap: 10px !important;
  background: #ffffff !important;
  padding: 10px !important; /* Exact Sarkariprep 10px padding */
  transition: all 0.25s ease !important;
  border: 1px solid var(--border) !important;
  border-top: 0 !important; /* Seamless connection to label-header or previous card */
  overflow: hidden !important;
  margin: 0 !important;
  border-radius: 0 !important;
  transform: none !important;
  box-shadow: none !important;
  width: 100% !important;
  box-sizing: border-box !important;
  min-height: unset !important;
}

div.post-card::before,
.post-card::before,
.sarkari-result-list li::before {
  display: none !important;
  content: none !important;
}

/* 1st Card Seamless Connection to label-header */
.label-header + .page-content-wrapper .post-card:first-child,
.label-header + .page-content-wrapper .label-posts-wrapper:first-child .post-card:first-child,
.main-wrapper > main > .sarkari-result-list:first-child li:first-child {
  border-top: 0 !important;
  border-radius: 0 !important;
}

/* Standalone list without label-header gets top radius */
.main-wrapper > main > .label-posts-wrapper:first-child .post-card:first-child {
  border-top: 1px solid var(--border) !important;
  border-radius: 10px 10px 0 0 !important;
}

div.post-card:last-child,
.post-card:last-child,
.sarkari-result-list li:last-child {
  border-radius: 0 0 10px 10px !important;
}

div.post-card:hover,
.post-card:hover,
.sarkari-result-list li:hover {
  background: #ffffff !important;
}

div.post-card svg,
.post-card svg,
.page-content-wrapper div.post-card svg,
.page-content-wrapper .post-card svg,
.post-body div.post-card svg,
.post-body .post-card svg {
  width: 14px !important;
  height: 14px !important;
  fill: #0f172a !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}

div.post-card h2,
.post-card h2,
.page-content-wrapper div.post-card h2,
.page-content-wrapper .post-card h2,
.post-body div.post-card h2,
.post-body .post-card h2,
.label-posts-wrapper div.post-card h2,
.label-posts-wrapper .post-card h2,
h2.gb-headline.sp-section-title {
  flex: 1 1 auto !important;
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  border: 0 !important;
  background: transparent !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  text-align: left !important;
  color: #0f172a !important;
  display: block !important;
  box-sizing: border-box !important;
}

div.post-card a,
div.post-card h2 a,
.post-card a,
.post-card h2 a,
.page-content-wrapper div.post-card a,
.page-content-wrapper div.post-card h2 a,
.page-content-wrapper .post-card a,
.page-content-wrapper .post-card h2 a,
.post-body div.post-card a,
.post-body div.post-card h2 a,
.post-body .post-card a,
.post-body .post-card h2 a {
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  font-size: 16px !important;
  color: #0f172a !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  text-align: left !important;
  display: inline !important;
  background: transparent !important;
  border: 0 !important;
  line-height: 1.4 !important;
}

div.post-card a:hover,
div.post-card h2 a:hover,
.post-card a:hover,
.page-content-wrapper div.post-card a:hover {
  color: var(--brand) !important;
}

.load-more-container {
  text-align: center;
  margin: 20px 0 10px 0;
}

#load-more-btn,
.archive-pagination a,
.archive-pagination span {
  background-color: #f5f7ff !important;
  color: #000000 !important;
  border: 1px solid #dbe2f1 !important;
  padding: 8px 24px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-radius: 100px !important;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
}

#load-more-btn:hover,
.archive-pagination a:hover,
.archive-pagination span.current {
  background-color: var(--brand) !important;
  color: #ffffff !important;
  border-color: var(--brand) !important;
}

/* ================================================================
   📰 EXACT SARKARIPREP.IN SIDEBAR WIDGET STYLING
   ================================================================ */

aside.sidebar-news {
  flex: 0 0 30%;
  max-width: 30%;
  min-height: 400px;
  contain: layout style;
  overflow: hidden;
  padding: 0 10px;
  box-sizing: border-box;
}

.sidebar-section .widget,
aside.sidebar-news .widget {
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  margin-bottom: 10px !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

.sidebar-section .widget h3,
.sidebar-section .widget .title,
aside.sidebar-news .widget h3,
aside.sidebar-news .widget .title {
  margin: 0 !important;
  background: var(--title-bg) !important;
  text-align: center !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  padding: 10px !important;
  border-bottom: 1px solid var(--border) !important;
  color: var(--text-pri) !important;
}

.sidebar-section .widget-content ul,
aside.sidebar-news .widget-content ul {
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.sidebar-section .widget-content ul li,
aside.sidebar-news .widget-content ul li {
  border-bottom: 1px solid var(--border) !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.sidebar-section .widget-content ul li::before,
aside.sidebar-news .widget-content ul li::before {
  display: none !important;
  content: none !important;
}

.sidebar-section .widget-content ul li:last-child,
aside.sidebar-news .widget-content ul li:last-child {
  border-bottom: 0 !important;
}

.sidebar-section .widget-content ul li a,
aside.sidebar-news .widget-content ul li a {
  text-decoration: none !important;
  color: #000000 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  display: flex !important;
  align-items: center !important;
  padding: 10px 12px !important;
  transition: color 0.2s ease !important;
}

.sidebar-section .widget-content ul li a::before,
aside.sidebar-news .widget-content ul li a::before {
  content: "\27A7" !important;
  color: var(--brand) !important;
  margin-right: 8px !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
}

.sidebar-section .widget-content ul li a:hover,
aside.sidebar-news .widget-content ul li a:hover {
  color: var(--brand) !important;
}

/* Optional 2-Column Grid Widget Style */
.widget-grid-2col .widget-content ul {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 6px !important;
  padding: 6px !important;
}

.widget-grid-2col .widget-content ul li {
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  text-align: center !important;
  background: linear-gradient(135deg, #ffffff, #f5f9ff) !important;
}

.widget-grid-2col .widget-content ul li a {
  display: block !important;
  padding: 8px 4px !important;
  justify-content: center !important;
}

.widget-grid-2col .widget-content ul li a::before {
  display: none !important;
}

/* ================================================================
   📊 DATA TABLES & AUTOMATED SHORTCODE STYLING
   ================================================================ */

.news-table,
.wp-block-table table,
.post-body table,
.home-content .news-table,
.home-content table {
  width: 97% !important;
  margin: 10px auto !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  table-layout: fixed !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  font-size: 16px !important;
}

.news-table td,
.news-table th,
.wp-block-table td,
.wp-block-table th,
.post-body table td,
.post-body table th {
  padding: 10px !important;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
  font-size: 16px !important;
  word-break: break-word;
  border-right: 1px solid var(--border) !important;
  border-bottom: 1px solid var(--border) !important;
}

.news-table tr td:last-child,
.news-table tr th:last-child,
.wp-block-table tr td:last-child,
.wp-block-table tr th:last-child,
.post-body table tr td:last-child,
.post-body table tr th:last-child {
  border-right: 0 !important;
}

.news-table tr:last-child td,
.news-table tr:last-child th,
.wp-block-table tr:last-child td,
.wp-block-table tr:last-child th,
.post-body table tr:last-child td,
.post-body table tr:last-child th {
  border-bottom: 0 !important;
}

.news-table th,
.wp-block-table th,
.post-body table th {
  font-weight: 700;
  background: var(--title-bg) !important;
  text-align: center;
}

.news-table tr:hover,
.wp-block-table tr:hover,
.post-body table tr:hover {
  background: var(--title-bg);
}

.td_center,
.has-text-align-center {
  text-align: center !important;
}

/* ================================================================
   ❓ EXACT SARKARIPREP.IN FAQ & RANK MATH FAQ ACCORDION STYLING
   ================================================================ */

.faq-title,
.rank-math-faq-title,
h2.faq-title,
.post-body h2.faq-title,
.post-body h3.faq-title {
  text-align: center !important;
  padding: 10px 15px !important;
  background: var(--title-bg) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  margin: 15px auto 0 auto !important;
  border: 1px solid var(--border) !important;
  border-bottom: none !important;
  color: var(--text-pri) !important;
  border-radius: 10px 10px 0 0 !important;
  width: 97% !important;
  box-sizing: border-box !important;
}

.faq-container,
.wp-block-rank-math-faq-block,
#rank-math-faq,
.rank-math-faq-block {
  width: 97% !important;
  margin: 0 auto 15px auto !important;
  border: 1px solid var(--border) !important;
  border-radius: 0 0 10px 10px !important;
  overflow: hidden !important;
  background-color: #ffffff !important;
  box-sizing: border-box !important;
}

.faq-item,
.rank-math-faq-item {
  border-bottom: 1px solid var(--border) !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #ffffff !important;
}

.faq-item:last-child,
.rank-math-faq-item:last-child {
  border-bottom: none !important;
}

.faq-question,
.rank-math-question,
.faq-item h3,
.faq-item h4,
.rank-math-faq-item h3,
.rank-math-faq-item h4,
.rank-math-faq-item .rank-math-question,
.rank-math-faq-item .rank-math-question-title {
  padding: 14px 40px 14px 16px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.6 !important;
  cursor: pointer !important;
  position: relative !important;
  background: #ffffff !important;
  color: #0f172a !important;
  text-align: left !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
  transition: background-color 0.25s ease, color 0.25s ease !important;
  user-select: none !important;
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.faq-question::after,
.rank-math-question::after,
.rank-math-faq-item h3::after,
.faq-item h3::after {
  content: "\2771" !important;
  position: absolute !important;
  right: 18px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 13px !important;
  color: #64748b !important;
  font-weight: bold !important;
  transition: transform 0.3s ease, color 0.3s ease !important;
}

.faq-question:hover,
.rank-math-question:hover,
.faq-item h3:hover,
.rank-math-faq-item h3:hover {
  background: var(--title-bg) !important;
  color: var(--brand) !important;
}

.faq-question.active,
.rank-math-question.active,
.faq-item.active h3,
.rank-math-faq-item.active h3,
.faq-question.active-faq,
.rank-math-question.active-faq {
  background: #F1F4FF !important;
  color: #0f172a !important;
  font-weight: 700 !important;
}

.faq-question.active::after,
.rank-math-question.active::after,
.faq-item.active h3::after,
.rank-math-faq-item.active h3::after,
.faq-question.active-faq::after,
.rank-math-question.active-faq::after {
  transform: translateY(-50%) rotate(90deg) !important;
  color: var(--brand) !important;
}

.faq-answer,
.rank-math-answer,
.rank-math-faq-item .rank-math-answer,
.faq-item .faq-answer {
  display: none;
  padding: 14px 16px !important;
  border-top: 1px solid var(--border) !important;
  color: #334155 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  text-align: justify !important;
  background-color: #f8fafc !important;
  margin: 0 !important;
}

.faq-answer p,
.rank-math-answer p {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: #334155 !important;
}

.faq-item.active .faq-answer,
.rank-math-faq-item.active .rank-math-answer,
.faq-answer.show-ans,
.rank-math-answer.show-ans {
  display: block !important;
}

/* ================================================================
   📰 SIDEBAR & WIDGET STYLING
   ================================================================ */

.sidebar-section .widget {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #ffffff;
  box-shadow: var(--card-shadow);
}

.sidebar-section .widget h3 {
  margin: 0;
  background: var(--title-bg);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  padding: 10px;
  border-bottom: 1px solid var(--border);
  color: var(--text-pri);
}

.sidebar-section .widget-content ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.sidebar-section .widget-content ul li {
  border-bottom: 1px solid var(--border);
}

.sidebar-section .widget-content ul li:last-child {
  border-bottom: 0;
}

.sidebar-section .widget-content ul li a {
  text-decoration: none;
  color: var(--text-pri);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  transition: all 0.2s ease;
}

.sidebar-section .widget-content ul li a::before {
  content: "\27A7";
  color: var(--brand);
  margin-right: 10px;
  font-size: 14px;
}

.sidebar-section .widget-content ul li a:hover {
  color: var(--brand);
  background: var(--title-bg);
}

/* ================================================================
   📣 COMMUNITY JOIN BOXES & INTERACTIVE ELEMENTS
   ================================================================ */

.group-join {
  text-align: center;
  margin: 10px 0;
  clear: both;
}

.join-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  margin-bottom: 6px;
  border-radius: 10px;
  font-weight: bold;
  border: 1px solid var(--border);
  background: #FFF;
}

.join-box span {
  display: flex;
  align-items: center;
  font-size: 15px;
}

.join-box.whatsapp {
  border: 1px solid #169C78;
}

.join-box.whatsapp a {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.join-box.telegram {
  border: 1px solid #0091D5;
}

.join-box.telegram a {
  background: linear-gradient(135deg, #00BFFF, #0088cc);
}

.join-box a {
  text-decoration: none;
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-weight: bold;
  font-size: 14px;
  animation: wobble 0.9s ease-in-out infinite;
}

@keyframes wobble {
  25% { transform: skewX(-5deg); }
  50% { transform: skewX(5deg); }
  75% { transform: skewX(-5deg); }
  100% { transform: skewX(0); }
}

/* Interactive Quiz Block */
.quiz-wrapper {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  margin: 15px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.quiz-question {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quiz-option-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 15px;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.quiz-option-btn:hover:not([disabled]) {
  background: #f1f5f9;
  border-color: var(--brand);
}

.quiz-option-btn.correct-answer {
  background: #dcfce7 !important;
  border-color: #22c55e !important;
  color: #15803d !important;
  font-weight: 700;
}

.quiz-option-btn.wrong-answer {
  background: #fee2e2 !important;
  border-color: #ef4444 !important;
  color: #b91c1c !important;
}

.quiz-option-label {
  font-weight: 700;
  margin-right: 10px;
  text-transform: uppercase;
}

/* Mobile Bottom Navigation Bar */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFF;
  width: 100%;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  height: 52px;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
}

.app-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: var(--width-content);
  width: 100%;
  height: 52px;
  margin: 0 auto;
}

.app-bar a {
  width: 100%;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: black;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  position: relative;
}

.app-bar a.active, .app-bar a:hover {
  background: var(--title-bg);
  border-radius: 10px 10px 0 0;
  padding-top: 2px;
  color: var(--brand);
  position: relative;
  font-weight: bold;
}

.app-bar a.active::before, .app-bar a:hover::before {
  position: absolute;
  content: '';
  width: 30%;
  height: 5px;
  background: linear-gradient(90deg, #25cb43, #45ec62);
  border-radius: 50px 50px 0 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Footer */
footer.sp-footer {
  background: #000;
  color: #FFF;
  text-align: center;
  margin-top: 14px;
  padding: 14px;
}

footer.sp-footer p {
  font-size: 13px;
  padding: 10px;
  margin: 0;
}

footer.sp-footer a {
  color: #ffffff;
  text-decoration: none;
}

footer.sp-footer a:hover {
  color: var(--brand);
}

.footer-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  list-style: none;
  margin-top: 5px;
  font-size: 13px;
}

/* ================================================================
   📱 RESPONSIVE MEDIA QUERIES
   ================================================================ */

@media (max-width: 768px) {
  body.sp-body {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }

  body.admin-bar.sp-body {
    padding-top: 101px !important;
  }

  /* Header Logo & Layout */
  header.sp-header {
    height: 50px !important;
  }

  .header-container {
    height: 50px !important;
    padding: 0 10px !important;
  }

  .header-logo a {
    font-size: 18px !important;
  }

  /* Top Category Navbar Links on Mobile */
  .navbar {
    justify-content: flex-start !important;
    margin: 0 0 8px 0 !important;
  }

  .nav-list {
    padding: 0 15px !important;
  }

  .nav-link {
    font-size: 14px !important;
    padding: 6px 10px !important;
  }

  /* Containers & Post Area */
  .container {
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .content-area,
  .content-area.post-page {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0 8px !important;
  }

  .sidebar-news {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0 8px !important;
    margin-top: 15px !important;
  }

  /* Breadcrumbs Navigation */
  .breadcrumb {
    font-size: 13px !important;
    margin: 6px 0 8px 0 !important;
    line-height: 1.4 !important;
  }

  /* Single Post Title */
  .single-post h1.post-title {
    font-size: 17px !important;
    line-height: 1.5 !important;
    margin: 10px 8px 6px 8px !important;
  }

  /* Meta Wrapper Badge */
  .meta-wrapper {
    margin: 8px 0 12px 0 !important;
  }

  .meta-wrapper .post-meta {
    font-size: 11px !important;
    padding: 4px 10px !important;
  }

  .meta-wrapper .post-meta svg {
    width: 12px !important;
    height: 12px !important;
  }

  /* Headings (H1, H2, H3, H4) */
  .post-body h2:not(.faq-question):not(.rank-math-question),
  .post-body h3:not(.faq-question):not(.rank-math-question),
  .post-body h4:not(.faq-question):not(.rank-math-question),
  .home-content h1,
  .home-content h2,
  .home-content h3 {
    font-size: 16px !important;
    padding: 8px 10px !important;
    margin-top: 12px !important;
    margin-bottom: 8px !important;
  }

  /* Paragraphs & Text Body */
  .post-body p,
  .home-content p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    padding-left: 4px !important;
    padding-right: 4px !important;
    margin-bottom: 10px !important;
  }

  /* Bullet Lists */
  .post-body ul {
    margin: 0 8px 10px 8px !important;
  }

  .post-body ul li {
    font-size: 15px !important;
    line-height: 1.6 !important;
    padding-left: 18px !important;
    margin-bottom: 4px !important;
  }

  .post-body ul li::before {
    font-size: 12px !important;
  }

  /* Data Tables on Mobile */
  .news-table,
  .wp-block-table table,
  .post-body table,
  .home-content .news-table,
  .home-content table {
    width: 100% !important;
    margin: 8px auto !important;
    font-size: 13px !important;
    border-radius: 8px !important;
  }

  .news-table td,
  .news-table th,
  .wp-block-table td,
  .wp-block-table th,
  .post-body table td,
  .post-body table th {
    padding: 7px 6px !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
  }

  /* Social Join Banners */
  .join-box {
    padding: 6px 10px !important;
  }

  .join-box span {
    font-size: 13px !important;
  }

  .join-box a {
    font-size: 12px !important;
    padding: 4px 12px !important;
  }

  /* Homepage Grid */
  .home-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
    min-height: auto !important;
  }

  .home-column {
    min-height: 420px !important;
    margin-bottom: 5px !important;
  }

  .column-title {
    font-size: 15px !important;
    padding: 8px !important;
  }

  .home-column .list-link {
    font-size: 13px !important;
    padding: 8px 8px 8px 12px !important;
    line-height: 1.5 !important;
  }

  .view-all-btn {
    font-size: 14px !important;
    padding: 8px !important;
  }

  /* FAQ Accordion on Mobile */
  .faq-title,
  .rank-math-faq-title,
  h2.faq-title {
    font-size: 16px !important;
    padding: 8px !important;
    width: 100% !important;
  }

  .faq-container,
  .wp-block-rank-math-faq-block {
    width: 100% !important;
  }

  .faq-question,
  .rank-math-question {
    font-size: 14px !important;
    padding: 10px 30px 10px 12px !important;
  }

  .faq-answer,
  .rank-math-answer {
    font-size: 13.5px !important;
    padding: 10px 12px !important;
  }

  .bottom-nav {
    display: block !important;
  }

  /* Mobile Label Header & Post Card List (Sarkariprep Style) */
  .label-header,
  .page-box .label-header,
  .post-body h1:first-child,
  .home-content h1:first-child {
    border: 1px solid var(--border) !important;
    border-radius: 10px 10px 0 0 !important;
    overflow: hidden !important;
    margin: 8px 0 0 0 !important;
    background: var(--title-bg) !important;
  }

  .label-header h1,
  .page-box .label-header h1,
  .post-body h1:first-child,
  .home-content h1:first-child {
    font-size: 16px !important;
    padding: 8px 10px !important;
    text-align: center !important;
    margin: 0 !important;
    font-weight: 700 !important;
  }

  .label-posts-wrapper,
  .sarkari-result-list {
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .post-card,
  .sarkari-result-list li.sarkari-item,
  .sarkari-result-list li.post-card {
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    padding: 10px 12px !important;
    background: #ffffff !important;
    border: 1px solid var(--border) !important;
    border-top: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .main-wrapper > main > .sarkari-result-list:first-child li:first-child,
  .main-wrapper > main > .label-posts-wrapper:first-child .post-card:first-child {
    border-top: 1px solid var(--border) !important;
    border-radius: 10px 10px 0 0 !important;
  }

  .post-card:last-child,
  .sarkari-result-list li:last-child {
    border-radius: 0 0 10px 10px !important;
  }

  .post-card svg,
  .sarkari-result-list svg {
    width: 13px !important;
    height: 13px !important;
    fill: #0f172a !important;
    flex-shrink: 0 !important;
    margin-top: 3px !important;
  }

  .post-card h2,
  .sarkari-result-list h2 {
    margin: 0 !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
  }

  .post-card a,
  .sarkari-result-list .sarkari-content a {
    font-size: 14.5px !important;
    color: #0f172a !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    line-height: 1.5 !important;
  }
}

/* ================================================================
   📌 SINGLE POST META ROW (LEFT META PILL + RIGHT GOOGLE BUTTON)
   ================================================================ */

.meta-row-wrapper {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  margin: 15px 0 20px 0 !important;
  gap: 8px !important;
  flex-wrap: nowrap !important; /* Force single line on all screen sizes */
}

/* Left Meta Pill (Author & Date) */
.meta-row-wrapper .post-meta {
  display: inline-flex !important;
  align-items: center !important;
  height: 40px !important;
  min-height: 40px !important;
  padding: 0 14px !important;
  border: 1px solid #d6dbea !important;
  border-radius: 8px !important;
  background: #f8fafc !important;
  font-size: 13px !important;
  color: #334155 !important;
  font-weight: 600 !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  white-space: nowrap !important;
}

.meta-row-wrapper .post-meta a {
  color: #0A66C2 !important;
  text-decoration: none !important;
  font-weight: 700 !important;
}

.meta-row-wrapper .post-meta svg {
  vertical-align: middle !important;
  flex-shrink: 0 !important;
}

/* Right Google Preferred Source Button Container */
.google-follow-container,
.meta-row-wrapper .google-follow-container {
  width: auto !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
}

/* Right Google Button Pill */
.gb-element-7da2d46c {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 40px !important;
  min-height: 40px !important;
  column-gap: 8px !important;
  border: 1px solid #d6dbea !important;
  border-radius: 8px !important;
  padding: 0 12px !important;
  background: #ffffff !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  transition: all 0.25s ease !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
}

.gb-element-7da2d46c:hover {
  border-color: #4285f4 !important;
  box-shadow: 0 3px 10px rgba(66, 133, 244, 0.15) !important;
  transform: translateY(-1px) !important;
}

/* Google G Logo SVG Centering */
.gb-shape-80ff1d53 {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  height: 22px !important;
  width: 22px !important;
}

.gb-shape-80ff1d53 svg {
  height: 22px !important;
  width: 22px !important;
  display: block !important;
}

/* Text Container inside Google Button */
.gb-element-7da2d46c > div {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  text-align: left !important;
}

.gb-text-180e5f5d,
.gb-text-0eb05d64 {
  color: #1e293b !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
  margin: 0 !important;
  white-space: nowrap !important;
}

/* Mobile Responsiveness (Guaranteed Single Row fit) */
@media (max-width: 767px) {
  .meta-row-wrapper {
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    gap: 4px !important;
  }

  .meta-row-wrapper .post-meta {
    height: 36px !important;
    min-height: 36px !important;
    padding: 0 6px !important;
    font-size: 10.5px !important;
    white-space: nowrap !important;
    flex-shrink: 1 !important;
  }

  .meta-row-wrapper .post-meta svg {
    width: 12px !important;
    height: 12px !important;
    margin-right: 2px !important;
  }

  .google-follow-container,
  .meta-row-wrapper .google-follow-container {
    flex-shrink: 0 !important;
  }

  .gb-element-7da2d46c {
    height: 36px !important;
    min-height: 36px !important;
    padding: 0 6px !important;
    column-gap: 5px !important;
    flex-shrink: 0 !important;
  }

  .gb-shape-80ff1d53,
  .gb-shape-80ff1d53 svg {
    height: 18px !important;
    width: 18px !important;
  }

  .gb-text-180e5f5d,
  .gb-text-0eb05d64 {
    font-size: 9.5px !important;
    line-height: 1.15 !important;
  }
}

@media (max-width: 370px) {
  .meta-row-wrapper .post-meta {
    font-size: 9.5px !important;
    padding: 0 4px !important;
  }
  .gb-element-7da2d46c {
    padding: 0 4px !important;
  }
  .gb-text-180e5f5d,
  .gb-text-0eb05d64 {
    font-size: 9px !important;
  }
}

/* ================================================================
   🧱 GENERATEPRESS FOOTER & GENERATEBLOCKS ELEMENTS PERFECT DESIGN
   ================================================================ */

:root {
  --gb-container-width: 1100px;
  --base-3: #f8fafc;
  --base-2: #e2e8f0;
  --base-1: #94a3b8;
  --contrast: #0f172a;
  --contrast-2: #1e293b;
  --global-color-10: #1d4ed8;
}

/* Site Footer Base Container */
.site-footer,
.rojgarpdf-footer,
footer.site-footer,
footer.rojgarpdf-footer,
footer[class*="footer"],
div[class*="site-footer"],
div[class*="rojgarpdf-footer"] {
  background-color: #0b1120 !important;
  background: #0b1120 !important;
  color: #f8fafc !important;
  margin-top: 40px;
  padding: 50px 0 80px 0 !important;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
  box-shadow: none !important;
  border: none !important;
}

.site-footer > div,
.rojgarpdf-footer > div,
.site-footer .site-info,
footer.site-footer .site-info {
  background-color: #0b1120 !important;
  background: #0b1120 !important;
}

.site-footer .gb-container,
.site-footer div[class*="gb-element-"],
.rojgarpdf-footer .gb-container,
.rojgarpdf-footer div[class*="gb-element-"] {
  box-sizing: border-box;
}

/* Footer Container Alignment */
.site-footer .gb-element-7152f11d,
.site-footer > div:first-child,
.rojgarpdf-footer .gb-element-7152f11d,
.rojgarpdf-footer > div:first-child {
  max-width: var(--width-content, 1100px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Footer Logo Size Fix */
.site-footer img,
.site-footer .gb-media-a2d50396,
.site-footer img.gb-media-a2d50396,
.rojgarpdf-footer img,
.rojgarpdf-footer .gb-media-a2d50396,
.rojgarpdf-footer img.gb-media-a2d50396 {
  width: 90px !important;
  max-width: 90px !important;
  height: auto !important;
  display: block !important;
  margin-bottom: 14px !important;
  object-fit: contain !important;
}

/* Footer Main 3-Column Grid */
.site-footer .gb-element-c095f9bf,
.rojgarpdf-footer .gb-element-c095f9bf {
  display: grid !important;
  grid-template-columns: 3.8fr 4.2fr 3fr !important;
  column-gap: 35px !important;
  row-gap: 30px !important;
  align-items: start !important;
  padding-bottom: 35px !important;
  padding-top: 10px !important;
  border-bottom: 1px solid #1e293b !important;
}

/* Column 2 Sub-Grid (Categories & Quick Links) */
.site-footer .gb-element-bbd5e43e,
.rojgarpdf-footer .gb-element-bbd5e43e {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  column-gap: 25px !important;
  row-gap: 20px !important;
}

.site-footer .gb-element-47b6536e,
.site-footer .gb-element-141a4b2a,
.rojgarpdf-footer .gb-element-47b6536e,
.rojgarpdf-footer .gb-element-141a4b2a {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

/* Footer Section Headings */
.site-footer h2,
.site-footer h3,
.site-footer .gb-text h2,
.site-footer .gb-text h3,
.site-footer .gb-text-11252f86,
.site-footer .gb-text-cb3a821c,
.site-footer .gb-text-ba35a167,
.rojgarpdf-footer h2,
.rojgarpdf-footer h3,
.rojgarpdf-footer .gb-text h2,
.rojgarpdf-footer .gb-text h3,
.rojgarpdf-footer .gb-text-11252f86,
.rojgarpdf-footer .gb-text-cb3a821c,
.rojgarpdf-footer .gb-text-ba35a167 {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  margin-bottom: 14px !important;
  letter-spacing: 0.2px !important;
}

/* Text Paragraphs inside Footer */
.site-footer p,
.site-footer .gb-text,
.site-footer .gb-text-85de0e01,
.rojgarpdf-footer p,
.rojgarpdf-footer .gb-text,
.rojgarpdf-footer .gb-text-85de0e01 {
  color: #94a3b8 !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

/* List Items in Categories & Quick Links */
.site-footer .gb-element-47b6536e p,
.site-footer .gb-element-141a4b2a p,
.rojgarpdf-footer .gb-element-47b6536e p,
.rojgarpdf-footer .gb-element-141a4b2a p {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 8px !important;
  font-size: 13.5px !important;
  color: #cbd5e1 !important;
}

/* Icons & Arrow Shapes inside Footer List Items */
.site-footer .gb-shape,
.rojgarpdf-footer .gb-shape {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #25cb43 !important;
  font-size: 13px !important;
  flex-shrink: 0 !important;
  width: 14px !important;
  height: 14px !important;
}

.site-footer .gb-shape svg,
.rojgarpdf-footer .gb-shape svg {
  width: 12px !important;
  height: 12px !important;
  fill: #25cb43 !important;
}

/* Links inside Footer */
.site-footer a,
.site-footer .gb-text a,
.rojgarpdf-footer a,
.rojgarpdf-footer .gb-text a {
  color: #cbd5e1 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.site-footer a:hover,
.site-footer .gb-text a:hover,
.rojgarpdf-footer a:hover,
.rojgarpdf-footer .gb-text a:hover {
  color: #25cb43 !important;
}

/* Social Box - All 5 Buttons in ONE Horizontal Line */
.site-footer .gb-element-971ade36,
.rojgarpdf-footer .gb-element-971ade36 {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  padding: 12px !important;
  border: 1px solid #1e293b !important;
  background: #0f172a !important;
  border-radius: 12px !important;
  margin-top: 10px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Individual Social Icon Pill Buttons */
.site-footer .gb-element-971ade36 a,
.rojgarpdf-footer .gb-element-971ade36 a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  flex: 0 0 36px !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, opacity 0.2s ease !important;
}

.site-footer a.gb-text-d6612623, .rojgarpdf-footer a.gb-text-d6612623 { background-color: #1877f2 !important; } /* Facebook */
.site-footer a.gb-text-14d6260c, .rojgarpdf-footer a.gb-text-14d6260c { background-color: #25d366 !important; } /* WhatsApp */
.site-footer a.gb-text-76979657, .rojgarpdf-footer a.gb-text-76979657 { background-color: #0088cc !important; } /* Telegram */
.site-footer a.gb-text-18df7721, .rojgarpdf-footer a.gb-text-18df7721 { background-color: #ff0000 !important; } /* YouTube */
.site-footer a.gb-text-55408715, .rojgarpdf-footer a.gb-text-55408715 { background-color: #1e293b !important; border: 1px solid #334155 !important; } /* X / Twitter */

.site-footer .gb-element-971ade36 a:hover,
.rojgarpdf-footer .gb-element-971ade36 a:hover {
  transform: translateY(-3px) scale(1.08) !important;
  opacity: 0.9 !important;
}

.site-footer .gb-element-971ade36 a .gb-shape,
.rojgarpdf-footer .gb-element-971ade36 a .gb-shape {
  width: 18px !important;
  height: 18px !important;
  color: #ffffff !important;
}

.site-footer .gb-element-971ade36 a .gb-shape svg,
.rojgarpdf-footer .gb-element-971ade36 a .gb-shape svg {
  width: 18px !important;
  height: 18px !important;
  fill: #ffffff !important;
}

/* Responsive Footer Layout for Mobile */
@media (max-width: 767px) {
  .site-footer,
  .rojgarpdf-footer,
  footer.sp-footer,
  footer.rojgarpdf-footer {
    padding-bottom: 95px !important;
  }

  .site-footer .gb-element-c095f9bf,
  .rojgarpdf-footer .gb-element-c095f9bf {
    grid-template-columns: 1fr !important;
    row-gap: 30px !important;
  }

  .site-footer .gb-element-bbd5e43e,
  .rojgarpdf-footer .gb-element-bbd5e43e {
    grid-template-columns: 1fr 1fr !important;
  }

  .site-footer .gb-element-971ade36,
  .rojgarpdf-footer .gb-element-971ade36 {
    justify-content: center !important;
    gap: 10px !important;
  }
}

/* ================================================================
   🚀 FLOATING PILL MOBILE BOTTOM NAVIGATION BAR (FIXED)
   ================================================================ */

.mobile-floating-bottom-nav {
  display: none;
}

@media (max-width: 767px) {
  .site-footer,
  .rojgarpdf-footer,
  footer.site-footer,
  footer.rojgarpdf-footer {
    padding-bottom: 90px !important;
  }

  .mobile-floating-bottom-nav {
    display: block !important;
    position: fixed !important;
    bottom: 12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 92% !important;
    max-width: 440px !important;
    z-index: 999999 !important;
    box-sizing: border-box !important;
  }

  .floating-nav-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-around !important;
    background: #ffffff !important;
    border-radius: 40px !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.12) !important;
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
    padding: 6px 8px !important;
    position: relative !important;
    height: 56px !important;
    box-sizing: border-box !important;
  }

  .floating-nav-container .nav-btn {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    flex: 1 !important;
    color: #475569 !important;
    transition: transform 0.2s ease, color 0.2s ease !important;
    position: relative !important;
  }

  .floating-nav-container .nav-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 2px !important;
  }

  .floating-nav-container .nav-text {
    font-size: 10.5px !important;
    font-weight: 700 !important;
    color: #334155 !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

  /* Center Elevated Floating Google Circle Button */
  .floating-nav-container .center-google-btn {
    flex: 0 0 54px !important;
    width: 54px !important;
    height: 54px !important;
    margin-top: -24px !important; /* Floats above bar top */
    overflow: visible !important;
  }

  .google-circle-outer {
    width: 54px !important;
    height: 54px !important;
    background: #fff7ed !important; /* Soft cream ring */
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16) !important;
    border: 3px solid #ffffff !important;
    transition: transform 0.25s ease !important;
  }

  .google-circle-inner {
    width: 40px !important;
    height: 40px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .google-circle-outer:hover,
  .center-google-btn:active .google-circle-outer {
    transform: scale(1.08) !important;
  }
}
