    :root {
      --red: #c0000a;
      --red-dark: #8a0006;
      --red-light: #ffe5e6;
      --black: #111;
      --dark: #222;
      --text: #1a1a1a;
      --muted: #666;
      --light: #f6f7f8;
      --white: #fff;
      --border: #e0e0e0;
      --gold: #e8a000;
      --font: 'Noto Sans Devanagari', sans-serif;
      --serif: 'Noto Serif Devanagari', Georgia, serif;
    }

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

    body {
      font-family: var(--font);
      background: var(--light);
      color: var(--text);
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
      object-fit: cover;
    }

    ul {
      list-style: none;
    }

    .pt-60 {
      padding: 60px 0;
    }

    .he-subscribe {
      display: flex;
      align-items: center;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 6px 6px 6px 16px;
      gap: 8px;
      max-width: 460px;
      margin-top: 10px;
    }

    .he-subscribe i {
      font-size: 18px;
      color: var(--muted);
      flex-shrink: 0;
    }

    .he-subscribe input {
      border: none;
      outline: none;
      background: transparent;
      font-size: 14px;
      color: var(--text);
      font-family: var(--font);
      flex: 1;
      min-width: 0;
    }

    .he-subscribe input::placeholder {
      color: var(--muted);
    }

    .he-subscribe button {
      background: var(--red);
      color: var(--white);
      border: none;
      border-radius: 999px;
      padding: 8px 14px;
      font-size: 14px;
      font-family: var(--font);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
    }

    .he-subscribe button:hover {
      background: var(--red-dark);
    }

    /* ============================
       AD STRIP
    ============================ */
    .ad-strip {
      background: #f0f0f0;
      border-bottom: 1px solid var(--border);
      text-align: center;
      padding: 6px 0;
    }

    .ad-placeholder {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(90deg, #ececec, #e0e0e0);
      border: 1px dashed #ccc;
      font-size: 12px;
      color: #aaa;
      max-width: 100%;
    }

    .ad-728 {
      width: 728px;
      height: 60px;
    }

    .ad-300 {
      width: 100%;
      height: 450px;
      flex-direction: column;
      gap: 4px;
    }

    .ad-label {
      font-size: 10px;
      color: #aaa;
      text-align: center;
      padding: 3px;
    }

    /* ============================
       TOP BAR
    ============================ */
    .top-bar {
      background: var(--red);
      color: #fff;
      font-size: 12px;
      padding: 5px 16px;
    }

    .top-bar a {
      color: #ffd;
    }

    .top-bar a:hover {
      text-decoration: underline;
    }

    .lang-btn {
      background: rgba(255, 255, 255, .18);
      border: 1px solid rgba(255, 255, 255, .35);
      color: #fff;
      padding: 2px 10px;
      border-radius: 3px;
      font-size: 11px;
      cursor: pointer;
      font-family: var(--font);
      transition: background .15s;
    }

    .lang-btn:hover {
      background: rgba(255, 255, 255, .3);
    }

    /* ============================
       HEADER
    ============================ */
    .site-header {
      background: var(--white);
      border-bottom: 4px solid var(--red);
      padding: 8px 16px;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
    }

    .logo-img {
      height: 52px;
      width: auto;
    }

    .logo-fallback {
      font-family: var(--serif);
      font-size: 26px;
      font-weight: 900;
      color: var(--red);
      line-height: 1.1;
    }

    .logo-fallback span {
      display: block;
      font-size: 11px;
      color: var(--muted);
      font-weight: 400;
      font-family: var(--font);
    }

    .signin-btn {
      background: var(--red);
      color: #fff;
      border: none;
      padding: 7px 18px;
      border-radius: 4px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      font-family: var(--font);
      transition: background .15s;
    }

    .signin-btn:hover {
      background: var(--red-dark);
    }

    /* ============================
       MAIN NAV
    ============================ */
    .main-nav {
      background: var(--white);
      padding: 0 8px;
      position: relative;
      z-index: 999;
    }

    .main-nav .navbar-nav .nav-link {
      color: var(--black) !important;
      font-size: 16.5px;
      font-weight: 600;
      padding: 10px 12px !important;
      transition: color .15s;
      font-family: var(--font);
      border-bottom: 3px solid transparent;
      white-space: nowrap;
    }

    .main-nav .navbar-nav .nav-link:hover,
    .main-nav .navbar-nav .nav-link.active {
      color: var(--red) !important;
      border-bottom-color: var(--red);
    }

    .navbar-toggler {
      border-color: rgba(255, 255, 255, .3);
    }

    .navbar-toggler-icon {
      filter: invert(1);
    }

    /* ============================
       BREAKING TICKER
    ============================ */
    .breaking-bar {
      background: #1a1a1a;
      display: flex;
      align-items: center;
      overflow: hidden;
      height: 36px;
    }

    .breaking-label {
      background: var(--red);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 0 14px;
      white-space: nowrap;
      height: 100%;
      display: flex;
      align-items: center;
      gap: 5px;
      flex-shrink: 0;
    }

    .ticker-wrap {
      flex: 1;
      overflow: hidden;
      height: 100%;
    }

    .ticker-track {
      display: flex;
      gap: 40px;
      align-items: center;
      height: 100%;
      white-space: nowrap;
      animation: ticker-scroll 35s linear infinite;
    }

    @keyframes ticker-scroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .ticker-track:hover {
      animation-play-state: paused;
    }

    .ticker-item {
      color: #ddd;
      font-size: 13px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .ticker-dot {
      width: 6px;
      height: 6px;
      background: var(--red);
      border-radius: 50%;
      display: inline-block;
    }

    .ticker-time {
      color: #888;
      font-size: 11px;
      margin-left: 4px;
    }

    /* ============================
       HERO OWL CAROUSEL
    ============================ */
    .hero-section {
      position: relative;
      background: #000;
    }

    .hero-slide {
      position: relative;
    }

    .hero-slide img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      opacity: .88;
    }

    .hero-slide-body {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, .88) 60%);
      padding: 60px 28px 24px;
      color: #fff;
    }

    .hero-cat-badge {
      background: var(--red);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 3px;
      display: inline-block;
      margin-bottom: 10px;
      letter-spacing: .5px;
    }

    .hero-slide-body h2 {
      font-family: var(--serif);
      font-size: 1.6rem;
      font-weight: 700;
      line-height: 1.35;
      margin-bottom: 8px;
    }

    .hero-slide-body h2 a {
      color: #fff;
    }

    .hero-slide-body h2 a:hover {
      color: #ffcdd2;
    }

    .hero-desc {
      font-size: 14px;
      color: #ddd;
      line-height: 1.5;
      margin-bottom: 10px;
    }

    .hero-meta {
      font-size: 12px;
      color: #bbb;
    }

    .hero-meta strong {
      color: #fff;
    }

    /* Owl Carousel Custom Dots */
    .hero-section .owl-dots {
      position: absolute;
      bottom: 14px;
      right: 20px;
    }

    .hero-section .owl-dot span {
      width: 8px !important;
      height: 8px !important;
      background: rgba(255, 255, 255, .4) !important;
      border-radius: 50% !important;
      margin: 3px !important;
    }

    .hero-section .owl-dot.active span {
      background: var(--red) !important;
    }

    .hero-section .owl-nav {
      display: none !important;
    }

    /* ============================
       SECTION HEADER
    ============================ */
    .section-hd {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 2px solid var(--red);
      padding-bottom: 8px;
      margin-bottom: 16px;
    }

    .section-hd .title {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--red);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .section-hd .more-link {
      font-size: 12px;
      color: var(--red);
      font-weight: 600;
    }

    .section-hd .more-link:hover {
      text-decoration: underline;
    }

    /* ============================
       NEWS CARD (grid cards)
    ============================ */
    .news-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 6px;
      overflow: hidden;
      transition: box-shadow .2s;
      height: 100%;
    }

    .news-card:hover {
      box-shadow: 0 4px 18px rgba(0, 0, 0, .12);
    }

    .news-card img {
      width: 100%;
      height: 175px;
      object-fit: cover;
    }

    .news-card .card-body {
      padding: 12px 14px 14px;
    }

    .cat-badge {
      font-size: 10px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 2px;
      background: var(--red-light);
      color: var(--red);
      display: inline-block;
      margin-bottom: 7px;
      letter-spacing: .4px;
    }

    .news-card h5 {
      font-size: 14px;
      font-weight: 700;
      line-height: 1.45;
      font-family: var(--serif);
      margin-bottom: 7px;
    }

    .news-card h5 a {
      color: var(--text);
    }

    .news-card h5 a:hover {
      color: var(--red);
    }

    .card-time {
      font-size: 11px;
      color: var(--muted);
    }

    /* ============================
       SUPERFAST / SIDE LIST
    ============================ */
    .superfast-header {
      background: var(--dark);
      color: #fff;
      padding: 10px 14px;
      border-radius: 5px 5px 0 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .sf-icon {
      font-size: 18px;
      color: var(--gold);
    }

    .sf-title {
      font-weight: 700;
      font-size: 15px;
    }

    .sf-sub {
      font-size: 11px;
      color: #aaa;
    }

    .side-list-wrap {
      background: var(--white);
      border: 1px solid var(--border);
      border-top: none;
      border-radius: 0 0 5px 5px;
      overflow: hidden;
    }

    .side-item {
      display: flex;
      gap: 10px;
      padding: 10px 12px;
      border-bottom: 1px solid #f0f0f0;
      align-items: flex-start;
      transition: background .15s;
    }

    .side-item:last-child {
      border-bottom: none;
    }

    .side-item:hover {
      background: #fafafa;
    }

    .side-item img {
      width: 72px;
      height: 54px;
      object-fit: cover;
      border-radius: 4px;
      flex-shrink: 0;
    }

    .side-item-body .sn-title {
      font-size: 13px;
      font-weight: 600;
      line-height: 1.4;
      color: var(--text);
    }

    .side-item-body .sn-title:hover {
      color: var(--red);
    }

    .sn-time {
      font-size: 11px;
      color: var(--muted);
      margin-top: 4px;
    }

    .live-badge {
      background: #f00;
      color: #fff;
      font-size: 9px;
      font-weight: 700;
      padding: 1px 5px;
      border-radius: 2px;
      margin-right: 4px;
    }

    .see-more-btn {
      display: block;
      text-align: center;
      background: var(--red-light);
      padding: 8px;
      font-size: 13px;
      font-weight: 600;
      color: var(--red);
      border-top: 1px solid var(--border);
      margin-top: 6px;
    }

    .see-more-btn:hover {
      background: var(--light);
      border: 1px solid var(--red-dark);
    }

    /* ============================
       WEB STORIES (OWL)
    ============================ */
    .ws-section {
      background: var(--white);
      padding: 16px 0 20px;
      border: 1px solid var(--border);
      border-radius: 6px;
    }

    .ws-card {
      text-align: center;
      padding: 0 6px;
    }

    .ws-img-wrap {
      width: 90px;
      height: 130px;
      border-radius: 10px;
      overflow: hidden;
      margin: 0 auto 7px;
      border: 2px solid var(--border);
      position: relative;
    }

    .ws-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .ws-title {
      font-size: 11.5px;
      font-weight: 600;
      line-height: 1.35;
      color: var(--text);
    }

    /* ============================
       CATEGORY SECTIONS
    ============================ */
    .cat-section {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 16px;
      margin-bottom: 20px;
    }

    .cat-big-img img {
      width: 100%;
      height: 210px;
      object-fit: cover;
      border-radius: 5px;
    }

    .cat-big-body h4 {
      font-family: var(--serif);
      font-size: 15px;
      font-weight: 700;
      line-height: 1.4;
      margin: 10px 0 8px;
    }

    .cat-big-body h4 a {
      color: var(--text);
    }

    .cat-big-body h4 a:hover {
      color: var(--red);
    }

    #latestCarousel .owl-nav,
    #wsCarousel .owl-nav {
      display: flex !important;
      justify-content: left !important;
      margin-top: 30px;
      gap: 10px;
      margin-left: 10px;
    }

    .cat-side-list li {
      display: flex;
      gap: 8px;
      padding: 13px 0;
      border-bottom: 1px solid #f2f2f2;
      align-items: flex-start;
      align-items: center;
    }

    .cat-side-list li:last-child {
      border-bottom: none;
    }

    .cat-side-list li img {
      width: 68px;
      height: 52px;
      fv object-fit: cover;
      border-radius: 4px;
      flex-shrink: 0;
    }

    .cat-side-list .cs-title {
      font-size: 13px;
      font-weight: 600;
      line-height: 1.4;
      color: var(--text);
    }

    .cat-side-list .cs-title:hover {
      color: var(--red);
    }

    /* ============================
       RASHIFAL
    ============================ */
    .rashi-box {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 6px;
      overflow: hidden;
      margin: 30px 0;
    }

    .rashi-header {
      background: linear-gradient(135deg, #6a1b9a, #9c27b0);
      color: #fff;
      padding: 10px 14px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .rashi-header .title {
      font-weight: 700;
      font-size: 14px;
    }

    .rashi-date {
      font-size: 11px;
      opacity: .8;
    }

    .rashi-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border);
    }

    .rashi-item {
      background: #fff;
      padding: 10px 4px;
      text-align: center;
      cursor: pointer;
      transition: background .15s;
    }

    .rashi-item:hover {
      background: #f9f0ff;
    }

    .rashi-sym {
      font-size: 20px;
      margin-bottom: 3px;
    }

    .rashi-name {
      font-size: 11px;
      font-weight: 600;
      color: var(--text);
    }

    /* ============================
       VIDEO BOX
    ============================ */
    .video-box {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 6px;
      overflow: hidden;
    }

    .video-tabs {
      display: flex;
      border-bottom: 1px solid var(--border);
    }

    .video-tab {
      flex: 1;
      padding: 8px 4px;
      font-size: 13px;
      font-weight: 600;
      text-align: center;
      border: none;
      background: none;
      cursor: pointer;
      font-family: var(--font);
      color: var(--muted);
      border-bottom: 3px solid transparent;
      transition: all .15s;
    }

    .video-tab.active {
      color: var(--red);
      border-bottom-color: var(--red);
    }

    .video-thumb {
      position: relative;
    }

    .video-thumb img {
      width: 100%;
      height: 170px;
      object-fit: cover;
    }

    .play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 48px;
      height: 48px;
      background: rgba(255, 255, 255, .9);
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .play-btn::after {
      content: '';
      border-left: 18px solid var(--red);
      border-top: 11px solid transparent;
      border-bottom: 11px solid transparent;
      margin-left: 4px;
    }

    .video-caption {
      font-size: 13px;
      font-weight: 600;
      padding: 10px 12px;
      color: var(--text);
      line-height: 1.4;
    }

    /* ============================
       LATEST ARTICLES (OWL)
    ============================ */
    .la-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 6px;
      overflow: hidden;
      margin: 0 8px;
      height: 100%;
    }

    .la-card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
    }

    .la-card .la-body {
      padding: 12px 14px;
    }

    .la-card h5 {
      font-family: var(--serif);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.4;
      margin: 7px 0 6px;
    }

    .la-card h5 a {
      color: var(--text);
    }

    .la-card h5 a:hover {
      color: var(--red);
    }

    .la-card p {
      font-size: 12.5px;
      color: var(--muted);
      line-height: 1.5;
    }

    .la-meta {
      font-size: 11px;
      color: var(--muted);
      margin-top: 7px;
    }

    /* Owl carousel nav arrows shared */
    .owl-prev,
    .owl-next {
      background: var(--red) !important;
      color: #fff !important;
      border-radius: 50% !important;
      width: 30px !important;
      height: 30px !important;
      line-height: 30px !important;
      text-align: center;
      font-size: 16px !important;
    }

    .ad-box {
      padding: 8px 0;
    }

    /* ============================
       TRENDING
    ============================ */
    .trend-wrap {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 16px;
    }

    .trend-card {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid #f2f2f2;
      color: var(--text);
    }

    .trend-card:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .trend-card:hover h6 {
      color: var(--red);
    }

    .trend-num {
      font-size: 22px;
      font-weight: 900;
      color: #e0e0e0;
      line-height: 1;
      min-width: 32px;
    }

    .trend-card h6 {
      font-size: 13.5px;
      font-weight: 700;
      margin: 0;
      line-height: 1.4;
      transition: color .15s;
    }

    .trend-cat-badge {
      font-size: 10px;
      color: var(--red);
      font-weight: 600;
      margin-bottom: 3px;
      display: block;
    }

    /* ============================
       PHOTO GRID
    ============================ */
    .photo-tile {
      position: relative;
      display: block;
      overflow: hidden;
      border-radius: 6px;
    }

    .photo-tile img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      transition: transform .3s;
    }

    .photo-tile:hover img {
      transform: scale(1.05);
    }

    .photo-cap {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, .75));
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      padding: 20px 10px 8px;
    }

    .photo-tile-big img {
      height: 310px;
    }

    /* ============================
       SIDEBAR
    ============================ */
    .sb-block {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 6px;
      margin-bottom: 20px;
      overflow: hidden;
    }

    .sb-title {
      background: var(--dark);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      padding: 9px 14px;
      margin: 0;
    }

    .sb-top-list {
      padding: 8px 0;
    }

    .sb-top-list li {
      padding: 8px 14px;
      border-bottom: 1px solid #f0f0f0;
      display: flex;
      gap: 8px;
      align-items: flex-start;
      counter-increment: toplist;
    }

    .sb-top-list li:last-child {
      border-bottom: none;
    }

    .sb-top-list li::before {
      content: counter(toplist);
      min-width: 20px;
      height: 20px;
      background: var(--red);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .sb-top-list {
      counter-reset: toplist;
    }

    .sb-top-list a {
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      line-height: 1.4;
    }

    .sb-top-list a:hover {
      color: var(--red);
    }

    .sb-cat-list li a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 14px;
      border-bottom: 1px solid #f0f0f0;
      font-size: 13.5px;
      font-weight: 600;
      color: var(--text);
      transition: background .15s;
    }

    .sb-cat-list li:last-child a {
      border-bottom: none;
    }

    .sb-cat-list li a:hover {
      background: #fafafa;
      color: var(--red);
    }

    .sb-cat-ico {
      width: 28px;
      height: 28px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
    }

    .sb-arrow {
      margin-left: auto;
      color: var(--muted);
    }

    .sb-photo-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      padding: 12px;
    }

    .sb-photo-grid a {
      display: block;
      border-radius: 4px;
      overflow: hidden;
      position: relative;
    }

    .sb-photo-grid img {
      width: 100%;
      height: 80px;
      object-fit: cover;
    }

    .sb-photo-grid span {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, .65);
      color: #fff;
      font-size: 10px;
      padding: 4px 6px;
    }

    .newsletter-form {
      padding: 12px 14px;
    }

    .newsletter-form p {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 10px;
    }

    .newsletter-form input {
      width: 100%;
      padding: 8px 12px;
      border: 1px solid var(--border);
      border-radius: 4px;
      font-size: 13px;
      font-family: var(--font);
      margin-bottom: 8px;
    }

    .newsletter-form button {
      width: 100%;
      background: var(--red);
      color: #fff;
      border: none;
      padding: 9px;
      border-radius: 4px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      font-family: var(--font);
      transition: background .15s;
    }

    .newsletter-form button:hover {
      background: var(--red-dark);
    }

    /* ============================
       FOOTER (Aaj Tak style)
    ============================ */
    .site-footer {
      background: #1f1f1f;
      color: #cfcfcf;
      margin-top: 40px;
      border-top: 3px solid #c9a24a;
      font-size: 14px;
    }

    .footer-inner {
      max-width: 1300px;
      margin: auto;
      padding: 28px 20px 20px;
    }

    /* Top horizontal link row */
    .footer-top-links {
      list-style: none;
      padding: 0;
      margin: 0 0 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px 28px;
      border-bottom: 1px solid #333;
      padding-bottom: 18px;
    }

    .footer-top-links a {
      color: #e8e8e8;
      font-size: 14px;
      font-weight: 500;
    }

    .footer-top-links a:hover {
      color: var(--red, #e53935);
    }

    /* Category columns */
    .footer-cats {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 30px 24px;
      padding-bottom: 24px;
      border-bottom: 1px solid #333;
    }

    .fcat h6 {
      color: var(--red);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .5px;
      margin: 0 0 10px;
      text-transform: uppercase;
    }

    .fcat a {
      display: block;
      color: #e0e0e0;
      font-size: 14px;
      padding: 4px 0;
    }

    .fcat a:hover {
      color: var(--red, #e53935);
    }

    .fcat-grid {
      display: grid;
      /* grid-template-columns: 1fr 1fr; */
      column-gap: 18px;
    }

    /* Trending / Latest chip rows */
    .footer-tagrow {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 0;
      border-bottom: 1px solid #2b2b2b;
    }

    .ft-label {
      color: #fff;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: .5px;
      min-width: 90px;
    }

    .ft-arrow {
      background: transparent;
      border: 0;
      color: #888;
      font-size: 18px;
      padding: 2px 6px;
      cursor: pointer;
    }

    .ft-arrow:hover {
      color: #fff;
    }

    .ft-chips {
      flex: 1;
      display: flex;
      gap: 10px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .ft-chips::-webkit-scrollbar {
      display: none;
    }

    .ft-chips a {
      flex: 0 0 auto;
      background: #2a2a2a;
      border: 1px solid #3a3a3a;
      color: #e8e8e8;
      padding: 8px 16px;
      border-radius: 999px;
      font-size: 13px;
      white-space: nowrap;
      transition: background .15s, color .15s;
    }

    .ft-chips a:hover {
      background: var(--red, #e53935);
      color: #fff;
      border-color: var(--red, #e53935);
    }

    /* Bottom brand / download / social row */
    .footer-bottom-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      align-items: center;
      justify-content: space-between;
      padding: 22px 0;
      border-bottom: 1px solid #2b2b2b;
    }

    .fb-brands {
      display: flex;
      gap: 22px;
      flex-wrap: wrap;
    }

    .fb-brands a {
      color: #ddd;
      font-weight: 700;
      letter-spacing: .5px;
      font-size: 14px;
    }

    .fb-brands a:hover {
      color: var(--red, #e53935);
    }

    .fb-download,
    .fb-social {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .fb-download>span,
    .fb-social>span {
      color: #9a9a9a;
      font-size: 12px;
      letter-spacing: 1px;
      font-weight: 600;
    }

    .store-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #000;
      color: #fff;
      padding: 7px 14px;
      border-radius: 6px;
      font-size: 12px;
      border: 1px solid #333;
    }

    .store-btn:hover {
      background: #111;
      color: #fff;
    }

    .soc {
      width: 34px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #fff;
      font-size: 16px;
      transition: transform .15s;
    }

    .soc:hover {
      transform: translateY(-2px);
      color: #fff;
    }

    .soc-wa {
      background: #25D366;
    }

    .soc-fb {
      background: #1877F2;
    }

    .soc-x {
      background: #000;
      border: 1px solid #444;
    }

    .soc-rss {
      background: #f26522;
    }

    .soc-yt {
      background: #FF0000;
    }

    .footer-copy {
      text-align: center;
      padding: 0px 0 4px;
      color: #9a9a9a;
      font-size: 13px;
    }

    @media (max-width: 992px) {
      .footer-cats {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 576px) {
      .footer-cats {
        grid-template-columns: 1fr;
      }

      .ft-label {
        min-width: auto;
      }

      .footer-top-links {
        gap: 6px 16px;
      }
    }


    /* ============================
       UTILITIES / RESPONSIVE
    ============================ */
    .img-placeholder {
      background: linear-gradient(135deg, #e8e8e8, #d5d5d5);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #bbb;
      font-size: 12px;
    }

    @media (max-width: 991px) {
      .hero-slide img {
        height: 340px;
      }

      .hero-slide-body h2 {
        font-size: 1.25rem;
      }
    }

    @media (max-width: 767px) {
      .hero-slide img {
        height: 260px;
      }

      .hero-slide-body {
        padding: 40px 14px 16px;
      }

      .hero-slide-body h2 {
        font-size: 1.1rem;
      }

      #latestCarousel .owl-nav,
      #wsCarousel .owl-nav {
        display: flex !important;
        justify-content: center !important;
        margin-top: 10px;
        gap: 10px;
        margin-left: unset;
      }

      .cat-side-list {
        padding-left: 0;
      }

      .ad-728 {
        width: 100%;
        height: 50px;
      }
    }

    /* ============================
   ARTICLE DETAILS PAGE
============================ */
    .article-wrap {
      max-width: 1300px;
      margin: auto;
      padding: 18px 16px;
    }

    .article-breadcrumb {
      font-size: 13px;
      color: #666;
      margin-bottom: 10px;
    }

    .article-breadcrumb a {
      color: #1a73e8;
    }

    .article-breadcrumb .sep {
      margin: 0 6px;
      color: #999;
    }

    .article-tag {
      background: #fff3cd;
      color: #b35900;
      padding: 2px 8px;
      border-radius: 3px;
      font-size: 12px;
      font-weight: 600;
      margin-left: 4px;
    }

    .article-title {
      font-size: 30px;
      font-weight: 800;
      line-height: 1.35;
      color: #111;
      margin: 8px 0 14px;
    }

    .article-summary {
      font-size: 16px;
      color: #333;
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .article-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
      margin-bottom: 14px;
    }

    .article-actions .btn-pill {
      border: 1px solid #ddd;
      background: #fff;
      color: #333;
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 13px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .article-actions .btn-pill.red {
      color: #e53935;
      border-color: #f1b1b0;
    }

    .article-ad {
      background: #f4f4f4;
      border: 1px solid #e5e5e5;
      text-align: center;
      padding: 14px;
      margin: 18px 0;
      color: #888;
      font-size: 12px;
    }

    .article-hero {
      position: relative;
      border-radius: 6px;
      overflow: hidden;
      background: #000;
      margin-bottom: 10px;
    }

    .article-hero img {
      width: 100%;
      display: block;
    }

    .article-hero .play-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, .25);
      color: #fff;
      font-size: 54px;
      cursor: pointer;
    }

    .article-hero-caption {
      font-size: 12px;
      color: #666;
      padding: 6px 4px 14px;
    }

    .share-row {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 10px 0;
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }

    .share-row a,
    .share-row button {
      color: #555;
      background: transparent;
      border: 0;
      font-size: 18px;
    }

    .share-row a:hover {
      color: var(--red, #e53935);
    }

    .share-row .news-pill {
      margin-left: auto;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1px solid #ddd;
      padding: 5px 12px;
      border-radius: 999px;
      font-size: 13px;
      color: #333;
    }

    .byline {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid #eee;
      margin-bottom: 18px;
    }

    .byline-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--red, #e53935);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
    }

    .byline-meta {
      font-size: 13px;
      color: #444;
    }

    .byline-meta strong {
      color: #111;
    }

    .article-body p {
      font-size: 17px;
      line-height: 1.85;
      color: #222;
      margin-bottom: 16px;
    }

    .read-more-btn {
      display: block;
      margin: 24px auto;
      background: var(--red, #e53935);
      color: #fff;
      border: 0;
      padding: 10px 28px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 14px;
    }

    .read-more-btn:hover {
      background: #c62828;
      color: #fff;
    }

    .related-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin: 18px 0;
    }

    .related-card {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 6px;
      overflow: hidden;
    }

    .related-card img {
      width: 100%;
      height: 140px;
      object-fit: cover;
      display: block;
    }

    .related-card .rc-body {
      padding: 10px;
    }

    .related-card h6 {
      font-size: 14px;
      font-weight: 700;
      color: #111;
      line-height: 1.4;
      margin: 0 0 6px;
    }

    .related-card .rc-meta {
      font-size: 11px;
      color: #888;
    }

    /* Sidebar */
    .article-side .side-ad img {
      width: 100%;
      border-radius: 6px;
    }

    .article-side .side-ad-label {
      text-align: center;
      color: #888;
      font-size: 11px;
      letter-spacing: 1px;
      margin-bottom: 6px;
    }

    .side-block {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 6px;
      padding: 14px;
      margin-top: 18px;
    }

    .side-block h4 {
      font-size: 16px;
      font-weight: 800;
      color: #111;
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 12px;
    }

    .side-block h4::before {
      content: "";
      width: 4px;
      height: 18px;
      background: var(--red, #e53935);
      border-radius: 2px;
    }

    .side-news-item {
      display: flex;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px dashed #eee;
    }

    .side-news-item:last-child {
      border-bottom: 0;
    }

    .side-news-item img {
      width: 80px;
      height: 60px;
      object-fit: cover;
      border-radius: 4px;
      flex-shrink: 0;
    }

    .side-news-item p {
      font-size: 13px;
      line-height: 1.45;
      color: #222;
      margin: 0;
    }

    .trending-news-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .trending-news-tags a {
      background: #f4f4f4;
      border: 1px solid #e5e5e5;
      color: #333;
      padding: 6px 12px;
      border-radius: 4px;
      font-size: 12px;
    }

    .trending-news-tags a:hover {
      background: var(--red, #e53935);
      color: #fff;
      border-color: var(--red, #e53935);
    }

    #phonemenu {
      display: none;
    }

    /* ============================
       MOBILE SIDE DRAWER
    ============================ */

    /* Mobile sign-in button (smaller) */
    .mobile-signin-btn {
      font-size: 12px !important;
      padding: 6px 10px !important;
      white-space: nowrap;
    }

    /* Hamburger toggle button */
    .mobile-menu-toggle {
      background: none;
      border: none;
      padding: 6px 8px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 5px;
      justify-content: center;
    }

    .hamburger-line {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--black, #111);
      border-radius: 2px;
      transition: all 0.25s ease;
    }

    /* Dark overlay behind drawer */
    .mobile-drawer-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      z-index: 1999;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .mobile-drawer-overlay.open {
      display: block;
      opacity: 1;
    }

    /* Side Drawer */
    .mobile-drawer {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      /* full width on mobile */
      max-width: 320px;
      /* cap on larger phones */
      height: 100vh;
      background: #fff;
      z-index: 2000;
      transform: translateX(-100%);
      transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      box-shadow: 4px 0 24px rgba(0, 0, 0, 0.18);
    }

    .mobile-drawer.open {
      transform: translateX(0);
    }

    /* Drawer header */
    .mobile-drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 16px;
      border-bottom: 1px solid #eee;
      background: var(--red, #d32f2f);
    }

    .mobile-drawer-close {
      background: none;
      border: none;
      font-size: 20px;
      cursor: pointer;
      color: #fff;
      padding: 4px 8px;
      line-height: 1;
    }

    /* Nav list */
    .mobile-drawer-nav {
      list-style: none;
      margin: 0;
      padding: 8px 0;
      flex: 1;
      overflow-y: auto;
    }

    .mobile-drawer-nav li a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 20px;
      font-size: 15px;
      font-weight: 600;
      color: var(--black, #111);
      text-decoration: none;
      font-family: var(--font, inherit);
      border-left: 3px solid transparent;
      transition: background 0.15s, border-color 0.15s, color 0.15s;
    }

    .mobile-drawer-nav li a i {
      font-size: 16px;
      width: 20px;
      text-align: center;
      color: var(--red, #d32f2f);
    }

    .mobile-drawer-nav li a:hover,
    .mobile-drawer-nav li a.active {
      background: #fff5f5;
      color: var(--red, #d32f2f);
      border-left-color: var(--red, #d32f2f);
    }

    .mobile-drawer-nav li+li {
      border-top: 1px solid #f0f0f0;
    }

    /* Drawer footer */
    .mobile-drawer-footer {
      padding: 16px;
      border-top: 1px solid #eee;
    }

    #phonemenu {
      display: none !important;
    }

    @media (max-width: 1080px) {

      #phonemenu {
        display: flex !important;
      }
    }

    @media (max-width: 768px) {
      #desktopmenu {
        display: none;
      }

      .article-title {
        font-size: 22px;
      }

      .related-grid {
        grid-template-columns: 1fr 1fr;
      }

      .article-body p {
        font-size: 16px;
      }
    }

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

      .pt-60 {
        padding: 20px 0;
      }
    }

    /* === Shared page styles (about/contact/our-story/write-for-us/editorial-team/disclaimer) === */
    .active-top {
      color: #ffd54f !important;
      font-weight: 700
    }

    .page-hero {
      background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
      color: #fff;
      padding: 64px 20px 80px;
      position: relative;
      overflow: hidden
    }

    .page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .08) 0, transparent 40%), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, .06) 0, transparent 40%)
    }

    .page-hero .container-x {
      position: relative;
      max-width: 1200px;
      margin: auto;
    }

    .page-hero .crumb {
      font-size: 13px;
      letter-spacing: 1px;
      opacity: .85;
      text-transform: uppercase;
      margin-bottom: 25px;
    }

    .page-hero h1 {
      font-family: "Noto Serif Devanagari", serif;
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 800;
      line-height: 1.15;
      margin: 0;
    }

    .page-hero .sub {
      margin-top: 14px;
      font-size: 17px;
      opacity: .92;
      max-width: 720px;
    }

    .page-wrap {
      max-width: 1200px;
      margin: -40px auto 40px;
      padding: 0 16px;
      position: relative;
      z-index: 2
    }

    .page-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .18);
      padding: 40px clamp(20px, 4vw, 56px)
    }

    .page-card h2 {
      font-family: "Noto Serif Devanagari", serif;
      font-weight: 800;
      color: #111;
      margin: 32px 0 14px;
      font-size: 26px;
      position: relative;
      padding-left: 16px
    }

    .page-card h2::before {
      content: "";
      position: absolute;
      left: 0;
      top: 6px;
      bottom: 6px;
      width: 5px;
      border-radius: 3px;
      background: linear-gradient(180deg, #b91c1c, #f59e0b)
    }

    .page-card p {
      font-size: 17px;
      line-height: 1.85;
      color: #333;
      margin-bottom: 16px
    }

    .page-card p strong {
      color: #b91c1c
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 18px;
      margin: 30px 0
    }

    .stat-card {
      background: linear-gradient(135deg, #fef2f2, #fff);
      border: 1px solid #fee2e2;
      border-radius: 14px;
      padding: 22px;
      text-align: center
    }

    .stat-num {
      font-size: 38px;
      font-weight: 900;
      color: #b91c1c;
      font-family: "Noto Sans Devanagari", sans-serif;
      line-height: 1
    }

    .stat-lbl {
      font-size: 13px;
      color: #555;
      margin-top: 6px;
      letter-spacing: .5px
    }

    .value-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 18px;
      margin-top: 18px
    }

    .value-card {
      background: #fafafa;
      border-left: 4px solid #b91c1c;
      padding: 20px;
      border-radius: 8px
    }

    .value-card h3 {
      font-size: 17px;
      font-weight: 700;
      margin: 0 0 6px;
      color: #111
    }

    .value-card p {
      font-size: 14px;
      color: #555;
      margin: 0;
      line-height: 1.6
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 32px;
      margin-top: 24px
    }

    @media (max-width:820px) {
      .contact-grid {
        grid-template-columns: 1fr
      }
    }

    .contact-info-list {
      list-style: none;
      padding: 0;
      margin: 0
    }

    .contact-info-list li {
      display: flex;
      gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid #f0f0f0
    }

    .contact-info-list i {
      font-size: 22px;
      color: #b91c1c;
      flex-shrink: 0;
      margin-top: 2px
    }

    .contact-info-list strong {
      display: block;
      font-size: 13px;
      color: #888;
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 2px
    }

    .contact-info-list span {
      font-size: 16px;
      color: #222;
      font-weight: 600
    }

    .contact-form {
      background: #fafafa;
      border-radius: 14px;
      padding: 28px
    }

    .contact-form label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #333;
      margin: 14px 0 6px;
      text-transform: uppercase;
      letter-spacing: .5px
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      border: 1px solid #e4e4e4;
      border-radius: 10px;
      padding: 12px 14px;
      font-size: 15px;
      background: #fff;
      font-family: inherit;
      transition: .2s
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: #b91c1c;
      box-shadow: 0 0 0 3px rgba(185, 28, 28, .12)
    }

    .contact-form button {
      margin-top: 18px;
      width: 100%;
      background: linear-gradient(135deg, #b91c1c, #7f1d1d);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 14px;
      font-weight: 700;
      font-size: 16px;
      cursor: pointer;
      transition: .2s
    }

    .contact-form button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px -10px rgba(185, 28, 28, .6)
    }

    .map-embed {
      margin-top: 24px;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid #eee
    }

    .map-embed iframe {
      width: 100%;
      height: 340px;
      border: 0;
      display: block
    }

    /* Category page */
    .cat-layout {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 28px;
      margin: 24px auto;
      max-width: 1300px;
      padding: 0 16px
    }

    @media (max-width:980px) {
      .cat-layout {
        grid-template-columns: 1fr
      }
    }

    .cat-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 18px;
      padding-bottom: 14px;
      border-bottom: 2px solid #b91c1c
    }

    .cat-title {
      font-family: "Noto Serif Devanagari", serif;
      font-size: 32px;
      font-weight: 800;
      color: #111;
      margin: 0
    }

    .cat-pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px
    }

    .cat-pill {
      background: #fff;
      border: 1px solid #fecaca;
      color: #b91c1c;
      font-weight: 600;
      font-size: 13px;
      padding: 6px 14px;
      border-radius: 999px;
      text-decoration: none;
      transition: .2s
    }

    .cat-pill:hover,
    .cat-pill.active {
      background: #b91c1c;
      color: #fff;
      border-color: #b91c1c
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 20px
    }

    .news-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 4px 20px -8px rgba(0, 0, 0, .1);
      transition: .25s;
      display: flex;
      flex-direction: column
    }

    .news-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px -10px rgba(0, 0, 0, .18)
    }

    .news-card .thumb {
      aspect-ratio: 16/10;
      background: #eee center/cover no-repeat;
      position: relative
    }

    .news-card .badge-cat {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #b91c1c;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 4px;
      text-transform: uppercase
    }

    .news-card .body {
      padding: 14px 16px 18px;
      flex: 1;
      display: flex;
      flex-direction: column
    }

    .news-card h3 {
      font-size: 16px;
      font-weight: 700;
      line-height: 1.4;
      margin: 0 0 8px;
      color: #111
    }

    .news-card .meta {
      margin-top: auto;
      font-size: 12px;
      color: #888;
      display: flex;
      gap: 10px
    }

    .sidebar-box {
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 4px 20px -10px rgba(0, 0, 0, .1);
      padding: 20px;
      margin-bottom: 20px
    }

    .sidebar-box h4 {
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #b91c1c;
      margin: 0 0 14px;
      padding-bottom: 10px;
      border-bottom: 2px solid #fee2e2
    }

    .cat-list {
      list-style: none;
      padding: 0;
      margin: 0
    }

    .cat-list li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px dashed #eee;
      font-size: 15px
    }

    .cat-list li:last-child {
      border-bottom: none
    }

    .cat-list a {
      color: #222;
      text-decoration: none;
      font-weight: 600
    }

    .cat-list a:hover {
      color: #b91c1c
    }

    .cat-count {
      background: #fef2f2;
      color: #b91c1c;
      font-size: 12px;
      font-weight: 700;
      padding: 2px 10px;
      border-radius: 999px
    }

    .must-read {
      display: flex;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px dashed #eee
    }

    .must-read:last-child {
      border-bottom: none
    }

    .must-read img {
      width: 70px;
      height: 70px;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0
    }

    .must-read .mr-cat {
      font-size: 11px;
      color: #b91c1c;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .5px
    }

    .must-read h5 {
      font-size: 14px;
      font-weight: 600;
      line-height: 1.4;
      margin: 4px 0 0;
      color: #111
    }

    .pagination-row {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin: 30px 0 10px;
      flex-wrap: wrap
    }

    .pagination-row a {
      min-width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: #fff;
      border: 1px solid #e5e5e5;
      color: #222;
      font-weight: 600;
      text-decoration: none;
      padding: 0 12px
    }

    .pagination-row a.active,
    .pagination-row a:hover {
      background: #b91c1c;
      color: #fff;
      border-color: #b91c1c
    }


    /* ===== Consolidated inline styles ===== */

    /* === from about-us.html === */

    .active-top {
      color: #ffd54f !important;
      font-weight: 700
    }

    .page-hero {
      background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
      color: #fff;
      padding: 64px 20px 80px;
      position: relative;
      overflow: hidden
    }

    .page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .08) 0, transparent 40%), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, .06) 0, transparent 40%)
    }

    .page-hero .container-x {
      position: relative;
      max-width: 1200px;
      margin: auto
    }

    .page-hero .crumb {
      font-size: 13px;
      letter-spacing: 1px;
      opacity: .85;
      text-transform: uppercase;
      margin-bottom: 14px
    }

    .page-hero h1 {
      font-family: "Noto Serif Devanagari", serif;
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 800;
      line-height: 1.15;
      margin: 0
    }

    .page-hero .sub {
      margin-top: 14px;
      font-size: 17px;
      opacity: .92;
      max-width: 720px
    }

    .page-wrap {
      max-width: 1200px;
      margin: -40px auto 40px;
      padding: 0 16px;
      position: relative;
      z-index: 2
    }

    .page-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .18);
      padding: 40px clamp(20px, 4vw, 56px)
    }

    .page-card h2 {
      font-family: "Noto Serif Devanagari", serif;
      font-weight: 800;
      color: #111;
      margin: 32px 0 14px;
      font-size: 26px;
      position: relative;
      padding-left: 16px
    }

    .page-card h2::before {
      content: "";
      position: absolute;
      left: 0;
      top: 6px;
      bottom: 6px;
      width: 5px;
      border-radius: 3px;
      background: linear-gradient(180deg, #b91c1c, #f59e0b)
    }

    .page-card p {
      font-size: 17px;
      line-height: 1.85;
      color: #333;
      margin-bottom: 16px
    }

    .page-card p strong {
      color: #b91c1c
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 18px;
      margin: 30px 0
    }

    .stat-card {
      background: linear-gradient(135deg, #fef2f2, #fff);
      border: 1px solid #fee2e2;
      border-radius: 14px;
      padding: 22px;
      text-align: center
    }

    .stat-num {
      font-size: 38px;
      font-weight: 900;
      color: #b91c1c;
      font-family: "Noto Sans Devanagari", sans-serif;
      line-height: 1
    }

    .stat-lbl {
      font-size: 13px;
      color: #555;
      margin-top: 6px;
      letter-spacing: .5px
    }

    .value-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 18px;
      margin-top: 18px
    }

    .value-card {
      background: #fafafa;
      border-left: 4px solid #b91c1c;
      padding: 20px;
      border-radius: 8px
    }

    .value-card h3 {
      font-size: 17px;
      font-weight: 700;
      margin: 0 0 6px;
      color: #111
    }

    .value-card p {
      font-size: 14px;
      color: #555;
      margin: 0;
      line-height: 1.6
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 32px;
      margin-top: 24px
    }

    @media (max-width:820px) {
      .contact-grid {
        grid-template-columns: 1fr
      }
    }

    .contact-info-list {
      list-style: none;
      padding: 0;
      margin: 0
    }

    .contact-info-list li {
      display: flex;
      gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid #f0f0f0
    }

    .contact-info-list i {
      font-size: 22px;
      color: #b91c1c;
      flex-shrink: 0;
      margin-top: 2px
    }

    .contact-info-list strong {
      display: block;
      font-size: 13px;
      color: #888;
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 2px
    }

    .contact-info-list span {
      font-size: 16px;
      color: #222;
      font-weight: 600
    }

    .contact-form {
      background: #fafafa;
      border-radius: 14px;
      padding: 28px
    }

    .contact-form label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #333;
      margin: 14px 0 6px;
      text-transform: uppercase;
      letter-spacing: .5px
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      border: 1px solid #e4e4e4;
      border-radius: 10px;
      padding: 12px 14px;
      font-size: 15px;
      background: #fff;
      font-family: inherit;
      transition: .2s
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: #b91c1c;
      box-shadow: 0 0 0 3px rgba(185, 28, 28, .12)
    }

    .contact-form button {
      margin-top: 18px;
      width: 100%;
      background: linear-gradient(135deg, #b91c1c, #7f1d1d);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 14px;
      font-weight: 700;
      font-size: 16px;
      cursor: pointer;
      transition: .2s
    }

    .contact-form button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px -10px rgba(185, 28, 28, .6)
    }

    .map-embed {
      margin-top: 24px;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid #eee
    }

    .map-embed iframe {
      width: 100%;
      height: 340px;
      border: 0;
      display: block
    }

    /* Category page */
    .cat-layout {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 28px;
      margin: 24px auto;
      max-width: 1300px;
      padding: 0 16px
    }

    @media (max-width:980px) {
      .cat-layout {
        grid-template-columns: 1fr
      }
    }

    .cat-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 18px;
      padding-bottom: 14px;
      border-bottom: 2px solid #b91c1c
    }

    .cat-title {
      font-family: "Noto Serif Devanagari", serif;
      font-size: 32px;
      font-weight: 800;
      color: #111;
      margin: 0
    }

    .cat-pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px
    }

    .cat-pill {
      background: #fff;
      border: 1px solid #fecaca;
      color: #b91c1c;
      font-weight: 600;
      font-size: 13px;
      padding: 6px 14px;
      border-radius: 999px;
      text-decoration: none;
      transition: .2s
    }

    .cat-pill:hover,
    .cat-pill.active {
      background: #b91c1c;
      color: #fff;
      border-color: #b91c1c
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 20px
    }

    .news-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 4px 20px -8px rgba(0, 0, 0, .1);
      transition: .25s;
      display: flex;
      flex-direction: column
    }

    .news-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px -10px rgba(0, 0, 0, .18)
    }

    .news-card .thumb {
      aspect-ratio: 16/10;
      background: #eee center/cover no-repeat;
      position: relative
    }

    .news-card .badge-cat {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #b91c1c;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 4px;
      text-transform: uppercase
    }

    .news-card .body {
      padding: 14px 16px 18px;
      flex: 1;
      display: flex;
      flex-direction: column
    }

    .news-card h3 {
      font-size: 16px;
      font-weight: 700;
      line-height: 1.4;
      margin: 0 0 8px;
      color: #111
    }

    .news-card .meta {
      margin-top: auto;
      font-size: 12px;
      color: #888;
      display: flex;
      gap: 10px
    }

    .sidebar-box {
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 4px 20px -10px rgba(0, 0, 0, .1);
      padding: 20px;
      margin-bottom: 20px
    }

    .sidebar-box h4 {
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #b91c1c;
      margin: 0 0 14px;
      padding-bottom: 10px;
      border-bottom: 2px solid #fee2e2
    }

    .cat-list {
      list-style: none;
      padding: 0;
      margin: 0
    }

    .cat-list li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px dashed #eee;
      font-size: 15px
    }

    .cat-list li:last-child {
      border-bottom: none
    }

    .cat-list a {
      color: #222;
      text-decoration: none;
      font-weight: 600
    }

    .cat-list a:hover {
      color: #b91c1c
    }

    .cat-count {
      background: #fef2f2;
      color: #b91c1c;
      font-size: 12px;
      font-weight: 700;
      padding: 2px 10px;
      border-radius: 999px
    }

    .must-read {
      display: flex;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px dashed #eee
    }

    .must-read:last-child {
      border-bottom: none
    }

    .must-read img {
      width: 70px;
      height: 70px;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0
    }

    .must-read .mr-cat {
      font-size: 11px;
      color: #b91c1c;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .5px
    }

    .must-read h5 {
      font-size: 14px;
      font-weight: 600;
      line-height: 1.4;
      margin: 4px 0 0;
      color: #111
    }

    .pagination-row {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin: 30px 0 10px;
      flex-wrap: wrap
    }

    .pagination-row a {
      min-width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: #fff;
      border: 1px solid #e5e5e5;
      color: #222;
      font-weight: 600;
      text-decoration: none;
      padding: 0 12px
    }

    .pagination-row a.active,
    .pagination-row a:hover {
      background: #b91c1c;
      color: #fff;
      border-color: #b91c1c
    }

    /* === from article.html === */

    .article-body.collapsed {
      max-height: 196px;
      overflow: hidden;
    }

    .article-body {
      transition: max-height 0.3s ease;
    }

    /* === from category.html === */

    .active-top {
      color: #ffd54f !important;
      font-weight: 700
    }

    .page-hero {
      background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
      color: #fff;
      padding: 64px 20px 80px;
      position: relative;
      overflow: hidden
    }

    .page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .08) 0, transparent 40%), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, .06) 0, transparent 40%)
    }

    .page-hero .container-x {
      position: relative;
      max-width: 1200px;
      margin: auto
    }

    .page-hero .crumb {
      font-size: 13px;
      letter-spacing: 1px;
      opacity: .85;
      text-transform: uppercase;
      margin-bottom: 14px
    }

    .page-hero h1 {
      font-family: "Noto Serif Devanagari", serif;
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 800;
      line-height: 1.15;
      margin: 0
    }

    .page-hero .sub {
      margin-top: 14px;
      font-size: 17px;
      opacity: .92;
      max-width: 720px
    }

    .page-wrap {
      max-width: 1200px;
      margin: -40px auto 40px;
      padding: 0 16px;
      position: relative;
      z-index: 2
    }

    .page-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .18);
      padding: 40px clamp(20px, 4vw, 56px)
    }

    .page-card h2 {
      font-family: "Noto Serif Devanagari", serif;
      font-weight: 800;
      color: #111;
      margin: 32px 0 14px;
      font-size: 26px;
      position: relative;
      padding-left: 16px
    }

    .page-card h2::before {
      content: "";
      position: absolute;
      left: 0;
      top: 6px;
      bottom: 6px;
      width: 5px;
      border-radius: 3px;
      background: linear-gradient(180deg, #b91c1c, #f59e0b)
    }

    .page-card p {
      font-size: 17px;
      line-height: 1.85;
      color: #333;
      margin-bottom: 16px
    }

    .page-card p strong {
      color: #b91c1c
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 18px;
      margin: 30px 0
    }

    .stat-card {
      background: linear-gradient(135deg, #fef2f2, #fff);
      border: 1px solid #fee2e2;
      border-radius: 14px;
      padding: 22px;
      text-align: center
    }

    .stat-num {
      font-size: 38px;
      font-weight: 900;
      color: #b91c1c;
      font-family: "Noto Sans Devanagari", sans-serif;
      line-height: 1
    }

    .stat-lbl {
      font-size: 13px;
      color: #555;
      margin-top: 6px;
      letter-spacing: .5px
    }

    .value-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 18px;
      margin-top: 18px
    }

    .value-card {
      background: #fafafa;
      border-left: 4px solid #b91c1c;
      padding: 20px;
      border-radius: 8px
    }

    .value-card h3 {
      font-size: 17px;
      font-weight: 700;
      margin: 0 0 6px;
      color: #111
    }

    .value-card p {
      font-size: 14px;
      color: #555;
      margin: 0;
      line-height: 1.6
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 32px;
      margin-top: 24px
    }

    @media (max-width:820px) {
      .contact-grid {
        grid-template-columns: 1fr
      }
    }

    .contact-info-list {
      list-style: none;
      padding: 0;
      margin: 0
    }

    .contact-info-list li {
      display: flex;
      gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid #f0f0f0
    }

    .contact-info-list i {
      font-size: 22px;
      color: #b91c1c;
      flex-shrink: 0;
      margin-top: 2px
    }

    .contact-info-list strong {
      display: block;
      font-size: 13px;
      color: #888;
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 2px
    }

    .contact-info-list span {
      font-size: 16px;
      color: #222;
      font-weight: 600
    }

    .contact-form {
      background: #fafafa;
      border-radius: 14px;
      padding: 28px
    }

    .contact-form label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #333;
      margin: 14px 0 6px;
      text-transform: uppercase;
      letter-spacing: .5px
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      border: 1px solid #e4e4e4;
      border-radius: 10px;
      padding: 12px 14px;
      font-size: 15px;
      background: #fff;
      font-family: inherit;
      transition: .2s
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: #b91c1c;
      box-shadow: 0 0 0 3px rgba(185, 28, 28, .12)
    }

    .contact-form button {
      margin-top: 18px;
      width: 100%;
      background: linear-gradient(135deg, #b91c1c, #7f1d1d);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 14px;
      font-weight: 700;
      font-size: 16px;
      cursor: pointer;
      transition: .2s
    }

    .contact-form button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px -10px rgba(185, 28, 28, .6)
    }

    .map-embed {
      margin-top: 24px;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid #eee
    }

    .map-embed iframe {
      width: 100%;
      height: 340px;
      border: 0;
      display: block
    }

    /* Category page */
    .cat-layout {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 28px;
      margin: 24px auto;
      max-width: 1300px;
      padding: 0 16px
    }

    @media (max-width:980px) {
      .cat-layout {
        grid-template-columns: 1fr
      }
    }

    .cat-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 18px;
      padding-bottom: 14px;
      border-bottom: 2px solid #b91c1c
    }

    .cat-title {
      font-family: "Noto Serif Devanagari", serif;
      font-size: 32px;
      font-weight: 800;
      color: #111;
      margin: 0
    }

    .cat-pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px
    }

    .cat-pill {
      background: #fff;
      border: 1px solid #fecaca;
      color: #b91c1c;
      font-weight: 600;
      font-size: 13px;
      padding: 6px 14px;
      border-radius: 999px;
      text-decoration: none;
      transition: .2s
    }

    .cat-pill:hover,
    .cat-pill.active {
      background: #b91c1c;
      color: #fff;
      border-color: #b91c1c
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 20px
    }

    .news-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 4px 20px -8px rgba(0, 0, 0, .1);
      transition: .25s;
      display: flex;
      flex-direction: column
    }

    .news-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px -10px rgba(0, 0, 0, .18)
    }

    .news-card .thumb {
      aspect-ratio: 16/10;
      background: #eee center/cover no-repeat;
      position: relative
    }

    .news-card .badge-cat {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #b91c1c;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 4px;
      text-transform: uppercase
    }

    .news-card .body {
      padding: 14px 16px 18px;
      flex: 1;
      display: flex;
      flex-direction: column
    }

    .news-card h3 {
      font-size: 16px;
      font-weight: 700;
      line-height: 1.4;
      margin: 0 0 8px;
      color: #111
    }

    .news-card .meta {
      margin-top: auto;
      font-size: 12px;
      color: #888;
      display: flex;
      gap: 10px
    }

    .sidebar-box {
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 4px 20px -10px rgba(0, 0, 0, .1);
      padding: 20px;
      margin-bottom: 20px
    }

    .sidebar-box h4 {
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #b91c1c;
      margin: 0 0 14px;
      padding-bottom: 10px;
      border-bottom: 2px solid #fee2e2
    }

    .cat-list {
      list-style: none;
      padding: 0;
      margin: 0
    }

    .cat-list li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px dashed #eee;
      font-size: 15px
    }

    .cat-list li:last-child {
      border-bottom: none
    }

    .cat-list a {
      color: #222;
      text-decoration: none;
      font-weight: 600
    }

    .cat-list a:hover {
      color: #b91c1c
    }

    .cat-count {
      background: #fef2f2;
      color: #b91c1c;
      font-size: 12px;
      font-weight: 700;
      padding: 2px 10px;
      border-radius: 999px
    }

    .must-read {
      display: flex;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px dashed #eee
    }

    .must-read:last-child {
      border-bottom: none
    }

    .must-read img {
      width: 70px;
      height: 70px;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0
    }

    .must-read .mr-cat {
      font-size: 11px;
      color: #b91c1c;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .5px
    }

    .must-read h5 {
      font-size: 14px;
      font-weight: 600;
      line-height: 1.4;
      margin: 4px 0 0;
      color: #111
    }

    .pagination-row {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin: 30px 0 10px;
      flex-wrap: wrap
    }

    .pagination-row a {
      min-width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: #fff;
      border: 1px solid #e5e5e5;
      color: #222;
      font-weight: 600;
      text-decoration: none;
      padding: 0 12px
    }

    .pagination-row a.active,
    .pagination-row a:hover {
      background: #b91c1c;
      color: #fff;
      border-color: #b91c1c
    }

    /* === from contact-us.html === */

    .active-top {
      color: #ffd54f !important;
      font-weight: 700
    }

    .page-hero {
      background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
      color: #fff;
      padding: 64px 20px 80px;
      position: relative;
      overflow: hidden
    }

    .page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .08) 0, transparent 40%), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, .06) 0, transparent 40%)
    }

    .page-hero .container-x {
      position: relative;
      max-width: 1200px;
      margin: auto
    }

    .page-hero .crumb {
      font-size: 13px;
      letter-spacing: 1px;
      opacity: .85;
      text-transform: uppercase;
      margin-bottom: 14px
    }

    .page-hero h1 {
      font-family: "Noto Serif Devanagari", serif;
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 800;
      line-height: 1.15;
      margin: 0
    }

    .page-hero .sub {
      margin-top: 14px;
      font-size: 17px;
      opacity: .92;
      max-width: 720px
    }

    .page-wrap {
      max-width: 1200px;
      margin: -40px auto 40px;
      padding: 0 16px;
      position: relative;
      z-index: 2
    }

    .page-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .18);
      padding: 40px clamp(20px, 4vw, 56px)
    }

    .page-card h2 {
      font-family: "Noto Serif Devanagari", serif;
      font-weight: 800;
      color: #111;
      margin: 32px 0 14px;
      font-size: 26px;
      position: relative;
      padding-left: 16px
    }

    .page-card h2::before {
      content: "";
      position: absolute;
      left: 0;
      top: 6px;
      bottom: 6px;
      width: 5px;
      border-radius: 3px;
      background: linear-gradient(180deg, #b91c1c, #f59e0b)
    }

    .page-card p {
      font-size: 17px;
      line-height: 1.85;
      color: #333;
      margin-bottom: 16px
    }

    .page-card p strong {
      color: #b91c1c
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 18px;
      margin: 30px 0
    }

    .stat-card {
      background: linear-gradient(135deg, #fef2f2, #fff);
      border: 1px solid #fee2e2;
      border-radius: 14px;
      padding: 22px;
      text-align: center
    }

    .stat-num {
      font-size: 38px;
      font-weight: 900;
      color: #b91c1c;
      font-family: "Noto Sans Devanagari", sans-serif;
      line-height: 1
    }

    .stat-lbl {
      font-size: 13px;
      color: #555;
      margin-top: 6px;
      letter-spacing: .5px
    }

    .value-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 18px;
      margin-top: 18px
    }

    .value-card {
      background: #fafafa;
      border-left: 4px solid #b91c1c;
      padding: 20px;
      border-radius: 8px
    }

    .value-card h3 {
      font-size: 17px;
      font-weight: 700;
      margin: 0 0 6px;
      color: #111
    }

    .value-card p {
      font-size: 14px;
      color: #555;
      margin: 0;
      line-height: 1.6
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 32px;
      margin-top: 24px
    }

    @media (max-width:820px) {
      .contact-grid {
        grid-template-columns: 1fr
      }
    }

    .contact-info-list {
      list-style: none;
      padding: 0;
      margin: 0
    }

    .contact-info-list li {
      display: flex;
      gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid #f0f0f0
    }

    .contact-info-list i {
      font-size: 22px;
      color: #b91c1c;
      flex-shrink: 0;
      margin-top: 2px
    }

    .contact-info-list strong {
      display: block;
      font-size: 13px;
      color: #888;
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 2px
    }

    .contact-info-list span {
      font-size: 16px;
      color: #222;
      font-weight: 600
    }

    .contact-form {
      background: #fafafa;
      border-radius: 14px;
      padding: 28px
    }

    .contact-form label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #333;
      margin: 14px 0 6px;
      text-transform: uppercase;
      letter-spacing: .5px
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      border: 1px solid #e4e4e4;
      border-radius: 10px;
      padding: 12px 14px;
      font-size: 15px;
      background: #fff;
      font-family: inherit;
      transition: .2s
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: #b91c1c;
      box-shadow: 0 0 0 3px rgba(185, 28, 28, .12)
    }

    .contact-form button {
      margin-top: 18px;
      width: 100%;
      background: linear-gradient(135deg, #b91c1c, #7f1d1d);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 14px;
      font-weight: 700;
      font-size: 16px;
      cursor: pointer;
      transition: .2s
    }

    .contact-form button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px -10px rgba(185, 28, 28, .6)
    }

    .map-embed {
      margin-top: 24px;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid #eee
    }

    .map-embed iframe {
      width: 100%;
      height: 340px;
      border: 0;
      display: block
    }

    /* Category page */
    .cat-layout {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 28px;
      margin: 24px auto;
      max-width: 1300px;
      padding: 0 16px
    }

    @media (max-width:980px) {
      .cat-layout {
        grid-template-columns: 1fr
      }
    }

    .cat-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 18px;
      padding-bottom: 14px;
      border-bottom: 2px solid #b91c1c
    }

    .cat-title {
      font-family: "Noto Serif Devanagari", serif;
      font-size: 32px;
      font-weight: 800;
      color: #111;
      margin: 0
    }

    .cat-pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px
    }

    .cat-pill {
      background: #fff;
      border: 1px solid #fecaca;
      color: #b91c1c;
      font-weight: 600;
      font-size: 13px;
      padding: 6px 14px;
      border-radius: 999px;
      text-decoration: none;
      transition: .2s
    }

    .cat-pill:hover,
    .cat-pill.active {
      background: #b91c1c;
      color: #fff;
      border-color: #b91c1c
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 20px
    }

    .news-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 4px 20px -8px rgba(0, 0, 0, .1);
      transition: .25s;
      display: flex;
      flex-direction: column
    }

    .news-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px -10px rgba(0, 0, 0, .18)
    }

    .news-card .thumb {
      aspect-ratio: 16/10;
      background: #eee center/cover no-repeat;
      position: relative
    }

    .news-card .badge-cat {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #b91c1c;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 4px;
      text-transform: uppercase
    }

    .news-card .body {
      padding: 14px 16px 18px;
      flex: 1;
      display: flex;
      flex-direction: column
    }

    .news-card h3 {
      font-size: 16px;
      font-weight: 700;
      line-height: 1.4;
      margin: 0 0 8px;
      color: #111
    }

    .news-card .meta {
      margin-top: auto;
      font-size: 12px;
      color: #888;
      display: flex;
      gap: 10px
    }

    .sidebar-box {
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 4px 20px -10px rgba(0, 0, 0, .1);
      padding: 20px;
      margin-bottom: 20px
    }

    .sidebar-box h4 {
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #b91c1c;
      margin: 0 0 14px;
      padding-bottom: 10px;
      border-bottom: 2px solid #fee2e2
    }

    .cat-list {
      list-style: none;
      padding: 0;
      margin: 0
    }

    .cat-list li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px dashed #eee;
      font-size: 15px
    }

    .cat-list li:last-child {
      border-bottom: none
    }

    .cat-list a {
      color: #222;
      text-decoration: none;
      font-weight: 600
    }

    .cat-list a:hover {
      color: #b91c1c
    }

    .cat-count {
      background: #fef2f2;
      color: #b91c1c;
      font-size: 12px;
      font-weight: 700;
      padding: 2px 10px;
      border-radius: 999px
    }

    .must-read {
      display: flex;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px dashed #eee
    }

    .must-read:last-child {
      border-bottom: none
    }

    .must-read img {
      width: 70px;
      height: 70px;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0
    }

    .must-read .mr-cat {
      font-size: 11px;
      color: #b91c1c;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .5px
    }

    .must-read h5 {
      font-size: 14px;
      font-weight: 600;
      line-height: 1.4;
      margin: 4px 0 0;
      color: #111
    }

    .pagination-row {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin: 30px 0 10px;
      flex-wrap: wrap
    }

    .pagination-row a {
      min-width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: #fff;
      border: 1px solid #e5e5e5;
      color: #222;
      font-weight: 600;
      text-decoration: none;
      padding: 0 12px
    }

    .pagination-row a.active,
    .pagination-row a:hover {
      background: #b91c1c;
      color: #fff;
      border-color: #b91c1c
    }

    /* === from our-story.html === */

    .active-top {
      color: #ffd54f !important;
      font-weight: 700
    }

    .page-hero {
      background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
      color: #fff;
      padding: 64px 20px 80px;
      position: relative;
      overflow: hidden
    }

    .page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .08) 0, transparent 40%), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, .06) 0, transparent 40%)
    }

    .page-hero .container-x {
      position: relative;
      max-width: 1200px;
      margin: auto
    }

    .page-hero .crumb {
      font-size: 13px;
      letter-spacing: 1px;
      opacity: .85;
      text-transform: uppercase;
      margin-bottom: 14px
    }

    .page-hero h1 {
      font-family: "Noto Serif Devanagari", serif;
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 800;
      line-height: 1.15;
      margin: 0
    }

    .page-hero .sub {
      margin-top: 14px;
      font-size: 17px;
      opacity: .92;
      max-width: 720px
    }

    .page-wrap {
      max-width: 1200px;
      margin: -40px auto 40px;
      padding: 0 16px;
      position: relative;
      z-index: 2
    }

    .page-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .18);
      padding: 40px clamp(20px, 4vw, 56px)
    }

    .page-card h2 {
      font-family: "Noto Serif Devanagari", serif;
      font-weight: 800;
      color: #111;
      margin: 32px 0 14px;
      font-size: 26px;
      position: relative;
      padding-left: 16px
    }

    .page-card h2::before {
      content: "";
      position: absolute;
      left: 0;
      top: 6px;
      bottom: 6px;
      width: 5px;
      border-radius: 3px;
      background: linear-gradient(180deg, #b91c1c, #f59e0b)
    }

    .page-card p {
      font-size: 17px;
      line-height: 1.85;
      color: #333;
      margin-bottom: 16px
    }

    .page-card p strong {
      color: #b91c1c
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 18px;
      margin: 30px 0
    }

    .stat-card {
      background: linear-gradient(135deg, #fef2f2, #fff);
      border: 1px solid #fee2e2;
      border-radius: 14px;
      padding: 22px;
      text-align: center
    }

    .stat-num {
      font-size: 38px;
      font-weight: 900;
      color: #b91c1c;
      font-family: "Noto Sans Devanagari", sans-serif;
      line-height: 1
    }

    .stat-lbl {
      font-size: 13px;
      color: #555;
      margin-top: 6px;
      letter-spacing: .5px
    }

    .value-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 18px;
      margin-top: 18px
    }

    .value-card {
      background: #fafafa;
      border-left: 4px solid #b91c1c;
      padding: 20px;
      border-radius: 8px
    }

    .value-card h3 {
      font-size: 17px;
      font-weight: 700;
      margin: 0 0 6px;
      color: #111
    }

    .value-card p {
      font-size: 14px;
      color: #555;
      margin: 0;
      line-height: 1.6
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 32px;
      margin-top: 24px
    }

    @media (max-width:820px) {
      .contact-grid {
        grid-template-columns: 1fr
      }
    }

    .contact-info-list {
      list-style: none;
      padding: 0;
      margin: 0
    }

    .contact-info-list li {
      display: flex;
      gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid #f0f0f0
    }

    .contact-info-list i {
      font-size: 22px;
      color: #b91c1c;
      flex-shrink: 0;
      margin-top: 2px
    }

    .contact-info-list strong {
      display: block;
      font-size: 13px;
      color: #888;
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 2px
    }

    .contact-info-list span {
      font-size: 16px;
      color: #222;
      font-weight: 600
    }

    .contact-form {
      background: #fafafa;
      border-radius: 14px;
      padding: 28px
    }

    .contact-form label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #333;
      margin: 14px 0 6px;
      text-transform: uppercase;
      letter-spacing: .5px
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      border: 1px solid #e4e4e4;
      border-radius: 10px;
      padding: 12px 14px;
      font-size: 15px;
      background: #fff;
      font-family: inherit;
      transition: .2s
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: #b91c1c;
      box-shadow: 0 0 0 3px rgba(185, 28, 28, .12)
    }

    .contact-form button {
      margin-top: 18px;
      width: 100%;
      background: linear-gradient(135deg, #b91c1c, #7f1d1d);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 14px;
      font-weight: 700;
      font-size: 16px;
      cursor: pointer;
      transition: .2s
    }

    .contact-form button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px -10px rgba(185, 28, 28, .6)
    }

    .map-embed {
      margin-top: 24px;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid #eee
    }

    .map-embed iframe {
      width: 100%;
      height: 340px;
      border: 0;
      display: block
    }

    /* Category page */
    .cat-layout {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 28px;
      margin: 24px auto;
      max-width: 1300px;
      padding: 0 16px
    }

    @media (max-width:980px) {
      .cat-layout {
        grid-template-columns: 1fr
      }
    }

    .cat-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 18px;
      padding-bottom: 14px;
      border-bottom: 2px solid #b91c1c
    }

    .cat-title {
      font-family: "Noto Serif Devanagari", serif;
      font-size: 32px;
      font-weight: 800;
      color: #111;
      margin: 0
    }

    .cat-pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px
    }

    .cat-pill {
      background: #fff;
      border: 1px solid #fecaca;
      color: #b91c1c;
      font-weight: 600;
      font-size: 13px;
      padding: 6px 14px;
      border-radius: 999px;
      text-decoration: none;
      transition: .2s
    }

    .cat-pill:hover,
    .cat-pill.active {
      background: #b91c1c;
      color: #fff;
      border-color: #b91c1c
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 20px
    }

    .news-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 4px 20px -8px rgba(0, 0, 0, .1);
      transition: .25s;
      display: flex;
      flex-direction: column
    }

    .news-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px -10px rgba(0, 0, 0, .18)
    }

    .news-card .thumb {
      aspect-ratio: 16/10;
      background: #eee center/cover no-repeat;
      position: relative
    }

    .news-card .badge-cat {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #b91c1c;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 4px;
      text-transform: uppercase
    }

    .news-card .body {
      padding: 14px 16px 18px;
      flex: 1;
      display: flex;
      flex-direction: column
    }

    .news-card h3 {
      font-size: 16px;
      font-weight: 700;
      line-height: 1.4;
      margin: 0 0 8px;
      color: #111
    }

    .news-card .meta {
      margin-top: auto;
      font-size: 12px;
      color: #888;
      display: flex;
      gap: 10px
    }

    .sidebar-box {
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 4px 20px -10px rgba(0, 0, 0, .1);
      padding: 20px;
      margin-bottom: 20px
    }

    .sidebar-box h4 {
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #b91c1c;
      margin: 0 0 14px;
      padding-bottom: 10px;
      border-bottom: 2px solid #fee2e2
    }

    .cat-list {
      list-style: none;
      padding: 0;
      margin: 0
    }

    .cat-list li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px dashed #eee;
      font-size: 15px
    }

    .cat-list li:last-child {
      border-bottom: none
    }

    .cat-list a {
      color: #222;
      text-decoration: none;
      font-weight: 600
    }

    .cat-list a:hover {
      color: #b91c1c
    }

    .cat-count {
      background: #fef2f2;
      color: #b91c1c;
      font-size: 12px;
      font-weight: 700;
      padding: 2px 10px;
      border-radius: 999px
    }

    .must-read {
      display: flex;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px dashed #eee
    }

    .must-read:last-child {
      border-bottom: none
    }

    .must-read img {
      width: 70px;
      height: 70px;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0
    }

    .must-read .mr-cat {
      font-size: 11px;
      color: #b91c1c;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .5px
    }

    .must-read h5 {
      font-size: 14px;
      font-weight: 600;
      line-height: 1.4;
      margin: 4px 0 0;
      color: #111
    }

    .pagination-row {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin: 30px 0 10px;
      flex-wrap: wrap
    }

    .pagination-row a {
      min-width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: #fff;
      border: 1px solid #e5e5e5;
      color: #222;
      font-weight: 600;
      text-decoration: none;
      padding: 0 12px
    }

    .pagination-row a.active,
    .pagination-row a:hover {
      background: #b91c1c;
      color: #fff;
      border-color: #b91c1c
    }

    /* ===== Footer redesign overrides ===== */
    .footer-bottom-row {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 18px 0 8px;
      border-top: 1px solid rgba(255, 255, 255, .08);
      margin-top: 12px;
    }

    .footer-bottom-row .footer-copy {
      text-align: center;
      color: #bcbcbc;
      font-size: 14px;
    }

    .footer-cats .fcat .fb-social {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    .footer-cats .fcat .fb-social span {
      width: 100%;
      font-size: 12px;
      letter-spacing: 1px;
      color: #aaa;
      margin-bottom: 4px;
    }

    .footer-cats .fcat .fb-social .soc {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #1f1f1f;
      color: #fff;
      transition: transform .2s, background .2s;
    }

    .footer-cats .fcat .fb-social .soc:hover {
      transform: translateY(-2px)
    }

    .footer-cats .fcat .fb-social .soc-wa {
      background: #25D366
    }

    .footer-cats .fcat .fb-social .soc-fb {
      background: #1877F2
    }

    .footer-cats .fcat .fb-social .soc-x {
      background: #000
    }

    .footer-cats .fcat .fb-social .soc-rss {
      background: #f26522
    }

    .footer-cats .fcat .fb-social .soc-yt {
      background: #FF0000
    }

    .footer-bottom-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      padding: 15px 0;
      border-top: 1px solid #ddd;
      gap: 10px;
    }

    .footer-copy {
      font-size: 14px;
      color: #555;
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-links a {
      text-decoration: none;
      color: #fff;
      font-size: 14px;
      transition: color .3s ease;
    }

    .footer-links a:hover {
      color: #d40000;
    }

    .footer-links span {
      color: #999;
    }

    .wpcf7 p {
      margin: 0 !important;
    }

    .wpcf7 br {
      display: none !important;
    }

    .contact-form textarea {
      max-height: 100px;
    }

    .wpcf7-spinner {
      display: none;
    }