:root{
  --bg: #0a0f1c;
  --paper: #0f172a;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.14);
  --text: #eef2ff;
  --muted: rgba(238,242,255,.72);
  --accent: #22c55e;
  --accent2:#60a5fa;
  --danger:#ef4444;
  --shadow: 0 18px 50px rgba(0,0,0,.40);
  --shadow2: 0 10px 30px rgba(0,0,0,.28);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: "Noto Serif Bengali", serif;
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 10% 10%, rgba(34,197,94,.20), transparent 52%),
    radial-gradient(1000px 700px at 90% 15%, rgba(96,165,250,.22), transparent 56%),
    radial-gradient(1000px 700px at 50% 110%, rgba(239,68,68,.12), transparent 55%),
    var(--bg);
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{max-width:1120px;margin:0 auto;padding:0 18px}
.main{padding:18px 0 60px}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(10,15,28,.88), rgba(10,15,28,.60));
  border-bottom:1px solid rgba(255,255,255,.10);
}
.header-inner{
  padding:14px 0 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.brand{display:flex;align-items:center;gap:12px}
.brand-mark{
  width:46px;height:46px;border-radius:16px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(34,197,94,.92), rgba(96,165,250,.85));
  color:#06101c;font-weight:900;font-size:22px;
  box-shadow: 0 14px 30px rgba(34,197,94,.16);
}
.brand-title{font-weight:900;font-size:18px;letter-spacing:.2px}
.brand-subtitle{font-size:12px;color:var(--muted);margin-top:2px}

/* Nav */
.nav{display:flex;gap:10px;flex-wrap:wrap}
.nav-link{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid transparent;
  color:var(--muted);
  font-weight:800;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.nav-link:hover{
  transform: translateY(-1px);
  background: rgba(34,197,94,.10);
  border-color: rgba(34,197,94,.22);
  color: var(--text);
}
.nav-link.active{
  background: rgba(96,165,250,.12);
  border-color: rgba(96,165,250,.24);
  color: var(--text);
}

/* Justice bar */
.justice-bar{
  width:100%;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
  background: linear-gradient(90deg, rgba(239,68,68,.85), rgba(239,68,68,.55), rgba(239,68,68,.85));
}
.justice-track{
  display:inline-flex;
  white-space:nowrap;
  align-items:center;
  gap:80px;
  padding:10px 0;
  animation: scroll-right 14s linear infinite;
}
.justice-track span{
  font-weight:900;
  font-size:16px;
  letter-spacing:.6px;
  text-shadow: 0 0 10px rgba(255,255,255,.22);
}
@keyframes scroll-right{
  0%{transform: translateX(-100%)}
  100%{transform: translateX(100%)}
}

/* Cards */
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
}

/* Hero grid */
.hero-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap:16px;
}
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
}

.card-hero{padding:18px 18px 16px}
.h1{margin:0;font-size:28px;line-height:1.15;font-weight:900}
.lead{margin:10px 0 0;color:var(--muted);font-size:15.5px;line-height:1.7}

.bullet{margin-top:12px;display:flex;gap:10px;align-items:flex-start}
.dot{
  width:10px;height:10px;border-radius:999px;
  margin-top:8px;flex:0 0 auto;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 4px rgba(34,197,94,.12);
}
.bullet p{margin:0;color:var(--muted);line-height:1.7}

.cta-row{margin-top:16px;display:flex;gap:12px;flex-wrap:wrap}
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  font-weight:900;
  letter-spacing:.2px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, filter .18s ease;
  will-change: transform;
}
.btn-arrow{opacity:.9}

.btn-primary{
  color:#07121f;
  border-color: rgba(34,197,94,.30);
  background: linear-gradient(135deg, rgba(34,197,94,.95), rgba(96,165,250,.90));
  box-shadow: 0 18px 28px rgba(34,197,94,.18);
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 38px rgba(34,197,94,.24);
  filter: saturate(1.05);
}
.btn-primary:active{transform: translateY(0px)}

.btn-ghost{
  background: rgba(255,255,255,.06);
}
.btn-ghost:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(255,255,255,.22);
}

.mini-note{
  margin-top:12px;
  padding:12px 12px;
  border-radius:16px;
  background: rgba(96,165,250,.10);
  border:1px solid rgba(96,165,250,.18);
  color: rgba(238,242,255,.78);
  line-height:1.65;
  font-size:13px;
}

/* Right side */
.hero-side{display:grid;gap:16px}
.card-image{overflow:hidden}
.image-head{
  padding:14px 14px 10px;
  display:flex;align-items:flex-start;justify-content:space-between;gap:12px;
}
.kicker{font-weight:900;color:rgba(238,242,255,.78);font-size:12px}
.title-sm{font-weight:900;margin-top:4px;line-height:1.35}
.chip{
  font-size:12px;font-weight:900;
  padding:6px 10px;border-radius:999px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.20);
  color: rgba(238,242,255,.92);
  white-space:nowrap;
}
.cover{
  width:100%;
  height:230px;
  object-fit:cover;
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
  transform: scale(1.02);
  transition: transform .5s ease;
}
.card-image:hover .cover{transform: scale(1.06)}
.img-caption{
  padding:10px 14px 14px;
  font-size:12px;color:var(--muted);line-height:1.55;
}

.card-mini{padding:14px}
.mini-title{font-weight:900}
.steps{margin:10px 0 0;padding-left:18px;color:var(--muted);line-height:1.7}
.steps li{margin:6px 0}

/* Gallery */
.gallery-section{margin-top:18px}
.section-head{display:flex;justify-content:space-between;gap:14px;align-items:flex-end;flex-wrap:wrap}
.h2{margin:0;font-size:18px;font-weight:900}
.muted{color:var(--muted);margin:6px 0 0;line-height:1.65}

.thumb-grid{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
@media (max-width: 920px){.thumb-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width: 460px){.thumb-grid{grid-template-columns:1fr}}

.thumb{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  border-radius: 18px;
  padding:0;
  text-align:left;
  overflow:hidden;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.thumb:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(34,197,94,.22);
}
.thumb img{width:100%;height:140px;object-fit:cover}
.thumb span{
  display:block;
  padding:10px 12px;
  color: rgba(238,242,255,.84);
  font-weight:900;
}

/* Info cards */
.info-cards{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
@media (max-width: 980px){.info-cards{grid-template-columns:1fr}}
.info{padding:16px}
.info-icon{font-size:20px}
.info h3{margin:10px 0 6px;font-size:16px;font-weight:900}
.info p{margin:0;color:var(--muted);line-height:1.7}

/* Footer */
.footer{margin-top:18px}
.footer-card{padding:16px;border-radius:18px;background: rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12)}
.footer-title{font-weight:900;margin-bottom:8px}
.footer-actions{margin-top:12px;display:flex;gap:10px;flex-wrap:wrap}
.copyright{margin-top:12px;color:rgba(238,242,255,.55);font-size:12px}

/* Modal */
.modal{position:fixed;inset:0;display:none;z-index:100}
.modal.open{display:block}
.modal-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.62)}
.modal-panel{
  position:absolute;
  left:50%;top:50%;
  transform: translate(-50%,-50%);
  width:min(880px, calc(100% - 28px));
  background: rgba(15,23,42,.92);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
  overflow:hidden;
}
.modal-panel img{width:100%;max-height:70vh;object-fit:contain;background:#060b14}
.modal-caption{padding:10px 12px;color:rgba(238,242,255,.78);font-size:13px;line-height:1.6}
.modal-close{
  position:absolute;right:10px;top:10px;
  width:42px;height:42px;border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color:var(--text);
  font-size:18px;font-weight:900;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease;
}
.modal-close:hover{transform: translateY(-1px);background: rgba(255,255,255,.14)}
/* ===== Shared page header ===== */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.page-title {
  margin: 0;
}

/* ===== Home button (inherits theme colors) ===== */
.home-btn {
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

/* ===== Mobile table wrapper ===== */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ===== Table ===== */
.report-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.report-table th,
.report-table td {
  border: 1px solid currentColor;
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}

/* ===== Image column ===== */
.photo-cell {
  width: 110px;
}

.table-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: block;
  margin: auto;
  border-radius: 4px;
}

/* ===== Mobile tweaks ===== */
@media (max-width: 768px) {
  .report-table th,
  .report-table td {
    font-size: 14px;
    padding: 8px;
  }

  .table-image {
    width: 60px;
    height: 60px;
  }
}