/* ==========================================================================
   BHARAT INTEGRITY FORUM NEWS — Design Tokens
   Pulled straight from the logo: saffron/green tricolor arc, navy wordmark,
   red "NEWS" ribbon, sky-blue globe.
   ========================================================================== */
:root {
  --navy: #0B1F4D;
  --navy-deep: #071433;
  --navy-light: #14306E;
  --saffron: #FF9933;
  --green: #128807;
  --red: #D62828;
  --red-deep: #A81D1D;
  --gold: #FFC845;
  --sky: #E8F3FC;
  --ink: #16233F;
  --paper: #F5F8FC;
  --white: #FFFFFF;

  --font-display: 'Poppins', 'Noto Sans Devanagari', sans-serif;
  --font-body: 'Noto Sans Devanagari', 'Inter', sans-serif;

  --radius: 14px;
  --shadow-soft: 0 10px 30px rgba(11, 31, 77, 0.10);
  --shadow-card: 0 6px 20px rgba(11, 31, 77, 0.08);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 .5em;
  line-height: 1.25;
}

.container {
  max-width: var(--container);
  margin: 20px auto;
  padding: 0 16px;
  width: 100%;
}

/* Full width container without padding */
.container-fluid {
  max-width: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Signature motif: the tricolor "swoosh" ribbon from the logo
   ========================================================================== */
.tricolor-ribbon {
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg,
      var(--saffron) 0%, var(--saffron) 32%,
      var(--white) 32%, var(--white) 36%,
      var(--green) 36%, var(--green) 68%,
      var(--navy) 68%, var(--navy) 100%);
  background-size: 200% 100%;
  animation: ribbonFlow 6s linear infinite;
}

@keyframes ribbonFlow {
  0% {
    background-position: 0% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ==========================================================================
   HEADER - Updated with sidebar support
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.top-bar {
  background: linear-gradient(90deg, var(--saffron), var(--gold) 40%, var(--green) 70%, var(--navy) 100%);
  color: var(--navy-deep);
  font-size: .82rem;
  width: 100%;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 16px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.top-bar .tagline {
  font-weight: 700;
  letter-spacing: .3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar .tagline .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--navy-deep);
  display: inline-block;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar-right .social-mini {
  display: flex;
  gap: 10px;
}

.top-bar-right .social-mini a {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(11, 31, 77, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
}

.top-bar-right .social-mini a:hover {
  background: rgba(252, 253, 254, 0.3);
  transform: translateY(-2px);
}

.top-bar-right .social-mini svg {
  width: 13px;
  height: 13px;
  fill: var(--navy-deep);
}

#topDate {
  font-weight: 600;
  color: #e2e8f4;
}

.main-nav {
  background: var(--white);
  box-shadow: 0 2px 14px rgba(11, 31, 77, .06);
  width: 100%;
}

.main-nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 16px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.brand-logo {
  height: 56px;
  width: auto;
  transition: height .3s ease;
}

.site-header.shrink .brand-logo {
  height: 44px;
}

.site-header.shrink .main-nav-inner {
  padding: 6px 16px;
}

/* ===== NAV DROPDOWN (Desktop) ===== */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  color: var(--ink);
  text-decoration: none;
  padding: 8px 2px;
  display: inline-block;
  font-weight: 600;
  font-size: .98rem;
  transition: color 0.3s ease;
  cursor: pointer;
  position: relative;
}

.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
  transition: width .3s ease;
}

.nav-dropdown-toggle:hover::after {
  width: 100%;
}

.nav-dropdown-toggle:hover {
  color: var(--navy);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 195px;
  border-radius: var(--radius);
  padding: 0.5rem 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(11, 31, 77, 0.08);
  z-index: 1000;
  margin-top: 4px;
  padding: 0px 15px;
  margin-left: -64px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.5rem;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 153, 51, 0.08);
  color: var(--navy);
  padding-left: 2rem;
}

.nav-dropdown-menu a.active {
  background: rgba(255, 153, 51, 0.12);
  color: var(--navy);
  font-weight: 600;
}

/* Show dropdown on hover for desktop */
@media (min-width: 992px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    display: block;
  }
}

/* ===== MOBILE SIDEBAR ===== */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -340px;
  width: 320px;
  height: 100%;
  background: var(--navy-deep);
  z-index: 9999;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 40px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-sidebar::-webkit-scrollbar {
  width: 4px;
}

.mobile-sidebar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.mobile-sidebar::-webkit-scrollbar-thumb {
  background: var(--saffron);
  border-radius: 4px;
}

.mobile-sidebar.open {
  left: 0;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-light) 100%);
  position: sticky;
  top: 0;
  z-index: 10;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.sidebar-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.sidebar-close {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: all 0.3s ease;
  line-height: 1;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-close:hover {
  background: rgba(255, 215, 0, 0.15);
  transform: rotate(90deg);
  color: var(--gold);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 0.25rem;
}

.sidebar-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
  border-left: 3px solid transparent;
}

.sidebar-nav a:hover {
  background: rgba(255, 215, 0, 0.08);
  color: var(--gold);
  padding-left: 1.25rem;
  border-left-color: var(--saffron);
}

.sidebar-nav a.active {
  background: rgba(255, 215, 0, 0.12);
  color: var(--gold);
  border-left-color: var(--saffron);
}

.sidebar-nav .sidebar-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.5rem 0;
}

/* ===== NAV OVERLAY ===== */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 100;
  margin-left: 8px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
  background: var(--saffron);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
  background: var(--saffron);
}

.hamburger:hover span {
  background: var(--saffron);
}

/* ===== NAV LINKS (Desktop) ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  position: relative;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 0px;
  font-size: .88rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
  transition: width .3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--navy);
}

/* ==========================================================================
   TICKER BAR
   ========================================================================== */
.ticker-bar {
  background: var(--red);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  width: 100%;
}

.ticker-label {
  background: var(--navy-deep);
  color: var(--white);
  font-weight: 700;
  font-size: .82rem;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.ticker-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: 1.2s ease-in-out infinite;
}

@keyframes blink {
  50% {
    opacity: .25;
  }
}

.ticker-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  padding: 8px 0;
  animation: tickerScroll 28s linear infinite;
  color: var(--white);
  font-size: .88rem;
  font-weight: 500;
  /* Add GPU acceleration */
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0%) translateZ(0);
  }

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

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

@keyframes tickerScroll {
  0% {
    transform: translateX(0%);
  }

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

/* ==========================================================================
   TICKER BAR - MOBILE FIX
   ========================================================================== */
@media (max-width: 576px) {
  .ticker-label {
    padding: 8px 4px;
    width: 130px;
    font-size: 0.7rem;
    justify-content: center;
    flex-shrink: 0;
  }

  .ticker-label .label-text {
    font-size: 0.65rem;
  }

  .ticker-label::before {
    width: 6px;
    height: 6px;
  }

  .ticker-track {
    animation: tickerScroll 10s linear infinite !important;
    gap: 40px;
    font-size: 0.78rem;
    padding: 6px 0;
  }
}

/* Extra Small Screens */
@media (max-width: 400px) {
  .ticker-label {
    width: 100px;
    padding: 6px 3px;
    font-size: 0.6rem;
  }

  .ticker-label .label-text {
    font-size: 0.55rem;
  }

  .ticker-track {
    animation: tickerScroll 8s linear infinite !important;
    gap: 30px;
    font-size: 0.7rem;
    padding: 5px 0;
  }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablet & Mobile */
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .main-nav-inner {
    gap: 12px;
  }

  .top-bar .tagline {
    font-size: .72rem;
  }

  .top-bar-right .social-mini {
    display: none;
  }

  .top-bar-right #topDate {
    font-size: .7rem;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .mobile-sidebar {
    display: none !important;
  }

  .nav-overlay {
    display: none !important;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .mobile-sidebar {
    width: 65%;
    left: -100%;
  }

  .sidebar-header {
    padding: 1rem 1rem 0.75rem;
  }

  .sidebar-logo {
    height: 40px;
  }

  .sidebar-nav {
    padding: 1rem;
  }

  .sidebar-nav a {
    padding: 0.6rem 0.8rem;
    font-size: 0.95rem;
  }

  .hamburger span {
    width: 24px;
    height: 2.5px;
  }

  .container {
    padding: 0 12px;
  }

  .top-bar-inner,
  .main-nav-inner {
    padding: 6px 12px;
  }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(214, 40, 40, .35);
}

.btn-primary:hover {
  background: var(--red-deep);
  box-shadow: 0 12px 26px rgba(214, 40, 40, .45);
}

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-gold:hover {
  background: #ffd766;
}

.btn-reporter {
  background: var(--red);
  color: var(--white);
  padding: 10px 22px;
  font-size: .88rem;
  box-shadow: 0 6px 16px rgba(214, 40, 40, .35);
}

.btn-reporter:hover {
  background: var(--red-deep);
}

/* ==========================================================================
   HERO (home)
   ========================================================================== */
.hero {
  position: relative;
  background: radial-gradient(circle at 78% 20%, rgba(255, 153, 51, .12), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(18, 136, 7, .12), transparent 40%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 70px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .4px;
  color: var(--gold);
  margin-bottom: 18px;
  animation: fadeInUp .7s ease both;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  animation: fadeInUp .7s .1s ease both;
}

.hero h1 span {
  color: var(--gold);
}

.hero p.lead {
  color: rgba(255, 255, 255, .8);
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 30px;
  animation: fadeInUp .7s .2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp .7s .3s ease both;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeInUp .8s .3s ease both;
}

.globe-ring {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1/1;
}

.globe-ring .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(255, 153, 51, .4);
  animation: spin 24s linear infinite;
}

.globe-ring .ring.ring2 {
  inset: 30px;
  border-color: rgba(18, 136, 7, .4);
  animation-duration: 18s;
  animation-direction: reverse;
}

.globe-ring .core {
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 30px rgba(11, 31, 77, .25), var(--shadow-soft);
  overflow: hidden;
}

.globe-ring .core img {
  width: 78%;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .2));
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.orbit-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(214, 40, 40, .2);
  animation: orbit 6s linear infinite;
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(190px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(190px) rotate(-360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Sections shared
   ========================================================================== */
section {
  /* padding: 80px 0; */
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 46px;
}

.section-head .eyebrow {
  background: rgba(11, 31, 77, .06);
  border-color: rgba(11, 31, 77, .12);
  color: var(--navy);
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.section-head p {
  color: #586583;
}

.bg-navy {
  background: var(--navy-deep);
  color: var(--white);
}

.bg-navy h2,
.bg-navy .section-head p {
  color: var(--white);
}

.bg-white-alt {
  background: var(--white);
  margin-bottom: 20px;
}

/* Category / Icon cards */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
  border-top: 4px solid transparent;
}

.cat-card:nth-child(4n+1) {
  border-color: var(--saffron);
}

.cat-card:nth-child(4n+2) {
  border-color: var(--green);
}

.cat-card:nth-child(4n+3) {
  border-color: var(--navy);
}

.cat-card:nth-child(4n+4) {
  border-color: var(--red);
}

.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.cat-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sky);
  color: var(--navy);
  font-size: 1.5rem;
}

.cat-card h4 {
  margin-bottom: 4px;
  font-size: 1.02rem;
}

.cat-card p {
  font-size: .85rem;
  color: #68738d;
  margin: 0;
}

/* News cards */
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.news-thumb {
  height: 170px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: .8rem;
  overflow: hidden;
}

.news-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 153, 51, .25), transparent 50%, rgba(18, 136, 7, .25));
}

.news-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  z-index: 2;
}

.news-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.news-date {
  font-size: .78rem;
  color: #8a93a8;
  font-weight: 600;
}

.news-body h4 {
  font-size: 1.02rem;
  margin: 0;
}

.news-body p {
  font-size: .88rem;
  color: #5c6680;
  margin: 0;
  flex: 1;
}

.news-readmore {
  font-size: .85rem;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-readmore::after {
  content: '→';
  transition: transform .2s ease;
}

.news-card:hover .news-readmore::after {
  transform: translateX(4px);
}

/* CTA banner (reporter join) */
.cta-banner {
  position: relative;
  border-radius: 22px;
  padding: 50px 40px;
  background: linear-gradient(120deg, var(--navy-deep), var(--navy) 55%, var(--navy-light));
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: conic-gradient(var(--saffron), var(--white), var(--green), var(--navy), var(--saffron));
  opacity: .15;
  filter: blur(10px);
  animation: spin 14s linear infinite;
}

.cta-banner h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.cta-banner p {
  color: rgba(255, 255, 255, .75);
  margin: 0;
  max-width: 460px;
}

/* Stats */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.stat-item {
  text-align: center;
}

.stat-item .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-item .lbl {
  font-size: .88rem;
  color: rgba(255, 255, 255, .75);
  margin-top: 4px;
}

/* Values (About) */
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform .3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-card .glyph {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
}

.value-card:nth-child(1) .glyph {
  background: linear-gradient(135deg, var(--saffron), #ffb35c);
}

.value-card:nth-child(2) .glyph {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.value-card:nth-child(3) .glyph {
  background: linear-gradient(135deg, var(--green), #1fae12);
}

.value-card h4 {
  font-size: 1.1rem;
}

.value-card p {
  font-size: .9rem;
  color: #5c6680;
}

/* Mission/vision split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.split .art {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--sky), #cfe6f7);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}

.split .art img {
  width: 60%;
}

.about-block h2 {
  font-size: 1.7rem;
}

.about-block p {
  color: #586583;
}

.check-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .95rem;
  color: var(--ink);
}

.check-list .tick {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  margin-top: 2px;
}

/* Services */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid #ecf0f7;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}

.service-card .num {
  font-weight: 700;
  color: var(--saffron);
  font-size: .85rem;
  letter-spacing: 1px;
}

.service-card h4 {
  margin: 10px 0 8px;
  font-size: 1.12rem;
}

.service-card p {
  font-size: .9rem;
  color: #5c6680;
  margin: 0;
}

/* Pricing (reporter plans) */
.plan-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  border-top: 5px solid var(--navy);
  transition: transform .3s ease, box-shadow .3s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.plan-card.featured {
  border-color: var(--red);
  transform: scale(1.04);
}

/* .plan-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 999px;
} */

.plan-card h4 {
  font-size: 1.05rem;
}

.plan-card .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--navy);
  margin: 12px 0;
}

.plan-card .price span {
  font-size: .9rem;
  color: #8a93a8;
  font-weight: 500;
}

.plan-card ul {
  text-align: left;
  margin: 18px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-card ul li {
  font-size: .88rem;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.plan-card ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
}

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--navy-deep);
  color: var(--white);
  border-radius: 20px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  overflow: hidden;
}

.contact-info-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 153, 51, .25), transparent 70%);
}

.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-row .ic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-row h5 {
  margin: 0 0 4px;
  font-size: .92rem;
  color: var(--gold);
}

.contact-row p {
  margin: 0;
  font-size: .9rem;
  color: rgba(255, 255, 255, .85);
}

.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 34px 30px;
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-grid .full {
  grid-column: 1/-1;
}

.form-card label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid #e2e8f4;
  font-family: var(--font-body);
  font-size: .92rem;
  transition: border-color .2s ease;
  background: var(--paper);
}

.form-card input:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--saffron);
}

.form-card textarea {
  resize: vertical;
  min-height: 110px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .85);
  position: relative;
}

.footer-top {
  padding: 64px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 36px;
}

.footer-brand-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 10px 16px;
  margin-bottom: 18px;
  width: 100%;
}

.footer-brand-box img {
  height: 90px;
  width: 100%;
}

.footer-desc {
  font-size: .9rem;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, transform .25s ease;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

.footer-social a:hover {
  background: var(--saffron);
  transform: translateY(-4px);
}

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 36px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s ease, transform .2s ease;
}

.footer-col ul a::before {
  content: '›';
  color: var(--gold);
  font-weight: 700;
}

.footer-col ul a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact-item .ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.footer-contact-item p {
  margin: 0;
  font-size: .88rem;
  color: rgba(255, 255, 255, .75);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 18px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  max-width: var(--container);
  margin: 0 auto;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom strong {
  color: var(--white);
}

.footer-bottom .credit strong {
  color: var(--gold);
}

.footer-bottom .credit a {
  color: var(--gold);
  text-decoration: none;
  transition: color .3s ease;
}

.footer-bottom .credit a:hover {
  color: var(--saffron);
}

/* Mobile */
@media (max-width:768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 18px 12px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 1200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(18, 136, 7, .45);
  animation: pulseWA 2.2s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

@keyframes pulseWA {

  0%,
  100% {
    box-shadow: 0 8px 22px rgba(18, 136, 7, .45);
  }

  50% {
    box-shadow: 0 8px 30px rgba(18, 136, 7, .7), 0 0 0 10px rgba(18, 136, 7, .12);
  }
}

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

  .hero-visual {
    order: -1;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .grid-2,
  .split,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

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

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1.in-view {
  transition-delay: .1s;
}

.reveal.delay-2.in-view {
  transition-delay: .2s;
}

.reveal.delay-3.in-view {
  transition-delay: .3s;
}

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

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

  .cta-banner {
    padding: 36px 24px;
  }

  .container {
    padding: 0 12px;
  }
}

/* ===================================================== */
/* ================ SIDEBAR USER PROFILE ================ */
/* ===================================================== */

.sidebar-user {
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.05), rgba(255, 255, 255, 0.02));
}

.sidebar-user-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sidebar-user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.sidebar-user-details {
  flex: 1;
  min-width: 0;
}

.sidebar-user-name {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.sidebar-user-email {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 400;
  margin-top: 2px;
  word-break: break-all;
}

.sidebar-user-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}

.status-dot.active {
  background: #2ecc71;
}

.status-dot.offline {
  background: #e74c3c;
}

.status-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 500;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

/* Sidebar Navigation Items */
.sidebar-nav-dashboard,
.sidebar-nav-settings,
.sidebar-nav-profile,
.sidebar-nav-logout {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.mobile-sidebar .sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  /* Icon aur text ke beech spacing */
}

.mobile-sidebar .sidebar-nav a i {
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.sidebar-nav-dashboard:hover,
.sidebar-nav-settings:hover,
.sidebar-nav-profile:hover {
  background: rgba(255, 215, 0, 0.08);
  color: #ffd700;
  padding-left: 20px;
}

.sidebar-nav-logout {
  color: rgba(231, 76, 60, 0.8);
}

.sidebar-nav-logout:hover {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  padding-left: 20px;
}

.sidebar-nav-dashboard.active {
  background: rgba(255, 215, 0, 0.12);
  color: #ffd700;
}

.sidebar-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 8px 16px;
}

/* Sidebar Brand Text */
.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.sidebar-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.sidebar-brand-title {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.sidebar-brand-sub {
  font-weight: 400;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
}

/* Sidebar Social Icons */
.sidebar-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding: 0 16px;
}

.sidebar-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sidebar-social a:hover {
  background: rgba(255, 215, 0, 0.12);
  transform: translateY(-3px);
}

.sidebar-social a svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.6);
  transition: fill 0.3s ease;
}

.sidebar-social a:hover svg {
  fill: #ffd700;
}

/* Reporter Button in Sidebar */
.sidebar-reporter-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  margin: 8px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  justify-content: center;
}

.sidebar-reporter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
  color: #fff;
}

.sidebar-reporter-btn span {
  font-size: 16px;
}

/* Responsive Sidebar */
@media (max-width: 768px) {
  .sidebar-user {
    padding: 16px 16px 12px;
  }

  .sidebar-user-avatar {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .sidebar-user-name {
    font-size: 14px;
  }

  .sidebar-user-email {
    font-size: 11px;
  }

  .sidebar-brand-title {
    font-size: 13px;
  }

  .sidebar-brand-sub {
    font-size: 10px;
  }

  .sidebar-nav-dashboard,
  .sidebar-nav-settings,
  .sidebar-nav-profile,
  .sidebar-nav-logout {
    padding: 10px 14px;
    font-size: 13px;
  }

  .sidebar-social a {
    width: 32px;
    height: 32px;
  }

  .sidebar-social a svg {
    width: 14px;
    height: 14px;
  }

  .sidebar-reporter-btn {
    padding: 10px 14px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .sidebar-user {
    padding: 12px 14px 10px;
  }

  .sidebar-user-avatar {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .sidebar-user-name {
    font-size: 13px;
  }

  .sidebar-brand-title {
    font-size: 12px;
  }

  .sidebar-brand-sub {
    font-size: 9px;
  }

  .sidebar-nav-dashboard,
  .sidebar-nav-settings,
  .sidebar-nav-profile,
  .sidebar-nav-logout {
    padding: 8px 12px;
    font-size: 12px;
  }

  .sidebar-social {
    gap: 8px;
  }

  .sidebar-social a {
    width: 28px;
    height: 28px;
  }

  .sidebar-social a svg {
    width: 12px;
    height: 12px;
  }
}