/* =========================================================
   বরুড়া উপজেলা জনকল্যাণ সমিতি, ঢাকা — ওয়েবসাইট স্টাইলশীট
   রঙগুলো লোগো থেকে নেওয়া: কমলা, আকাশি, সবুজ, লাল, নেভি
   ========================================================= */

:root {
  --orange: #F5901E;
  --orange-dark: #D97706;
  --sky: #29ABE2;
  --green: #1C9B4A;
  --red: #E63946;
  --navy: #2B2E83;

  --bg: #FFFDF9;
  --bg-soft: #FFF4E6;
  --card-bg: #FFFFFF;
  --text: #2A2A2A;
  --text-muted: #6B6B6B;
  --border: #EFE2CF;

  --radius: 14px;
  --shadow: 0 4px 18px rgba(43, 46, 131, 0.08);
  --shadow-hover: 0 10px 28px rgba(43, 46, 131, 0.16);

  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", Tahoma, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
}

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

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

button {
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}

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

h1, h2, h3, h4 {
  font-family: "Hind Siliguri", "Noto Sans Bengali", sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin: 0 0 14px;
}

h1 { font-size: clamp(48px, 4vw, 60px); }
h2 { font-size: clamp(22px, 3vw, 30px); }
h3 { font-size: 20px; }

p { margin: 0 0 14px; color: var(--text); }

.section {
  padding: 60px 0;
}
.section-soft { background: var(--bg-soft); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.section-head .eyebrow {
  display: inline-block;
  color: var(--orange-dark);
  font-weight: 700;
  letter-spacing: .5px;
  font-size: 14px;
  background: #FFF1DC;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.section-head p { color: var(--text-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 6px 16px rgba(245,144,30,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(245,144,30,.45); }
.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,253,249,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 56px; width: 56px; object-fit: contain; }
.brand .brand-text { line-height: 1.3; }
.brand .brand-bn { font-weight: 700; color: var(--navy); font-size: 17px; display: block; }
.brand .brand-en { font-weight: 500; color: var(--text-muted); font-size: 12px; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--bg-soft);
  color: var(--orange-dark);
}

.nav-toggle {
  display: none;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 10px; }
}

/* ---------- নেভিগেশন ড্রপডাউন (সদস্যবৃন্দ: সাধারণ সদস্য / আজীবন সদস্য) ---------- */
.nav-drop { position: relative; }
.nav-drop-label {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  cursor: default;
  white-space: nowrap;
}
.nav-drop-label .caret { font-size: 10px; opacity: .7; }
.nav-drop:hover .nav-drop-label,
.nav-drop:focus-within .nav-drop-label,
.nav-drop.active .nav-drop-label {
  background: var(--bg-soft);
  color: var(--orange-dark);
}
.nav-drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
  padding: 8px;
  min-width: 190px;
  z-index: 250;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
  display: block;
}
.nav-drop-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
  white-space: nowrap;
}
.nav-drop-menu a:hover,
.nav-drop-menu a.active {
  background: var(--bg-soft);
  color: var(--orange-dark);
}
@media (max-width: 900px) {
  .nav-drop-menu {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 14px;
    margin-top: 2px;
  }
  .nav-drop-menu a { padding: 10px; font-size: 14px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 90px;
  background:
    radial-gradient(circle at 15% 20%, rgba(41,171,226,.16), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(245,144,30,.18), transparent 45%),
    radial-gradient(circle at 60% 90%, rgba(28,155,74,.14), transparent 40%),
    var(--bg);
  text-align: center;
}
.hero .hero-logo { width: 200px; height: 200px; object-fit: contain; margin: 0 auto 22px; }
.hero h1 { max-width: 800px; margin-left: auto; margin-right: auto; margin-bottom: 14px;}
.hero .hero-en {
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size:20px;
  letter-spacing: .3px;
}
.hero .lede {
  max-width: 720px;
  margin: 0 auto 28px;
  color: darkgreen;
  font-size: 28px;
}
.hero .hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Quick links / feature grid ---------- */
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}


.feature-card {
  flex: 1 1 230px;
  max-width: 300px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.feature-card .icon {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: #fff;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.feature-card:hover .icon { transform: scale(1.1) rotate(-6deg); }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 15px; margin: 0; }

.ic-orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.ic-sky { background: linear-gradient(135deg, var(--sky), #1c7fb0); }
.ic-green { background: linear-gradient(135deg, var(--green), #167a3a); }
.ic-red { background: linear-gradient(135deg, var(--red), #b8232e); }
.ic-navy { background: linear-gradient(135deg, var(--navy), #1b1d5c); }

/* ---------- People cards (founders / board) ---------- */
.people-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.person-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.person-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.person-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--bg-soft);
}
.person-info { padding: 16px 14px 20px; }
.person-info .p-name { font-weight: 700; color: var(--navy); font-size: 17px; margin-bottom: 2px; }
.person-info .p-role { color: var(--orange-dark); font-weight: 600; font-size: 13px; margin-bottom: 8px; }
.person-info .p-bio { color: var(--text-muted); font-size: 14px; margin: 0; }

/* ---------- History / Timeline ---------- */
.history-flex {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 42px;
  align-items: start;
}
@media (max-width: 850px) { .history-flex { grid-template-columns: 1fr; } }

.history-text p { font-size: 16px; }

.map-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  text-align: center;
  position: sticky;
  top: 100px;
}
.map-box img { border-radius: 10px; margin: 0 auto; }
.map-box .map-caption { margin-top: 12px; font-size: 14px; color: var(--text-muted); }

.timeline {
  border-left: 3px solid var(--orange);
  margin: 30px 0 0 8px;
  padding-left: 26px;
}
.timeline .t-item { position: relative; margin-bottom: 26px; }
.timeline .t-item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--orange);
}
.timeline .t-year { font-weight: 700; color: var(--navy); }

/* ---------- Activities (welfare) ---------- */
.activity-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.activity-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.activity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.activity-card .a-photo { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: var(--bg-soft); }
.activity-card .a-body { padding: 18px 20px 22px; }
.activity-card .a-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.activity-card h3 { margin-bottom: 6px; }
.activity-card p { color: var(--text-muted); font-size: 14.5px; margin: 0; }

/* ---------- Gallery ---------- */
.gallery-year-block { margin-bottom: 50px; }
.gallery-year-block h3 {
  border-bottom: 2px dashed var(--border);
  padding-bottom: 10px;
  margin-bottom: 22px;
}
.gallery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.gallery-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transition: transform .2s ease, box-shadow .2s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery-item figcaption {
  padding: 10px 12px;
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
  border-top: 1px solid var(--border);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20,20,30,.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 30px;
  flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(90vw, 900px); max-height: 72vh; border-radius: 10px; object-fit: contain; }
.lightbox .lb-caption { color: #fff; margin-top: 16px; text-align: center; max-width: 700px; font-size: 15px; }
.lightbox .lb-close {
  position: absolute; top: 22px; right: 26px;
  background: rgba(255,255,255,.15); color: #fff;
  border: none; width: 42px; height: 42px; border-radius: 50%;
  font-size: 22px; cursor: pointer;
}
.lightbox .lb-close:hover { background: rgba(255,255,255,.3); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
}
.contact-card .c-icon-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #fff;
  margin: 0 auto 14px;
}
.contact-card { text-align: center; }
.contact-card h3 { margin-bottom: 6px; font-size: 17px; }
.contact-card p { color: var(--text-muted); margin: 0; }

/* ---------- Placeholder note (editor helper, hidden-ish) ---------- */
.edit-note {
  background: #FFF7E6;
  border: 1px dashed var(--orange);
  color: #8a5a00;
  font-size: 13.5px;
  padding: 10px 14px;
  border-radius: 10px;
  margin: 0 0 22px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #E7E8FF;
  padding: 46px 0 24px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1.3fr .85fr .85fr 1.15fr;
  margin-bottom: 30px;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.footer-brand img { height: 46px; width: 46px; object-fit: contain; background: #fff; border-radius: 50%; padding: 4px; }
.footer-brand .fb-bn { font-weight: 700; font-size: 16px; }
.footer-brand .fb-en { font-size: 12px; color: #B9BBEE; }
.site-footer h4 { color: #fff; font-size: 15px; margin-bottom: 12px; }
.site-footer a { color: #CFD1F7; display: block; padding: 5px 0; font-size: 14.5px; }
.site-footer a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 18px;
  text-align: center;
  font-size: 13px;
  color: #AEB0E8;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }



/* সভাপতি + সাধারণ সম্পাদক — আলাদা লাইনে */
.board-top-row{
  grid-column: 1 / -1;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:26px;
  margin-bottom:26px;
}
.board-top-row .person-card{
  flex:0 1 240px;
}

/* =========================================================
   প্রিমিয়াম আপডেট: হিরো ব্যানার, স্ক্রল অ্যানিমেশন, নিউজ/গ্যালারি
   প্রিভিউ, ফুটার কন্টাক্ট/সোশ্যাল, ফ্লোটিং কন্টাক্ট বাটন
   ========================================================= */

/* ---------- Hero banner (হোমপেজ — শুধু ছবি স্লাইডার, টেক্সট নিচে ব্যাজ সেকশনে) ---------- */
.hero-banner {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.3s ease;
}
.hero-slide.active {
  opacity: 1;
  animation: heroKenBurns 10s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.13); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,22,60,.08) 0%, rgba(16,18,55,.12) 55%, rgba(9,10,36,.42) 100%);
}

.hero-dots {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none; cursor: pointer; padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.hero-dot.active { background: #fff; transform: scale(1.2); }
.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.16);
  color: #fff; border: none;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 20px; cursor: pointer; z-index: 3;
  backdrop-filter: blur(4px);
  transition: background .2s ease;
}
.hero-nav:hover { background: rgba(255,255,255,.32); }
.hero-nav.prev { left: 18px; }
.hero-nav.next { right: 18px; }

/* ---------- হিরো ব্যাজ সেকশন (ব্যানারের নিচে লোগো/নাম/হেডিং — ব্যাজ স্টাইল ওভারল্যাপ) ---------- */
.hero-badge-section {
  position: relative;
  text-align: center;
  padding: 0 20px 54px;
  background:
    radial-gradient(circle at 15% 20%, rgba(41,171,226,.16), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(245,144,30,.18), transparent 45%),
    var(--bg);
}
.hero-badge {
  margin-top: -70px;
  position: relative;
  z-index: 5;
}
.hero-badge .hero-badge-logo {
  width: 130px; height: 130px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(43,46,131,.25), 0 0 0 6px #fff;
  margin: 0 auto;
}
.hero-badge-section h1 {
  max-width: 800px;
  margin: 22px auto 10px;
}
.hero-badge-section .hero-en {
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: .3px;
}
.hero-badge-section .lede {
  max-width: 720px;
  margin: 0 auto 26px;
  color: darkgreen;
  font-size: clamp(17px, 2.2vw, 22px);
}
.hero-badge-section .hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 700px) {
  .hero-banner { min-height: 220px; }
  .hero-badge { margin-top: -46px; }
  .hero-badge .hero-badge-logo { width: 86px; height: 86px; padding: 8px; box-shadow: 0 8px 20px rgba(43,46,131,.25), 0 0 0 4px #fff; }
  .hero-badge-section { padding: 0 16px 40px; }
  .hero-badge-section h1 { font-size: clamp(22px, 6.5vw, 28px); line-height: 1.3; margin: 14px auto 6px; }
  .hero-badge-section .hero-en { font-size: 13px; margin-bottom: 8px; }
  .hero-badge-section .lede { font-size: 15px; margin-bottom: 20px; padding: 0 6px; }
  .hero-badge-section .hero-actions { gap: 10px; }
  .hero-badge-section .hero-actions .btn { padding: 10px 18px; font-size: 14px; }
  /* মোবাইলে তীর বাটন সরিয়ে দেওয়া হলো — ডট দিয়েই স্লাইড বদলানো যাবে */
  .hero-nav { display: none; }
  .hero-dots { bottom: 12px; }
}
@media (max-width: 400px) {
  .hero-banner { min-height: 180px; }
  .hero-badge .hero-badge-logo { width: 72px; height: 72px; }
  .hero-badge-section h1 { font-size: clamp(20px, 6.8vw, 24px); }
}

/* ---------- Scroll reveal animation ---------- */
.reveal {
  opacity: 0;
  translate: 0 28px;
  transition: opacity .7s ease, translate .7s ease;
}
.reveal.in-view { opacity: 1; translate: 0 0; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; translate: 0 0; transition: none; }
  .hero-slide.active { animation: none; }
}

/* ---------- হোমপেজ: সাম্প্রতিক কার্যক্রম / নিউজ ---------- */
.news-grid { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* ---------- হোমপেজ: গ্যালারি প্রিভিউ ---------- */
.home-gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.home-gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  transition: box-shadow .2s ease;
}
.home-gallery-item:hover { box-shadow: var(--shadow-hover); }
.home-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.home-gallery-item:hover img { transform: scale(1.09); }
.home-gallery-item .hg-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 12px 10px;
  background: linear-gradient(0deg, rgba(10,11,38,.75), transparent);
  color: #fff;
  font-size: 12.5px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.home-gallery-item:hover .hg-caption { opacity: 1; transform: translateY(0); }

/* ---------- ফুটার: যোগাযোগ + সোশ্যাল ---------- */
.footer-contact p {
  margin: 0 0 10px;
  font-size: 13.5px;
  color: #CFD1F7;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
}
.footer-contact p span.fc-ico { flex-shrink: 0; }
.footer-contact a { color: #CFD1F7; }
.footer-contact a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .2s ease, transform .2s ease;
}
.footer-social a:hover { background: var(--orange); transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; }

/* ---------- ফ্লোটিং WhatsApp / কল বাটন ---------- */
.floating-contact {
  position: fixed;
  right: 20px; bottom: 20px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 500;
}
.fab-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.fab-btn:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 12px 28px rgba(0,0,0,.32); }
.fab-whatsapp { background: #25D366; animation: fabPulse 2.6s ease-out infinite; }
.fab-call { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); font-size: 22px; }
@keyframes fabPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 500px) {
  .floating-contact { right: 14px; bottom: 14px; gap: 10px; }
  .fab-btn { width: 48px; height: 48px; }
}

/* =========================================================
   সদস্যবৃন্দ (members-general.html / members-lifetime.html)
   ছবি + ক্রমিক নং, নাম, পিতা, পেশা, ঠিকানা, রক্তের গ্রুপ, মোবাইল
   ========================================================= */
.member-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.member-full-card {
  display: flex;
  gap: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.member-full-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.member-full-card .mf-photo {
  width: 110px; height: 130px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--bg-soft);
  flex-shrink: 0;
}
.member-full-card .mf-info { flex: 1; min-width: 0; }
.member-full-card .mf-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.member-full-card .mf-serial {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.member-full-card .mf-name { font-weight: 700; color: var(--navy); font-size: 18px; }
.member-full-card .mf-deceased {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-soft);
  padding: 3px 10px;
  border-radius: 999px;
}
.member-full-card .mf-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 7px 24px;
}
.member-full-card .mf-row { font-size: 14px; color: var(--text); line-height: 1.5; }
.member-full-card .mf-label { color: var(--text-muted); font-weight: 600; margin-right: 4px; }
@media (max-width: 560px) {
  .member-full-card { flex-direction: column; align-items: center; text-align: center; }
  .member-full-card .mf-photo { width: 96px; height: 96px; border-radius: 50%; }
  .member-full-card .mf-header { justify-content: center; }
  .member-full-card .mf-details { grid-template-columns: 1fr; text-align: left; }
}

/* =========================================================
   সংখ্যার জন্য আলাদা ফন্ট (Baloo Da 2) — সাইটজুড়ে সব সংখ্যায়
   হালকা টাইপফেস পরিবর্তন, আর কিছু জায়গায় বোল্ড/রঙিন হাইলাইট
   ========================================================= */
.num {
  font-family: "Baloo Da 2", "Hind Siliguri", sans-serif;
}
.t-year .num,
.fc-term .num,
#footer-year .num {
  font-weight: 700;
  color: var(--orange-dark);
}
