/* =====================================================================
   Sreesreethakur Anukulchandra Satsang, Himaitpur-Pabna
   Shared stylesheet — palette sampled from the official emblem
   ===================================================================== */

:root {
  /* Emblem colours */
  --green:        #00A848;   /* outer ring / land */
  --green-dark:   #007A35;
  --green-deep:   #045A2A;
  --green-light:  #E4F5EA;
  --green-pale:   #F3FAF5;

  --navy:         #282888;   /* Bengali lettering */
  --navy-dark:    #1A1A64;
  --navy-deep:    #121248;
  --navy-light:   #ECECF8;

  --red:          #E82828;   /* the two stars */
  --orange:       #F26A1B;   /* rising sun */
  --orange-light: #FFE6D6;
  --gold:         #F7B32B;
  --cyan:         #21A9C2;   /* water lines */
  --cyan-light:   #E1F5F9;

  /* Neutrals */
  --ink:          #1F2237;
  --muted:        #5D6378;
  --line:         #E4E7EF;
  --bg:           #FBFBF8;
  --white:        #FFFFFF;

  /* Type */
  --font-bn:   'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Open Sans', 'Hind Siliguri', system-ui, sans-serif;

  --radius: 14px;
  --shadow-sm: 0 2px 8px rgba(26, 26, 100, .06);
  --shadow:    0 10px 30px rgba(26, 26, 100, .10);
  --shadow-lg: 0 24px 60px rgba(26, 26, 100, .16);
  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--green-dark); text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.25; font-weight: 700; }
.bn { font-family: var(--font-bn); }
h1.bn, h2.bn, h3.bn, h4.bn, .bn h1, .bn h2, .bn h3 { font-family: var(--font-bn); font-weight: 700; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 90px 0; position: relative; }
.section--tight { padding: 60px 0; }
.section--green { background: var(--green-pale); }
.section--navy { background: var(--navy-light); }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.lead { font-size: 1.12rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px; border-radius: 999px;
  font-weight: 700; font-size: .95rem; letter-spacing: .2px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-green  { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-orange:hover { background: #d95a12; border-color: #d95a12; }
.btn-navy   { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.75); }
.btn-outline-white:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-sm { padding: 9px 18px; font-size: .85rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-dark); color: rgba(255,255,255,.85);
  font-size: .82rem;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 38px; flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-left span i { color: var(--gold); margin-right: 6px; }
.topbar .jaiguru { color: var(--gold); font-family: var(--font-bn); font-weight: 600; letter-spacing: .5px; }
.social { display: flex; gap: 6px; }
.social a {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; background: rgba(255,255,255,.1); transition: .25s;
}
.social a:hover { background: var(--green); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 900;
  box-shadow: 0 1px 0 var(--line);
  border-bottom: 4px solid var(--green);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 8px 24px rgba(26,26,100,.10); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 84px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo {
  width: 62px; height: 62px; border-radius: 50%; flex: none;
  padding: 3px; background: #fff;
  box-shadow: 0 0 0 2px var(--green), 0 4px 12px rgba(0,0,0,.12);
  transition: transform .4s;
}
.brand:hover .brand-logo { transform: rotate(8deg) scale(1.04); }
.brand-name { line-height: 1.15; }
.brand-name .bn-title {
  font-family: var(--font-bn); font-weight: 700; font-size: 1.12rem; color: var(--navy);
  display: block;
}
.brand-name .en-title {
  display: block; font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green-dark); font-weight: 700;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { position: relative; }
.nav > li > a {
  display: block; padding: 10px 14px; border-radius: 8px;
  color: var(--navy); font-weight: 600; font-size: .93rem;
  position: relative; transition: color .25s, background .25s;
}
.nav > li > a::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 5px;
  height: 2px; background: var(--orange); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.nav > li > a:hover, .nav > li > a.active { color: var(--green-dark); }
.nav > li > a:hover::after, .nav > li > a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 10px; }
.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 10px;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  align-items: center; justify-content: center; font-size: 1.2rem; color: var(--navy);
}

/* ---------- Section headings ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--orange); font-weight: 700; font-size: .8rem;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px;
}
.eyebrow::before, .eyebrow::after { content: ''; width: 26px; height: 2px; background: var(--orange); }
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: 6px; }
.section-head .bn-sub { font-family: var(--font-bn); color: var(--green-dark); font-weight: 600; font-size: 1.15rem; }
.section-head p:not(.bn-sub) { color: var(--muted); margin-top: 14px; }
.star-divider {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 16px auto 0; color: var(--red); font-size: .85rem;
}
.star-divider::before, .star-divider::after {
  content: ''; width: 48px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green));
}
.star-divider::after { background: linear-gradient(90deg, var(--green), transparent); }
.section-head.left { text-align: left; margin-left: 0; }
.section-head.left .star-divider { justify-content: flex-start; margin-left: 0; }
.section-head.light h2, .section-head.light .bn-sub, .section-head.light p { color: #fff; }
.section-head.light .bn-sub { color: var(--gold); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(242,106,27,.55), transparent 55%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 45%, var(--green-deep) 100%);
  padding: 96px 0 150px;
}
.hero::before {                       /* sun rays */
  content: ''; position: absolute; inset: -40% -20%;
  background: repeating-conic-gradient(from 0deg at 50% 100%, rgba(255,255,255,.07) 0 6deg, transparent 6deg 14deg);
  pointer-events: none;
}
.hero::after {                        /* sun glow */
  content: ''; position: absolute; left: 50%; bottom: -260px; transform: translateX(-50%);
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,179,43,.55) 0%, rgba(242,106,27,.35) 30%, transparent 65%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  padding: 7px 16px; border-radius: 999px; font-size: .82rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 26px;
}
.hero-badge i { color: var(--gold); }
.hero h1 {
  color: #fff; font-family: var(--font-bn); font-weight: 700;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem); line-height: 1.2; margin-bottom: 8px;
  text-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.hero .en-name { font-family: var(--font-head); font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--gold); margin-bottom: 20px; letter-spacing: .5px; }
.hero .slogan {
  font-family: var(--font-bn); font-size: 1.35rem; font-weight: 600;
  display: inline-block; padding: 8px 0; margin-bottom: 20px;
  border-top: 2px solid rgba(247,179,43,.8); border-bottom: 2px solid rgba(247,179,43,.8);
}
.hero p.lead { color: rgba(255,255,255,.88); max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-emblem { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-emblem .ring {
  width: min(380px, 80vw); aspect-ratio: 1; border-radius: 50%;
  background: #fff; padding: 14px;
  box-shadow: 0 0 0 10px rgba(255,255,255,.12), 0 0 0 24px rgba(255,255,255,.06), var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
.hero-emblem .ring img { width: 100%; height: 100%; border-radius: 50%; }
.hero-emblem .orbit {
  position: absolute; width: min(470px, 96vw); aspect-ratio: 1; border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.35); animation: spin 40s linear infinite;
}
.hero-emblem .orbit i {
  position: absolute; color: var(--red); font-size: 1.1rem;
  filter: drop-shadow(0 0 6px rgba(232,40,40,.6));
}
.hero-emblem .orbit i:nth-child(1) { top: -8px; left: 50%; transform: translateX(-50%); }
.hero-emblem .orbit i:nth-child(2) { bottom: -8px; left: 50%; transform: translateX(-50%); }
.hero-emblem .orbit i:nth-child(3) { left: -8px; top: 50%; transform: translateY(-50%); color: var(--gold); }
.hero-emblem .orbit i:nth-child(4) { right: -8px; top: 50%; transform: translateY(-50%); color: var(--gold); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* Wave separators (SVG) */
.wave { position: absolute; left: 0; right: 0; width: 100%; line-height: 0; z-index: 3; }
.wave svg { display: block; width: 100%; height: 70px; }
.wave--bottom { bottom: -1px; }
.wave--top { top: -1px; transform: rotate(180deg); }

/* ---------- Quick info strip ---------- */
.quick-strip { margin-top: -70px; position: relative; z-index: 5; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.quick-card {
  background: #fff; border-radius: var(--radius); padding: 26px 24px;
  box-shadow: var(--shadow); display: flex; gap: 16px; align-items: flex-start;
  border-top: 4px solid var(--green); transition: transform .3s, box-shadow .3s;
}
.quick-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.quick-card:nth-child(2) { border-top-color: var(--orange); }
.quick-card:nth-child(3) { border-top-color: var(--navy); }
.quick-card:nth-child(4) { border-top-color: var(--red); }
.quick-card .ico {
  width: 50px; height: 50px; border-radius: 12px; flex: none;
  display: grid; place-items: center; font-size: 1.3rem; color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}
.quick-card:nth-child(2) .ico { background: linear-gradient(135deg, var(--gold), var(--orange)); }
.quick-card:nth-child(3) .ico { background: linear-gradient(135deg, var(--navy), var(--navy-dark)); }
.quick-card:nth-child(4) .ico { background: linear-gradient(135deg, #ff5d5d, var(--red)); }
.quick-card h4 { font-family: var(--font-body); font-size: 1rem; margin-bottom: 4px; color: var(--navy); }
.quick-card p { font-size: .9rem; color: var(--muted); line-height: 1.5; }
.quick-card .bn { display: block; font-size: .85rem; color: var(--green-dark); font-weight: 600; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  padding: 90px 0 110px;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(242,106,27,.5), transparent 55%),
    linear-gradient(150deg, var(--navy-deep), var(--navy) 50%, var(--green-deep));
}
.page-hero::before {
  content: ''; position: absolute; inset: -40% -20%;
  background: repeating-conic-gradient(from 0deg at 50% 100%, rgba(255,255,255,.06) 0 6deg, transparent 6deg 14deg);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-family: var(--font-bn); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 6px; }
.page-hero .en { font-family: var(--font-head); color: var(--gold); font-size: 1.25rem; }
.breadcrumb {
  display: inline-flex; gap: 10px; align-items: center; margin-top: 22px;
  background: rgba(255,255,255,.12); padding: 7px 18px; border-radius: 999px;
  font-size: .85rem; border: 1px solid rgba(255,255,255,.2);
}
.breadcrumb a { color: #fff; opacity: .85; }
.breadcrumb i { color: var(--gold); font-size: .7rem; }
.breadcrumb span { color: var(--gold); font-weight: 600; }

/* ---------- Cards ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-2 > *, .grid-3 > *, .grid-4 > *, .contact-grid > *, .about-grid > * { min-width: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card {
  background: #fff; border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .3s, box-shadow .3s, border-color .3s; position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--orange));
  transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.card:hover::before { transform: scaleX(1); }
.card .ico {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 20px; color: var(--green-dark);
  background: var(--green-light); box-shadow: inset 0 0 0 2px rgba(0,168,72,.25);
}
.card.orange .ico { color: var(--orange); background: var(--orange-light); box-shadow: inset 0 0 0 2px rgba(242,106,27,.25); }
.card.navy .ico { color: var(--navy); background: var(--navy-light); box-shadow: inset 0 0 0 2px rgba(40,40,136,.25); }
.card.cyan .ico { color: var(--cyan); background: var(--cyan-light); box-shadow: inset 0 0 0 2px rgba(33,169,194,.25); }
.card h3 { font-size: 1.25rem; margin-bottom: 4px; }
.card .bn-h { font-family: var(--font-bn); color: var(--green-dark); font-weight: 600; font-size: .95rem; margin-bottom: 12px; display: block; }
.card p { color: var(--muted); font-size: .95rem; }
.card .time { display: inline-block; margin: 6px 0 12px; color: var(--orange); font-weight: 700; font-size: .88rem; }
.card .link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-weight: 700; color: var(--navy); font-size: .9rem; }
.card .link i { transition: transform .3s; }
.card .link:hover i { transform: translateX(4px); }
.card.center { text-align: center; }
.card.center .ico { margin-left: auto; margin-right: auto; }

/* ---------- About block ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual { position: relative; }
.about-visual .frame {
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid #fff; outline: 3px solid var(--green);
}
.about-visual .years {
  position: absolute; right: -22px; bottom: -22px;
  background: var(--orange); color: #fff; padding: 20px 22px; border-radius: 18px;
  text-align: center; box-shadow: var(--shadow-lg); border: 4px solid #fff;
}
.about-visual .years strong { display: block; font-size: 2.2rem; line-height: 1; font-family: var(--font-head); }
.about-visual .years span { font-size: .8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.about-visual .stamp {
  position: absolute; left: -26px; top: -26px; width: 96px; height: 96px; border-radius: 50%;
  background: #fff; padding: 6px; box-shadow: var(--shadow-lg); outline: 3px solid var(--green);
}
.about-text h3 { font-size: 1.6rem; margin-bottom: 6px; }
.about-text .bn-h { font-family: var(--font-bn); color: var(--green-dark); font-size: 1.1rem; font-weight: 600; margin-bottom: 18px; display: block; }
.about-text p { color: var(--muted); margin-bottom: 14px; }
.check-list { margin: 20px 0 28px; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--ink); }
.check-list li i { color: var(--green); margin-top: 5px; }

/* Placeholder art (used where photos go) */
.ph {
  position: relative; overflow: hidden; display: grid; place-items: center;
  color: #fff; text-align: center; aspect-ratio: 4/3;
  background:
    radial-gradient(ellipse at 50% 115%, rgba(247,179,43,.75), rgba(242,106,27,.4) 35%, transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 55%, var(--green-deep) 100%);
}
.ph::before {
  content: ''; position: absolute; inset: -30%;
  background: repeating-conic-gradient(from 0deg at 50% 100%, rgba(255,255,255,.06) 0 6deg, transparent 6deg 14deg);
}
.ph::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 34%;
  background:
    repeating-linear-gradient(180deg, transparent 0 9px, rgba(33,169,194,.55) 9px 11px);
  -webkit-mask: linear-gradient(180deg, transparent, #000 60%);
          mask: linear-gradient(180deg, transparent, #000 60%);
}
.ph .inner { position: relative; z-index: 1; padding: 20px; }
.ph .inner i { font-size: 3rem; color: var(--gold); margin-bottom: 12px; display: block; }
.ph .inner span { font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; opacity: .8; }
.ph .inner strong { display: block; font-family: var(--font-bn); font-size: 1.1rem; margin-top: 4px; }
.ph--square { aspect-ratio: 1; }
.ph--wide { aspect-ratio: 16/9; }
.ph--tall { aspect-ratio: 3/4; }
.ph--green { background: radial-gradient(ellipse at 50% 115%, rgba(247,179,43,.6), transparent 55%), linear-gradient(160deg, var(--green-dark), var(--green-deep)); }
.ph--orange { background: radial-gradient(ellipse at 50% 115%, rgba(255,255,255,.35), transparent 55%), linear-gradient(160deg, var(--orange), #b9430b); }
.ph--cyan { background: radial-gradient(ellipse at 50% 115%, rgba(247,179,43,.6), transparent 55%), linear-gradient(160deg, var(--cyan), #0b6d80); }

/* ---------- Quote band ---------- */
.quote-band {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  background: linear-gradient(120deg, var(--green-deep), var(--green-dark) 50%, var(--green));
  padding: 80px 0;
}
.quote-band::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-conic-gradient(from 0deg at 50% 130%, rgba(255,255,255,.05) 0 5deg, transparent 5deg 12deg);
}
.quote-band .container { position: relative; z-index: 1; max-width: 860px; }
.quote-band .qmark { font-family: var(--font-head); font-size: 5rem; line-height: .5; color: var(--gold); opacity: .8; margin-bottom: 26px; }
.quote-band blockquote { font-family: var(--font-bn); font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 600; line-height: 1.5; }
.quote-band .en-quote { font-family: var(--font-head); font-style: italic; font-size: 1.1rem; opacity: .9; margin-top: 12px; }
.quote-band cite { display: inline-flex; align-items: center; gap: 12px; margin-top: 26px; font-style: normal; font-weight: 700; color: var(--gold); letter-spacing: .5px; }
.quote-band cite::before, .quote-band cite::after { content: '★'; color: var(--red); font-size: .8rem; }
.quote-band.navy { background: linear-gradient(120deg, var(--navy-deep), var(--navy) 55%, #3a3aa8); }

/* ---------- Events ---------- */
.event-list { display: grid; gap: 18px; }
.event {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 24px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 24px; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
}
.event:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.date-badge {
  background: var(--navy); color: #fff; border-radius: 12px; text-align: center; padding: 12px 8px;
  border-bottom: 4px solid var(--orange);
}
.date-badge strong { display: block; font-size: 1.9rem; line-height: 1; font-family: var(--font-head); }
.date-badge span { font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.event h3 { font-size: 1.2rem; margin-bottom: 2px; }
.event .bn-h { font-family: var(--font-bn); color: var(--green-dark); font-weight: 600; font-size: .95rem; }
.event .meta { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: .87rem; margin-top: 8px; }
.event .meta i { color: var(--orange); margin-right: 6px; }
.tag { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: .75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.tag-green { background: var(--green-light); color: var(--green-dark); }
.tag-orange { background: var(--orange-light); color: var(--orange); }
.tag-navy { background: var(--navy-light); color: var(--navy); }
.tag-red { background: #fde3e3; color: var(--red); }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 900px; margin: 0 auto; padding: 10px 0; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--green), var(--gold), var(--navy)); transform: translateX(-50%);
  border-radius: 3px;
}
.tl-item { position: relative; width: 50%; padding: 0 44px 40px 0; }
.tl-item:nth-child(even) { margin-left: 50%; padding: 0 0 40px 44px; }
.tl-item::before {
  content: ''; position: absolute; top: 12px; right: -11px; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 4px solid var(--green); box-shadow: 0 0 0 4px #fff;
}
.tl-item:nth-child(even)::before { right: auto; left: -11px; border-color: var(--orange); }
.tl-item .year { font-family: var(--font-head); color: var(--orange); font-weight: 700; font-size: 1.15rem; }
.tl-item .box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); margin-top: 8px; }
.tl-item h4 { font-size: 1.05rem; margin-bottom: 6px; }
.tl-item p { color: var(--muted); font-size: .93rem; }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line); background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 560px; }
thead th { background: var(--navy); color: #fff; text-align: left; padding: 16px 20px; font-size: .85rem; letter-spacing: 1px; text-transform: uppercase; }
tbody td { padding: 16px 20px; border-top: 1px solid var(--line); vertical-align: top; }
tbody tr:nth-child(even) { background: var(--green-pale); }
tbody td.t { font-weight: 700; color: var(--orange); white-space: nowrap; }
tbody td .bn { display: block; color: var(--green-dark); font-weight: 600; font-size: .9rem; }

/* ---------- Teachings / feature rows ---------- */
.feature-row {
  display: flex; gap: 22px; align-items: flex-start; background: #fff;
  padding: 26px 28px; border-radius: var(--radius); border: 1px solid var(--line);
  border-left: 5px solid var(--green); box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
}
.feature-row:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.feature-row:nth-child(2n) { border-left-color: var(--orange); }
.feature-row:nth-child(3n) { border-left-color: var(--navy); }
.feature-row .num {
  font-family: var(--font-head); font-size: 2.2rem; line-height: 1; color: var(--green-light);
  -webkit-text-stroke: 1.5px var(--green); flex: none; width: 56px;
}
.feature-row:nth-child(2n) .num { color: var(--orange-light); -webkit-text-stroke-color: var(--orange); }
.feature-row:nth-child(3n) .num { color: var(--navy-light); -webkit-text-stroke-color: var(--navy); }
.feature-row h3 { font-size: 1.2rem; margin-bottom: 2px; }
.feature-row .bn-h { font-family: var(--font-bn); color: var(--green-dark); font-weight: 600; font-size: .95rem; display: block; margin-bottom: 8px; }
.feature-row p { color: var(--muted); font-size: .95rem; }

/* ---------- Books ---------- */
.book { display: flex; gap: 18px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm); transition: .3s; }
.book:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.book .cover {
  width: 72px; height: 100px; flex: none; border-radius: 6px 10px 10px 6px;
  background: linear-gradient(160deg, var(--navy), var(--navy-dark)); color: #fff;
  display: grid; place-items: center; font-family: var(--font-bn); font-weight: 700; font-size: .8rem; text-align: center; padding: 6px;
  box-shadow: inset 6px 0 0 rgba(255,255,255,.15), 0 6px 14px rgba(0,0,0,.2);
  border-left: 4px solid var(--gold);
}
.book:nth-child(3n+2) .cover { background: linear-gradient(160deg, var(--green), var(--green-deep)); }
.book:nth-child(3n) .cover { background: linear-gradient(160deg, var(--orange), #a63c07); }
.book h4 { font-family: var(--font-bn); font-size: 1.05rem; margin-bottom: 2px; }
.book p { color: var(--muted); font-size: .88rem; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.g-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); }
.g-item .ph { transition: transform .6s; }
.g-item:hover .ph { transform: scale(1.06); }
.g-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 18px 16px; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(18,18,72,.85));
  font-weight: 600; display: flex; justify-content: space-between; align-items: flex-end;
}
.g-item .cap small { display: block; font-weight: 400; opacity: .8; font-size: .8rem; }
.g-item .cap i { color: var(--gold); }
.filter-bar { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-bar button {
  border: 1px solid var(--line); background: #fff; color: var(--navy); padding: 9px 20px; border-radius: 999px;
  font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: .25s; font-size: .88rem;
}
.filter-bar button:hover, .filter-bar button.active { background: var(--green); color: #fff; border-color: var(--green); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 30px 20px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); color: #fff; }
.stat strong { display: block; font-family: var(--font-head); font-size: 2.6rem; color: var(--gold); line-height: 1.1; }
.stat span { font-size: .85rem; letter-spacing: 1px; text-transform: uppercase; opacity: .85; }
.stat .bn { display: block; font-size: .95rem; margin-top: 4px; text-transform: none; letter-spacing: 0; opacity: 1; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: 28px; color: #fff;
  background: linear-gradient(120deg, var(--navy-deep), var(--navy) 60%, #3939a6);
  padding: 60px; display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center;
  box-shadow: var(--shadow-lg);
}
.cta-band::after {
  content: ''; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,179,43,.5), rgba(242,106,27,.25) 40%, transparent 70%);
}
.cta-band h2 { color: #fff; font-family: var(--font-bn); font-size: 2rem; margin-bottom: 6px; }
.cta-band .en { color: var(--gold); font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 14px; }
.cta-band p { opacity: .9; max-width: 560px; }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; position: relative; z-index: 1; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.info-box { display: grid; gap: 18px; }
.info-item { display: flex; gap: 18px; align-items: flex-start; background: #fff; padding: 22px; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.info-item .ico { width: 50px; height: 50px; border-radius: 12px; flex: none; display: grid; place-items: center; color: #fff; font-size: 1.2rem; background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.info-item:nth-child(2) .ico { background: linear-gradient(135deg, var(--gold), var(--orange)); }
.info-item:nth-child(3) .ico { background: linear-gradient(135deg, var(--navy), var(--navy-dark)); }
.info-item:nth-child(4) .ico { background: linear-gradient(135deg, var(--cyan), #0b6d80); }
.info-item h4 { font-family: var(--font-body); font-size: 1rem; margin-bottom: 4px; }
.info-item p { color: var(--muted); font-size: .93rem; }
.form-card { background: #fff; border-radius: 20px; padding: 40px; box-shadow: var(--shadow); border-top: 5px solid var(--green); }
.form-card h3 { font-size: 1.5rem; margin-bottom: 4px; }
.form-card .bn-h { font-family: var(--font-bn); color: var(--green-dark); font-weight: 600; display: block; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: 6px; color: var(--navy); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: .95rem; color: var(--ink); background: var(--bg); transition: .25s; outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green); background: #fff; box-shadow: 0 0 0 4px rgba(0,168,72,.12); }
.map-box { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 4px solid #fff; outline: 2px solid var(--green); }
.map-box iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Newsletter ---------- */
.newsletter { display: flex; gap: 10px; max-width: 520px; }
.newsletter input { flex: 1; padding: 13px 18px; border-radius: 999px; border: 1.5px solid var(--line); font-family: var(--font-body); font-size: .95rem; outline: none; }
.newsletter input:focus { border-color: var(--green); }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: var(--navy-deep); color: rgba(255,255,255,.75); margin-top: 90px; }
.site-footer .wave--top svg path { fill: var(--navy-deep); }
.footer-main { padding: 90px 0 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.footer-brand img { width: 64px; height: 64px; border-radius: 50%; background: #fff; padding: 3px; box-shadow: 0 0 0 2px var(--green); }
.footer-brand .bn { color: #fff; font-weight: 700; font-size: 1.05rem; line-height: 1.25; }
.footer-brand small { display: block; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; font-size: .7rem; font-weight: 700; margin-top: 3px; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 1rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.site-footer h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; background: var(--orange); border-radius: 3px; }
.site-footer ul li { margin-bottom: 9px; }
.site-footer ul a { color: rgba(255,255,255,.75); transition: .25s; display: inline-flex; gap: 8px; align-items: center; }
.site-footer ul a i { font-size: .6rem; color: var(--green); }
.site-footer ul a:hover { color: var(--gold); padding-left: 4px; }
.site-footer p { font-size: .93rem; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; }
.footer-contact li i { color: var(--gold); margin-top: 5px; width: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: .85rem; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }
.footer-bottom a { color: var(--gold); }
.footer-bottom .stars { color: var(--red); letter-spacing: 6px; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--green); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(12px); transition: .3s; z-index: 800; border: none; cursor: pointer; font-size: 1rem;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--orange); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

/* ---------- Accordion (FAQ) ---------- */
.acc { border: 1px solid var(--line); border-radius: 12px; background: #fff; margin-bottom: 12px; overflow: hidden; }
.acc summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary i { color: var(--green); transition: transform .3s; }
.acc[open] summary { background: var(--green-pale); }
.acc[open] summary i { transform: rotate(45deg); }
.acc .body { padding: 0 22px 20px; color: var(--muted); font-size: .95rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .quick-grid, .grid-4, .stats { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-emblem { order: -1; margin-bottom: 20px; }
  .hero-emblem .ring { width: min(260px, 70vw); }
  .hero-emblem .orbit { width: min(330px, 86vw); }
  .cta-band { grid-template-columns: 1fr; padding: 44px 32px; }
  .cta-band .actions { justify-content: flex-start; }
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%; background: #fff; flex-direction: column; align-items: stretch;
    padding: 12px 16px 20px; gap: 2px; box-shadow: 0 16px 30px rgba(26,26,100,.15); border-top: 1px solid var(--line);
    display: none;
  }
  .nav.open { display: flex; }
  .nav > li > a { padding: 12px 14px; }
  .nav > li > a::after { display: none; }
  .nav-cta { margin: 10px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .about-grid, .contact-grid, .grid-2 { grid-template-columns: 1fr; }
  .about-visual { margin: 30px 20px 30px 26px; }
  .timeline::before { left: 12px; }
  .tl-item, .tl-item:nth-child(even) { width: 100%; margin-left: 0; padding: 0 0 32px 44px; }
  .tl-item::before, .tl-item:nth-child(even)::before { left: 1px; right: auto; }
  .event { grid-template-columns: 80px 1fr; }
  .event > .tag-col { grid-column: 2; }
  .topbar-left span:nth-child(2) { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .quick-grid, .grid-3, .grid-4, .stats, .gallery-grid, .footer-main { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter { flex-wrap: wrap; }
  .newsletter input, .newsletter .btn { width: 100%; justify-content: center; }
  .form-card { padding: 28px 22px; }
  .hero { padding: 70px 0 120px; }
  .quick-strip { margin-top: -50px; }
  .brand-name .bn-title { font-size: .95rem; }
  .brand-logo { width: 52px; height: 52px; }
  .topbar-left { display: none; }
  .topbar .container { justify-content: center; }
  .about-visual .years { right: -6px; bottom: -16px; padding: 14px 16px; }
  .about-visual .stamp { left: -12px; top: -16px; width: 72px; height: 72px; }
  .cta-band { padding: 34px 22px; }
}

/* ---------- News & Notices ---------- */
.news-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.news-featured {
  display: grid; grid-template-columns: 1.1fr .9fr; background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line); margin-bottom: 30px;
}
.news-featured .ph { aspect-ratio: auto; min-height: 320px; height: 100%; }
.news-featured .body { padding: 36px; }
.news-featured h2 { font-size: 1.6rem; margin: 10px 0 6px; }
.news-featured .bn-h { font-family: var(--font-bn); color: var(--green-dark); font-weight: 600; display: block; margin-bottom: 12px; }
.news-featured p { color: var(--muted); }
.news-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: var(--muted); }
.news-meta i { color: var(--orange); margin-right: 5px; }
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.news-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.news-card .thumb { position: relative; }
.news-card .thumb .ph { aspect-ratio: 16/9; }
.news-card .thumb .date-badge { position: absolute; left: 16px; top: 16px; padding: 8px 10px; min-width: 60px; }
.news-card .thumb .date-badge strong { font-size: 1.4rem; }
.news-card .body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.news-card h3 { font-size: 1.15rem; margin: 8px 0 4px; }
.news-card .bn-h { font-family: var(--font-bn); color: var(--green-dark); font-weight: 600; font-size: .92rem; display: block; margin-bottom: 8px; }
.news-card p { color: var(--muted); font-size: .93rem; flex: 1; }
.news-card .link { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-weight: 700; color: var(--navy); font-size: .88rem; }
.news-card .link i { transition: transform .3s; }
.news-card .link:hover i { transform: translateX(4px); }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); color: var(--navy); font-weight: 700; transition: .25s; }
.pagination a.active, .pagination a:hover { background: var(--green); color: #fff; border-color: var(--green); }

.sidebar { display: grid; gap: 26px; position: sticky; top: 110px; }
.widget { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); overflow: hidden; }
.widget-head { background: var(--navy); color: #fff; padding: 16px 22px; display: flex; align-items: center; justify-content: space-between; border-bottom: 3px solid var(--orange); }
.widget-head h3 { color: #fff; font-family: var(--font-body); font-size: .9rem; letter-spacing: 1.5px; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.widget-head h3 i { color: var(--gold); }
.widget-head .bn { font-size: .85rem; color: var(--gold); font-weight: 600; }
.widget-head.green { background: var(--green-dark); }
.widget .widget-body { padding: 8px 0; }
.notice { display: flex; gap: 14px; padding: 14px 22px; border-bottom: 1px solid var(--line); align-items: flex-start; transition: background .25s; }
.notice:last-child { border-bottom: 0; }
.notice:hover { background: var(--green-pale); }
.notice .d { flex: none; width: 52px; text-align: center; background: var(--navy-light); border-radius: 10px; padding: 6px 4px; line-height: 1.1; }
.notice .d strong { display: block; font-family: var(--font-head); font-size: 1.2rem; color: var(--navy); }
.notice .d span { font-size: .68rem; letter-spacing: 1px; text-transform: uppercase; color: var(--orange); font-weight: 700; }
.notice h4 { font-family: var(--font-bn); font-size: 1rem; color: var(--ink); margin-bottom: 2px; line-height: 1.35; }
.notice small { color: var(--muted); font-size: .8rem; }
.notice .pin { color: var(--red); font-size: .7rem; margin-left: 6px; }
.notice.urgent .d { background: #fde3e3; }
.notice.urgent .d strong { color: var(--red); }
.widget .foot { padding: 12px 22px 16px; border-top: 1px solid var(--line); text-align: center; }
.widget .foot a { font-weight: 700; font-size: .88rem; color: var(--green-dark); }
.dl-list li { display: flex; align-items: center; gap: 12px; padding: 12px 22px; border-bottom: 1px solid var(--line); font-size: .92rem; }
.dl-list li:last-child { border-bottom: 0; }
.dl-list li i.fa-file-pdf { color: var(--red); font-size: 1.2rem; }
.dl-list li a { color: var(--ink); font-weight: 600; flex: 1; }
.dl-list li small { color: var(--muted); }
.ticker { background: var(--orange); color: #fff; overflow: hidden; }
.ticker .container { display: flex; align-items: center; gap: 16px; min-height: 44px; }
.ticker .label { flex: none; background: var(--red); padding: 4px 14px; border-radius: 999px; font-size: .75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.ticker .track { overflow: hidden; flex: 1; white-space: nowrap; }
.ticker .track span { display: inline-block; padding-right: 60px; font-family: var(--font-bn); font-weight: 600; animation: ticker 28s linear infinite; }
.ticker .track span i { color: var(--gold); margin: 0 10px; font-size: .6rem; vertical-align: middle; }
@keyframes ticker { from { transform: translateX(100%); } to { transform: translateX(-100%); } }
.ticker .track:hover span { animation-play-state: paused; }

@media (max-width: 1024px) { .news-layout { grid-template-columns: 1fr; } .sidebar { position: static; } }
@media (max-width: 700px) { .news-featured, .news-grid { grid-template-columns: 1fr; } .news-featured .ph { min-height: 220px; } .news-featured .body { padding: 26px 22px; } }

/* ---------- Language toggle ---------- */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 2px; padding: 3px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); border-radius: 999px;
  cursor: pointer; font-family: var(--font-body); font-size: .74rem; font-weight: 700; color: rgba(255,255,255,.75);
}
.lang-toggle span { padding: 3px 10px; border-radius: 999px; transition: .25s; line-height: 1.4; }
.lang-toggle span[data-l="bn"] { font-family: var(--font-bn); font-size: .8rem; }
.lang-toggle span.on { background: var(--gold); color: var(--navy-dark); }
.lang-toggle:hover span:not(.on) { color: #fff; }

/* ---------- Bengali mode typography ---------- */
html[lang="bn"] body, html[lang="bn"] .btn, html[lang="bn"] input, html[lang="bn"] textarea, html[lang="bn"] select,
html[lang="bn"] .filter-bar button, html[lang="bn"] .quick-card h4, html[lang="bn"] .info-item h4,
html[lang="bn"] .site-footer h4, html[lang="bn"] .widget-head h3 { font-family: var(--font-bn); }
html[lang="bn"] h1, html[lang="bn"] h2, html[lang="bn"] h3, html[lang="bn"] h4,
html[lang="bn"] .page-hero .en, html[lang="bn"] .hero .en-name, html[lang="bn"] .cta-band .en { font-family: var(--font-bn); font-weight: 700; }
html[lang="bn"] .eyebrow, html[lang="bn"] .tag, html[lang="bn"] .hero-badge, html[lang="bn"] .site-footer h4,
html[lang="bn"] .widget-head h3, html[lang="bn"] .stat span, html[lang="bn"] thead th, html[lang="bn"] .ticker .label,
html[lang="bn"] .about-visual .years span { letter-spacing: 0; text-transform: none; }
html[lang="bn"] .section-head .bn-sub { font-family: var(--font-head); font-style: italic; font-weight: 600; }
html[lang="bn"] .bn-h, html[lang="bn"] .quick-card .bn, html[lang="bn"] .stat .bn, html[lang="bn"] td .bn { font-family: var(--font-body); }
html[lang="bn"] .section-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
html[lang="bn"] .brand-name .en-title { letter-spacing: 1px; }

/* ---------- Payment number list (donate card) ---------- */
.pay-list { margin: 14px 0 10px; display: grid; gap: 8px; text-align: left; }
.pay-list li { display: flex; align-items: center; gap: 12px; background: var(--orange-light); border-radius: 10px; padding: 10px 14px; }
.pay-list li i { color: var(--orange); }
.pay-list li span { font-weight: 700; color: var(--navy); font-size: 1.05rem; letter-spacing: .5px; flex: 1; }
.pay-list li small { font-family: var(--font-bn); color: var(--muted); }
.pay-note { font-size: .85rem !important; }
