@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Noto+Serif+Bengali:wght@400;600;700;900&display=swap');


/* ============================================================
   GOOGLE FONTS
============================================================ */

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  /* Brand Colors — from reference */
  --fc-green-950: #052e16;
  --fc-green-900: #14532d;
  --fc-green-800: #166534;
  --fc-green-700: #15803d;
  --fc-green-600: #16a34a;
  --fc-green-500: #22c55e;
  --fc-green-400: #4ade80;
  --fc-green-100: #dcfce7;
  --fc-green-50:  #f0fdf4;
  --fc-yellow-600: #ca8a04;
  --fc-yellow-500: #eab308;
  --fc-yellow-400: #facc15;
  --fc-yellow-300: #fde047;
  --fc-slate-950: #020617;
  --fc-slate-900: #0f172a;
  --fc-slate-800: #1e293b;
  --fc-slate-700: #334155;
  --fc-slate-600: #475569;
  --fc-slate-500: #64748b;
  --fc-slate-400: #94a3b8;
  --fc-slate-300: #cbd5e1;
  --fc-slate-200: #e2e8f0;
  --fc-slate-100: #f1f5f9;
  --fc-slate-50:  #f8fafc;
  --fc-white: #ffffff;
  --fc-red-500: #ef4444;
  --fc-blue-500: #3b82f6;

  /* Typography */
  --fc-font-main:   'Hind Siliguri', 'SolaimanLipi', sans-serif;
  --fc-font-serif:  'Noto Serif Bengali', serif;

  /* Shadows */
  --fc-shadow-sm: 0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
  --fc-shadow-md: 0 4px 16px rgba(0,0,0,.15);
  --fc-shadow-lg: 0 10px 40px rgba(0,0,0,.2);
  --fc-shadow-xl: 0 25px 60px rgba(0,0,0,.3);
  --fc-shadow-glow: 0 0 40px rgba(22,163,74,.4);

  /* Easing */
  --fc-ease:        cubic-bezier(0.23, 1, 0.32, 1);
  --fc-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Spacing */
  --fc-section-py: 6rem;
  --fc-container-max: 1280px;
  --fc-container-px: 1.5rem;

  /* Border Radius */
  --fc-radius-sm:   0.5rem;
  --fc-radius-md:   1rem;
  --fc-radius-lg:   1.5rem;
  --fc-radius-xl:   2rem;
  --fc-radius-2xl:  2.5rem;
  --fc-radius-full: 9999px;

  /* Header */
  --header-height: 70px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--fc-font-main);
  background: var(--fc-white);
  color: var(--fc-slate-700);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input, textarea { font-family: var(--fc-font-main); }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute!important; height: 1px; width: 1px; overflow: hidden; }

/* ============================================================
   ANIMATION KEYFRAMES
============================================================ */
@keyframes fc-fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fc-fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fc-scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes fc-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes fc-pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,.4); }
  50%       { box-shadow: 0 0 0 20px rgba(22,163,74,0); }
}
@keyframes fc-spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes fc-hero-ken {
  0%   { transform: scale(1) translate(0,0); }
  50%  { transform: scale(1.08) translate(-1%,-.5%); }
  100% { transform: scale(1) translate(0,0); }
}
@keyframes fc-particle-float {
  0%   { transform: translateY(0) rotate(0deg); opacity: .6; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}
@keyframes fc-ripple {
  0%   { transform: scale(0); opacity: .6; }
  100% { transform: scale(4); opacity: 0; }
}
@keyframes fc-line-grow {
  from { width: 0; }
  to   { width: 80px; }
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(250,204,21,.2); }
  50%      { box-shadow: 0 0 0 6px rgba(250,204,21,.05); }
}

/* ============================================================
   REVEAL ANIMATIONS (Intersection Observer)
============================================================ */
[data-reveal] {
  opacity: 0;
  transition: opacity .8s var(--fc-ease), transform .8s var(--fc-ease);
}
[data-reveal="up"]    { transform: translateY(50px); }
[data-reveal="down"]  { transform: translateY(-50px); }
[data-reveal="left"]  { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="scale"] { transform: scale(.88); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }
[data-reveal-delay="5"] { transition-delay: .5s; }
[data-reveal-delay="6"] { transition-delay: .6s; }

/* ============================================================
   LAYOUT
============================================================ */
.fc-container {
  max-width: var(--fc-container-max);
  margin: 0 auto;
  padding: 0 var(--fc-container-px);
  width: 100%;
}
.fc-section { padding: var(--fc-section-py) 0; position: relative; overflow: hidden; }
.fc-section--gray { background: var(--fc-slate-50); }
.fc-section--dark { background: var(--fc-slate-900); color: var(--fc-white); }

/* Section Header */
.fc-section-header { text-align: center; margin-bottom: 4rem; }
.fc-section-label {
  display: inline-block;
  background: var(--fc-green-100); color: var(--fc-green-700);
  font-size: .75rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; padding: .35rem 1.2rem;
  border-radius: var(--fc-radius-full); margin-bottom: 1rem;
  border: 1px solid rgba(22,163,74,.2);
}
.fc-section-header h2 {
  font-family: var(--fc-font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700; color: var(--fc-slate-900); line-height: 1.25; margin-bottom: 1rem;
}
.fc-section--dark .fc-section-header h2 { color: var(--fc-white); }
.fc-section-line {
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--fc-green-500), var(--fc-yellow-400));
  margin: 0 auto .75rem; border-radius: var(--fc-radius-full);
  transition: width 1s var(--fc-ease) .3s;
}
.fc-section-header.is-visible .fc-section-line { width: 80px; }
.fc-section-desc { color: var(--fc-slate-500); font-size: .975rem; max-width: 560px; margin: 0 auto; line-height: 1.8; }

/* ============================================================
   PAGE LOADER
============================================================ */
.fc-loader {
  position: fixed; inset: 0; background: var(--fc-green-950);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--fc-ease), visibility .6s;
}
.fc-loader.hidden { opacity: 0; visibility: hidden; }
.fc-loader__inner { text-align: center; color: var(--fc-white); }
.fc-loader__ring {
  width: 60px; height: 60px; border: 3px solid rgba(255,255,255,.1);
  border-top-color: var(--fc-green-500); border-radius: 50%;
  animation: fc-spin-slow .8s linear infinite; margin: 0 auto 1.5rem;
}
.fc-loader__text { font-family: var(--fc-font-serif); font-size: 1.1rem; color: rgba(255,255,255,.7); }

/* ============================================================
   TOP BAR
============================================================ */
.fc-topbar {
  background: var(--fc-green-950); color: rgba(255,255,255,.8);
  font-size: .8125rem; padding: .5rem 0; position: relative; z-index: 100;
}
.fc-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.fc-topbar__left { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.fc-topbar__left span, .fc-topbar__left a { display: flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.7); transition: color .3s; }
.fc-topbar__left a:hover { color: var(--fc-yellow-400); }
.fc-topbar__right { display: flex; align-items: center; gap: 1rem; }
.fc-topbar__social { display: flex; gap: .5rem; }
.fc-topbar__social a {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.7);
  border-radius: var(--fc-radius-full); font-size: .7rem; transition: all .3s var(--fc-ease);
}
.fc-topbar__social a:hover { background: var(--fc-yellow-500); color: var(--fc-green-950); transform: translateY(-2px); }
.fc-icon-yellow { color: var(--fc-yellow-400); }

/* ============================================================
   NAVIGATION
============================================================ */
.fc-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.96); backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(22,163,74,.1); transition: all .3s var(--fc-ease);
}
.fc-nav.scrolled { background: rgba(255,255,255,.99); box-shadow: 0 4px 30px rgba(0,0,0,.08); }
.fc-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem var(--fc-container-px); max-width: var(--fc-container-max); margin: 0 auto; gap: 1rem;
}
.fc-nav__logo { display: flex; align-items: center; gap: .85rem; text-decoration: none; flex-shrink: 0; }
.fc-nav__logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--fc-green-700), var(--fc-green-500));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--fc-white); font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(22,163,74,.4); transition: transform .4s var(--fc-ease-bounce); flex-shrink: 0; overflow: hidden;
}
.fc-nav__logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.fc-nav__logo:hover .fc-nav__logo-icon { transform: rotate(-8deg) scale(1.1); }
.fc-nav__logo-text h1 { font-family: var(--fc-font-serif); font-size: 1.15rem; font-weight: 700; color: var(--fc-green-900); line-height: 1.1; }
.fc-nav__logo-text h1 span { color: var(--fc-green-600); }
.fc-nav__logo-text p { font-size: .7rem; color: var(--fc-slate-500); letter-spacing: .05em; }
.fc-nav__menu { display: flex; align-items: center; gap: .25rem; }
.fc-nav-link {
  display: inline-flex; align-items: center; padding: .5rem .85rem;
  font-size: .9rem; font-weight: 500; color: var(--fc-slate-600);
  border-radius: var(--fc-radius-sm); transition: all .3s var(--fc-ease); white-space: nowrap; position: relative;
}
.fc-nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%;
  width: 0; height: 2px; background: var(--fc-green-600);
  border-radius: var(--fc-radius-full); transition: all .3s var(--fc-ease); transform: translateX(-50%);
}
.fc-nav-link:hover, .fc-nav-link.active { color: var(--fc-green-700); background: var(--fc-green-50); }
.fc-nav-link:hover::after, .fc-nav-link.active::after { width: 60%; }
.fc-nav__cta {
  background: linear-gradient(135deg, var(--fc-green-700), var(--fc-green-600)) !important;
  color: var(--fc-white) !important; padding: .5rem 1.2rem; border-radius: var(--fc-radius-full);
  font-weight: 600; box-shadow: 0 4px 14px rgba(22,163,74,.4); transition: all .3s var(--fc-ease) !important;
}
.fc-nav__cta::after { display: none !important; }
.fc-nav__cta:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 20px rgba(22,163,74,.5) !important; }
.fc-hamburger {
  display: none; align-items: center; justify-content: center; width: 42px; height: 42px;
  background: var(--fc-green-50); border: 1px solid rgba(22,163,74,.2);
  border-radius: var(--fc-radius-sm); cursor: pointer; font-size: 1.1rem; color: var(--fc-green-700); transition: all .3s; flex-shrink: 0;
}
.fc-hamburger:hover { background: var(--fc-green-100); }

/* Mobile Nav Drawer */
.fc-nav__mobile {
  display: none; position: fixed; top: 0; right: -100%;
  width: min(320px, 85vw); height: 100vh; background: var(--fc-white);
  box-shadow: -10px 0 50px rgba(0,0,0,.15); z-index: 300; transition: right .4s var(--fc-ease);
  overflow-y: auto; padding: 2rem 1.5rem; flex-direction: column; gap: .5rem;
}
.fc-nav__mobile.open { right: 0; }
.fc-nav__mobile-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 299;
  backdrop-filter: blur(4px); opacity: 0; transition: opacity .3s;
}
.fc-nav__mobile-overlay.open { opacity: 1; }
.fc-nav__mobile-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--fc-slate-100);
}
.fc-nav__mobile-close {
  width: 36px; height: 36px; background: var(--fc-slate-100); border: none; border-radius: 50%;
  cursor: pointer; font-size: 1rem; color: var(--fc-slate-600); display: flex; align-items: center; justify-content: center; transition: all .3s;
}
.fc-nav__mobile-close:hover { background: var(--fc-red-500); color: var(--fc-white); transform: rotate(90deg); }
.fc-nav__mobile a {
  display: flex; align-items: center; gap: .75rem; padding: .85rem 1rem;
  color: var(--fc-slate-700); border-radius: var(--fc-radius-sm); font-weight: 500; transition: all .3s; font-size: 1rem;
}
.fc-nav__mobile a:hover, .fc-nav__mobile a.active { background: var(--fc-green-50); color: var(--fc-green-700); padding-left: 1.4rem; }
.fc-nav__mobile .fc-nav__cta { background: linear-gradient(135deg, var(--fc-green-700), var(--fc-green-600)) !important; color: var(--fc-white) !important; justify-content: center; margin-top: 1rem; border-radius: var(--fc-radius-full) !important; }

/* ============================================================
   HERO SECTION — Reference Style
============================================================ */
.fc-hero {
  position: relative; height: 100vh; min-height: 600px; max-height: 900px;
  overflow: hidden; background: var(--fc-green-950);
}
.fc-hero__slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s var(--fc-ease);
}
.fc-hero__slide.active { opacity: 1; }
.fc-hero__slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; will-change: transform; }
.fc-hero__slide.active img { animation: fc-hero-ken 12s ease-in-out infinite; }
.fc-hero__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,46,22,.3) 0%, rgba(5,46,22,.5) 40%, rgba(5,46,22,.82) 80%, rgba(5,46,22,.95) 100%);
  z-index: 1;
}
.fc-hero__particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.fc-hero__particle {
  position: absolute; bottom: -20px; width: 6px; height: 6px;
  background: rgba(250,204,21,.5); border-radius: 50%; animation: fc-particle-float linear infinite;
}
.fc-hero__content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2rem var(--fc-container-px); pointer-events: none;
}
.fc-hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(250,204,21,.15); border: 1px solid rgba(250,204,21,.4);
  color: var(--fc-yellow-300); padding: .4rem 1rem; border-radius: var(--fc-radius-full);
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1.5rem; opacity: 0; transform: translateY(20px); transition: all .8s var(--fc-ease) .2s;
}
.fc-hero__slide.active .fc-hero__badge { opacity: 1; transform: translateY(0); }
.fc-hero__badge-dot { width: 7px; height: 7px; background: var(--fc-yellow-400); border-radius: 50%; animation: dotPulse 2s ease-in-out infinite; }
.fc-hero__title {
  font-family: var(--fc-font-serif);
  font-size: clamp(2.2rem, 6vw, 4.5rem); font-weight: 900; color: var(--fc-white);
  line-height: 1.15; margin-bottom: 1.25rem; text-shadow: 0 4px 24px rgba(0,0,0,.4);
  opacity: 0; transform: translateY(30px); transition: all 1s var(--fc-ease) .4s; max-width: 900px;
}
.fc-hero__slide.active .fc-hero__title { opacity: 1; transform: translateY(0); }
.fc-hero__title span { color: var(--fc-yellow-400); }
.fc-hero__subtitle {
  font-size: clamp(.95rem, 2vw, 1.2rem); color: rgba(255,255,255,.8); margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(20px); transition: all 1s var(--fc-ease) .6s; max-width: 600px;
}
.fc-hero__slide.active .fc-hero__subtitle { opacity: 1; transform: translateY(0); }
.fc-hero__actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; pointer-events: all;
  opacity: 0; transform: translateY(20px); transition: all 1s var(--fc-ease) .8s;
}
.fc-hero__slide.active .fc-hero__actions { opacity: 1; transform: translateY(0); }

/* Hero Controls */
.fc-hero__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 0 1.5rem; pointer-events: none;
}
.fc-hero__nav-btn {
  width: 50px; height: 50px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%; color: var(--fc-white); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; pointer-events: all;
  transition: all .3s var(--fc-ease); backdrop-filter: blur(8px);
}
.fc-hero__nav-btn:hover { background: rgba(22,163,74,.6); border-color: var(--fc-green-500); transform: scale(1.1); }
.fc-hero__dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: .6rem;
}
.fc-hero__dot {
  width: 8px; height: 8px; background: rgba(255,255,255,.4);
  border-radius: var(--fc-radius-full); border: none; cursor: pointer; transition: all .4s var(--fc-ease);
}
.fc-hero__dot.active { width: 28px; background: var(--fc-yellow-400); }
.fc-hero__scroll {
  position: absolute; bottom: 2.5rem; right: 2rem; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.6); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  animation: fc-float 3s ease-in-out infinite;
}
.fc-hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent); }

/* ============================================================
   BUTTONS
============================================================ */
.fc-hero .fc-hero-btn, .fc-gallery .fc-hero-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--fc-radius-full);
  font-size: .95rem; font-weight: 600; font-family: var(--fc-font-main);
  cursor: pointer; border: 2px solid transparent; transition: all .3s var(--fc-ease);
  white-space: nowrap; position: relative; overflow: hidden;
}
.fc-hero .fc-hero-btn::before, .fc-gallery .fc-hero-btn::before {
  content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.15);
  transform: translateX(-100%); transition: transform .4s var(--fc-ease); border-radius: inherit;
}
.fc-hero .fc-hero-btn:hover::before, .fc-gallery .fc-hero-btn:hover::before { transform: translateX(0); }
.fc-hero-btn-primary { background: linear-gradient(135deg, var(--fc-green-700), var(--fc-green-600)); color: var(--fc-white); box-shadow: 0 6px 20px rgba(22,163,74,.4); }
.fc-hero-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(22,163,74,.5); }
.fc-hero-btn-outline { background: transparent; border-color: rgba(255,255,255,.5); color: var(--fc-white); }
.fc-hero-btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--fc-white); transform: translateY(-3px); }
.fc-hero-btn-yellow { background: linear-gradient(135deg, var(--fc-yellow-500), var(--fc-yellow-400)); color: var(--fc-green-950); box-shadow: 0 6px 20px rgba(234,179,8,.4); }
.fc-hero-btn-yellow:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(234,179,8,.5); }

/* ============================================================
   COMMITTEE SECTION
============================================================ */
.fc-committee { background: var(--fc-slate-50); padding: var(--fc-section-py) 0; position: relative; overflow: hidden; }
.fc-committee::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,.05) 0%, transparent 70%); pointer-events: none;
}

/* Tabs */
.fc-committee__tabs {
  display: flex; gap: .75rem; justify-content: center; margin-bottom: 3rem; flex-wrap: wrap;
}
.fc-committee__tab {
  display: flex; align-items: center; gap: .6rem;
  padding: .75rem 1.75rem; border-radius: var(--fc-radius-full);
  border: 2px solid var(--fc-slate-200); background: transparent;
  color: var(--fc-slate-600); font-family: var(--fc-font-main);
  font-size: .9375rem; font-weight: 600; cursor: pointer; transition: all .3s var(--fc-ease);
}
.fc-committee__tab:hover { border-color: var(--fc-green-400); color: var(--fc-green-600); }
.fc-committee__tab.active { background: var(--fc-green-600); border-color: var(--fc-green-600); color: #fff; box-shadow: 0 4px 20px rgba(22,163,74,.3); }

.fc-committee__panel { display: none; }
.fc-committee__panel.active { display: block; animation: fc-fadeInUp .5s var(--fc-ease) both; }

/* Committee Grid */
.fc-committee__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* Member Card */
.fc-committee-card {
  position: relative; background: var(--fc-white); border: 1px solid var(--fc-slate-200);
  border-radius: var(--fc-radius-xl); overflow: hidden;
  transition: all .4s cubic-bezier(.175,.885,.32,1.275); cursor: pointer;
}
.fc-committee-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--fc-shadow-xl); border-color: rgba(22,163,74,.3); }
.fc-committee-card__shine {
  position: absolute; top: -100%; left: -100%; width: 300%; height: 300%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.07) 50%, transparent 60%);
  pointer-events: none; transition: all .6s ease;
}
.fc-committee-card:hover .fc-committee-card__shine { top: -50%; left: -50%; }

/* Photo area */
.fc-committee-card__photo {
  position: relative; width: 100%; aspect-ratio: 1; overflow: hidden;
  background: linear-gradient(135deg, var(--fc-green-800), var(--fc-green-600));
}
.fc-committee-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.fc-committee-card:hover .fc-committee-card__photo img { transform: scale(1.08); }
.fc-committee-card__photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,46,22,.6) 0%, transparent 60%); }
.fc-committee-card__initials {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; font-family: var(--fc-font-serif); font-weight: 700;
  color: rgba(255,255,255,.9); text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

/* Card body */
.fc-committee-card__body { padding: 1.25rem 1.5rem 1.5rem; text-align: center; }
.fc-committee-card__name { font-family: var(--fc-font-serif); font-size: 1.05rem; font-weight: 700; color: var(--fc-slate-900); margin: 0 0 .35rem; }
.fc-committee-card__role {
  display: block; font-size: .8125rem; font-weight: 600;
  color: var(--fc-green-600); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .5rem;
}

/* ============================================================
   GALLERY SECTION
============================================================ */
.fc-gallery { background: var(--fc-white); padding: var(--fc-section-py) 0; overflow: hidden; }
.fc-gallery__filters { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.fc-gallery__filter {
  padding: .4rem 1.1rem; border-radius: var(--fc-radius-full); font-size: .8125rem; font-weight: 600;
  font-family: var(--fc-font-main); cursor: pointer; border: 1.5px solid var(--fc-slate-200);
  background: var(--fc-white); color: var(--fc-slate-600); transition: all .3s var(--fc-ease);
}
.fc-gallery__filter:hover { border-color: var(--fc-green-500); color: var(--fc-green-700); }
.fc-gallery__filter.active { background: var(--fc-green-700); border-color: var(--fc-green-700); color: #fff; }
.fc-gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1rem; }
.fc-gallery__item { border-radius: var(--fc-radius-md); overflow: hidden; position: relative; cursor: pointer; background: var(--fc-slate-100); }
.fc-gallery__item--tall { grid-row: span 2; }
.fc-gallery__item--wide { grid-column: span 2; }
.fc-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--fc-ease); }
.fc-gallery__item:hover img { transform: scale(1.08); }
.fc-gallery__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,46,22,.9) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem; opacity: 0; transition: opacity .4s;
}
.fc-gallery__item:hover .fc-gallery__overlay { opacity: 1; }
.fc-gallery__zoom {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0);
  font-size: 2rem; color: rgba(255,255,255,.9); transition: all .3s var(--fc-ease-bounce); opacity: 0;
}
.fc-gallery__item:hover .fc-gallery__zoom { transform: translate(-50%,-60%) scale(1); opacity: 1; }
.fc-gallery__caption { color: #fff; font-size: .9375rem; font-weight: 600; margin: 0 0 .25rem; }
.fc-gallery__subcaption { color: rgba(255,255,255,.75); font-size: .8125rem; margin: 0; }
.fc-gallery__item.hidden { display: none; }
.fc-gallery__item.visible { animation: fc-fadeInUp .4s ease; }

/* Gallery empty state */
.fc-gallery-empty {
  text-align: center; padding: 4rem 2rem; color: var(--fc-slate-400);
  background: var(--fc-slate-50); border-radius: var(--fc-radius-xl);
  border: 2px dashed var(--fc-slate-200); display: none;
}
.fc-gallery-empty.show { display: block; }
.fc-gallery-empty i { font-size: 3rem; margin-bottom: 1rem; color: var(--fc-slate-300); }

/* Lightbox */
.fc-lightbox {
  position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.95);
  display: flex; align-items: center; justify-content: center; padding: 2rem;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.fc-lightbox.open { opacity: 1; pointer-events: auto; animation: fc-scaleIn .3s var(--fc-ease) both; }
.fc-lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--fc-radius-xl); object-fit: contain; }
.fc-lightbox__close {
  position: absolute; top: 1.5rem; right: 1.5rem; width: 48px; height: 48px;
  background: rgba(255,255,255,.15); border: none; border-radius: 50%; color: #fff;
  font-size: 1.25rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.fc-lightbox__close:hover { background: rgba(255,255,255,.3); }
.fc-lightbox__caption {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.8); font-size: 1rem; text-align: center;
  background: rgba(0,0,0,.5); padding: .5rem 1.5rem; border-radius: var(--fc-radius-full); backdrop-filter: blur(8px);
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.fc-about {
  position: relative; padding: var(--fc-section-py) 0; overflow: hidden;
  background: linear-gradient(135deg, var(--fc-green-950) 0%, #0f172a 50%, var(--fc-green-950) 100%);
  color: var(--fc-white);
}
.fc-about::before { content: ''; position: absolute; top: -100px; right: -100px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(22,163,74,.15) 0%, transparent 70%); pointer-events: none; }
.fc-about::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(250,204,21,.08) 0%, transparent 70%); pointer-events: none; }
.fc-about .fc-section-header h2 { color: var(--fc-white); }
.fc-about .fc-section-label { background: rgba(250,204,21,.15); color: var(--fc-yellow-300); border-color: rgba(250,204,21,.3); }
.fc-about .fc-section-line { background: linear-gradient(90deg, var(--fc-yellow-400), var(--fc-green-400)); }

.fc-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; position: relative; z-index: 1; }
.fc-about__desc { color: rgba(255,255,255,.75); margin-bottom: 2rem; font-size: 1.05rem; line-height: 1.8; }
.fc-about__rules { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; counter-reset: rule-counter; }
.fc-about__rule {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 1.25rem; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--fc-radius-md); transition: all .3s var(--fc-ease);
  counter-increment: rule-counter;
}
.fc-about__rule:hover { background: rgba(255,255,255,.08); transform: translateX(6px); border-color: rgba(22,163,74,.3); }
.fc-about__rule-num { font-family: var(--fc-font-serif); font-size: 1.5rem; font-weight: 700; color: rgba(250,204,21,.4); flex-shrink: 0; line-height: 1; }
.fc-about__rule-text { font-size: .9rem; color: rgba(255,255,255,.75); line-height: 1.6; }
.fc-about__rule-text strong { color: var(--fc-yellow-400); }

/* Info panel */
.fc-about__info-panel { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--fc-radius-xl); padding: 2.5rem; backdrop-filter: blur(10px); }
.fc-about__info-panel h3 { font-family: var(--fc-font-serif); font-size: 1.35rem; color: var(--fc-yellow-400); margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.fc-contact-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.fc-contact-item:last-child { border-bottom: none; }
.fc-contact-item__icon { width: 44px; height: 44px; border-radius: var(--fc-radius-md); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.fc-contact-item__icon.yellow { background: rgba(250,204,21,.15); color: var(--fc-yellow-400); }
.fc-contact-item__icon.blue   { background: rgba(59,130,246,.15); color: var(--fc-blue-500); }
.fc-contact-item__icon.green  { background: rgba(22,163,74,.15); color: var(--fc-green-400); }
.fc-contact-item__label { font-size: .75rem; color: rgba(255,255,255,.4); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .25rem; }
.fc-contact-item__value { font-size: .9rem; color: rgba(255,255,255,.85); line-height: 1.5; }

/* ============================================================
   CONTACT SECTION
============================================================ */
.fc-contact { position: relative; padding: var(--fc-section-py) 0; background: linear-gradient(135deg, var(--fc-slate-900), var(--fc-green-950)); color: var(--fc-white); overflow: hidden; }
.fc-contact__grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; position: relative; z-index: 2; }
.fc-contact__info { display: flex; flex-direction: column; gap: 1.5rem; }
.fc-contact__info-card { display: flex; gap: 1.25rem; align-items: flex-start; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--fc-radius-xl); padding: 1.25rem 1.5rem; transition: all .3s ease; }
.fc-contact__info-card:hover { background: rgba(255,255,255,.08); border-color: rgba(34,197,94,.3); }
.fc-contact__info-icon { width: 48px; height: 48px; border-radius: var(--fc-radius-lg); background: linear-gradient(135deg, var(--fc-green-700), var(--fc-green-600)); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #fff; flex-shrink: 0; }
.fc-contact__info-text h4 { color: #fff; font-size: .875rem; font-weight: 700; margin: 0 0 .35rem; text-transform: uppercase; letter-spacing: .05em; }
.fc-contact__info-text p { color: rgba(255,255,255,.7); font-size: .9375rem; margin: 0 0 .25rem; }
.fc-contact__info-text a { color: var(--fc-yellow-300); text-decoration: none; transition: color .2s; }
.fc-contact__info-text a:hover { color: #fff; }
.fc-contact__form-wrap { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--fc-radius-2xl); padding: 2.5rem; backdrop-filter: blur(10px); }
.fc-contact__form-title { font-family: var(--fc-font-serif); font-size: 1.5rem; color: var(--fc-white); margin-bottom: 2rem; }
.fc-contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.fc-form-group { display: flex; flex-direction: column; gap: .5rem; }
.fc-form-group label { font-size: .8125rem; font-weight: 600; color: rgba(255,255,255,.8); }
.fc-form-group input, .fc-form-group textarea { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--fc-radius-lg); padding: .75rem 1rem; color: #fff; font-family: var(--fc-font-main); font-size: .9375rem; transition: all .3s ease; outline: none; resize: vertical; }
.fc-form-group input::placeholder, .fc-form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.fc-form-group input:focus, .fc-form-group textarea:focus { border-color: var(--fc-green-400); background: rgba(255,255,255,.1); box-shadow: 0 0 0 3px rgba(22,163,74,.15); }
.fc-form-group textarea { min-height: 120px; }
.fc-form__feedback { padding: .75rem 1rem; border-radius: var(--fc-radius-sm); font-size: .875rem; margin-bottom: 1rem; display: none; }
.fc-form__feedback.success { background: rgba(22,163,74,.15); border: 1px solid rgba(22,163,74,.3); color: var(--fc-green-400); }
.fc-form__feedback.error   { background: rgba(239,68,68,.15); border: 1px solid rgba(239,68,68,.3); color: var(--fc-red-500); }
.fc-btn-submit { width: 100%; padding: .9rem 1.5rem; background: linear-gradient(135deg, var(--fc-green-700), var(--fc-green-600)); color: var(--fc-white); border: none; border-radius: var(--fc-radius-full); font-size: 1rem; font-weight: 700; font-family: var(--fc-font-main); cursor: pointer; transition: all .3s var(--fc-ease); display: flex; align-items: center; justify-content: center; gap: .5rem; box-shadow: 0 6px 20px rgba(22,163,74,.4); }
.fc-btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(22,163,74,.5); }

/* ============================================================
   FOOTER
============================================================ */
.fc-footer { background: var(--fc-slate-950); color: rgba(255,255,255,.6); padding: 5rem 0 0; position: relative; overflow: hidden; }
.fc-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--fc-green-700), transparent); }
.fc-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.fc-footer__brand { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.fc-footer__brand-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--fc-green-700), var(--fc-green-600)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--fc-white); box-shadow: 0 4px 14px rgba(22,163,74,.3); flex-shrink: 0; overflow: hidden; }
.fc-footer__brand-icon img { width: 100%; height: 100%; object-fit: cover; }
.fc-footer__brand h3 { font-family: var(--fc-font-serif); font-size: 1.2rem; font-weight: 700; color: var(--fc-white); }
.fc-footer__brand h3 span { color: var(--fc-green-500); }
.fc-footer__desc { font-size: .875rem; line-height: 1.8; margin-bottom: 1.5rem; max-width: 280px; }
.fc-footer__socials { display: flex; gap: .6rem; }
.fc-footer__social-link { width: 36px; height: 36px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: .8rem; transition: all .3s var(--fc-ease); }
.fc-footer__social-link:hover { background: var(--fc-green-700); border-color: var(--fc-green-700); color: var(--fc-white); transform: translateY(-3px); box-shadow: 0 6px 14px rgba(22,163,74,.4); }
.fc-footer__col-title { font-family: var(--fc-font-serif); font-size: 1rem; font-weight: 700; color: var(--fc-white); margin-bottom: 1.5rem; position: relative; padding-bottom: .75rem; }
.fc-footer__col-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--fc-green-600); border-radius: var(--fc-radius-full); }
.fc-footer__links { display: flex; flex-direction: column; gap: .65rem; }
.fc-footer__links a, .fc-footer__links span { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: rgba(255,255,255,.5); transition: all .3s var(--fc-ease); cursor: pointer; }
.fc-footer__links a:hover { color: var(--fc-green-400); padding-left: .4rem; }
.fc-footer__links i { color: var(--fc-yellow-500); flex-shrink: 0; margin-top: .1rem; font-size: .8rem; }
.fc-footer__bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 1.75rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .8125rem; }
.fc-footer__bottom p { color: rgba(255,255,255,.3); }

/* ============================================================
   BACK TO TOP
============================================================ */
.fc-back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--fc-green-700), var(--fc-green-600));
  border: none; border-radius: 50%; color: var(--fc-white); font-size: 1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(22,163,74,.5); z-index: 100; opacity: 0;
  visibility: hidden; transform: translateY(20px); transition: all .4s var(--fc-ease);
}
.fc-back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.fc-back-to-top:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(22,163,74,.6); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  :root { --fc-section-py: 4.5rem; }
  .fc-about__grid, .fc-contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .fc-gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .fc-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .fc-nav__menu { display: none; }
  .fc-hamburger { display: flex; }
  .fc-nav__mobile { display: flex; }
  .fc-topbar__left span:not(:first-child) { display: none; }
}
@media (max-width: 768px) {
  :root { --fc-section-py: 4rem; --fc-container-px: 1rem; }
  .fc-hero { height: 85vh; max-height: 700px; }
  .fc-hero__nav-btn { width: 40px; height: 40px; font-size: .875rem; }
  .fc-gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .fc-gallery__item--tall, .fc-gallery__item--wide { grid-column: span 1; grid-row: span 1; }
  .fc-committee__grid { grid-template-columns: repeat(2, 1fr); }
  .fc-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .fc-footer__bottom { flex-direction: column; text-align: center; }
  .fc-contact__form-wrap { padding: 1.75rem 1.25rem; }
}
@media (max-width: 480px) {
  .fc-hero { height: 90vh; }
  .fc-gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .fc-committee__grid { grid-template-columns: 1fr 1fr; }
  .fc-topbar { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   LiteSpeed Cache Compatibility — v4.0
   These rules ensure layout is correct even when main.css
   loads slightly after critical inline CSS.
   ============================================================ */

/* Prevent layout shift while main.css loads */
.fc-nav { min-height: 64px; }
.fc-hero { min-height: 100vh; }
.fc-committee, .fc-gallery, .fc-about, .fc-contact { min-height: 100px; }

/* Footer shortcode inline styles */
.fc-footer-section-shortcode { background: #111827; padding: 3rem 0 0; }
.fc-footer-section-shortcode .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.fc-footer-section-shortcode .footer-bottom {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.1);
    color: #9ca3af;
    font-size: .875rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}
.fc-footer-section-shortcode .footer-logo { max-height: 60px; }
.fc-footer-section-shortcode .footer-logo-text { font-size: 1.5rem; color: #f9fafb; }
.fc-footer-section-shortcode .footer-desc { color: #9ca3af; font-size: .9rem; line-height: 1.6; margin-top: .75rem; }
.fc-footer-section-shortcode .footer-heading { color: #f9fafb; font-size: 1rem; margin-bottom: .75rem; }
.fc-footer-section-shortcode .footer-nav-list { list-style: none; margin: 0; padding: 0; }
.fc-footer-section-shortcode .footer-nav-link { color: #9ca3af; text-decoration: none; display: block; padding: .3rem 0; }
.fc-footer-section-shortcode .footer-nav-link:hover { color: #f59e0b; }
.fc-footer-section-shortcode .footer-social-links { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .5rem; }
.fc-footer-section-shortcode .footer-social-btn {
    width: 40px; height: 40px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #e5e7eb; text-decoration: none; font-size: .9rem;
    transition: background .2s;
}
.fc-footer-section-shortcode .footer-social-btn:hover { background: #f59e0b; color: #000; }

/* Header shortcode inline styles */
.fc-header-section-shortcode .fc-nav-inline {
    background: var(--fc-green-900, #14532d);
    padding: .75rem 0;
}
.fc-header-section-shortcode .fc-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ============================================================
   MOBILE HEADER (.cmh) — Global Styles
   mobile-header.php এবং shortcode উভয় জায়গায় কাজ করবে
============================================================ */

.cmh,
.cmh *,
.cmh *::before,
.cmh *::after {
    margin: 0; padding: 0;
    box-sizing: border-box;
    font-family: var(--fc-font-main, 'Hind Siliguri', sans-serif);
    -webkit-font-smoothing: antialiased;
}

/* ROW 1 */
.cmh-row1 {
    background: var(--fc-green-950, #052e16);
    padding: 7px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cmh-phone {
    display: inline-flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.75); font-size: 12px; font-weight: 500;
    text-decoration: none; transition: color .2s; white-space: nowrap;
}
.cmh-phone:hover { color: var(--fc-yellow-400, #facc15); }
.cmh-phone svg {
    width: 13px !important; height: 13px !important;
    min-width: 13px; max-width: 13px;
    fill: var(--fc-yellow-500, #eab308); flex-shrink: 0; display: inline-block;
}
.cmh-social { display: flex; align-items: center; gap: 6px; }
.cmh-social a {
    width: 26px; height: 26px; border-radius: 9999px;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: background .25s; flex-shrink: 0;
}
.cmh-social a:hover { background: var(--fc-yellow-500, #eab308); }
.cmh-social svg {
    width: 12px !important; height: 12px !important;
    min-width: 12px; max-width: 12px;
    fill: rgba(255,255,255,0.8); display: block; transition: fill .25s;
}
.cmh-social a:hover svg { fill: var(--fc-green-950, #052e16); }

/* ROW 2 */
.cmh-row2 {
    background: var(--fc-green-900, #14532d);
    padding: 10px 14px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cmh-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; min-width: 0; flex: 1;
}
.cmh-logo-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: linear-gradient(135deg, var(--fc-green-700, #15803d), var(--fc-green-500, #22c55e));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(22,163,74,0.4); overflow: hidden;
    transition: transform .4s cubic-bezier(0.34,1.56,0.64,1);
}
.cmh-logo:hover .cmh-logo-icon { transform: rotate(-8deg) scale(1.1); }
.cmh-logo-icon img,
.cmh-logo-icon .custom-logo { width: 100% !important; height: 100% !important; object-fit: cover; display: block; }
.cmh-logo-icon i { font-size: 1.1rem; color: #fff; }
.cmh-logo-text { min-width: 0; overflow: hidden; }
.cmh-logo-text h2 {
    font-family: var(--fc-font-serif, 'Noto Serif Bengali', serif);
    font-size: 14px; font-weight: 700; color: #fff; line-height: 1.2;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0;
}
.cmh-logo-text h2 span { color: var(--fc-green-400, #4ade80); }
.cmh-logo-text p {
    font-size: 10px; color: rgba(255,255,255,0.45); letter-spacing: 0.04em;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0;
}
.cmh-cta-btn {
    background: linear-gradient(135deg, var(--fc-green-700, #15803d), var(--fc-green-600, #16a34a));
    border: none; border-radius: 9999px; padding: 9px 16px; cursor: pointer;
    position: relative; overflow: hidden; box-shadow: 0 4px 14px rgba(22,163,74,0.4);
    text-decoration: none; display: inline-flex; align-items: center;
    transition: transform .15s, box-shadow .15s; flex-shrink: 0; white-space: nowrap;
}
.cmh-cta-btn::before {
    content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.18), transparent);
    transform: skewX(-20deg); animation: cmh-shimmer 2.6s infinite;
}
@keyframes cmh-shimmer { 0% { left: -60%; } 100% { left: 130%; } }
.cmh-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(22,163,74,0.5); }
.cmh-cta-btn span {
    font-size: 13.5px; font-weight: 700; color: #fff; position: relative; z-index: 1;
}

/* ROW 3 */
.cmh-row3 {
    background: var(--fc-green-800, #166534);
    border-bottom: 2px solid var(--fc-green-700, #15803d);
    overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.cmh-row3::-webkit-scrollbar { display: none; }
.cmh-nav { display: flex; align-items: center; padding: 0 8px; white-space: nowrap; justify-content:center; }
.cmh-nav { 
    display: flex; align-items: center; 
    padding: 8px 10px; 
    white-space: nowrap; 
    gap: 6px;
    justify-content: flex-start;
}
.cmh-nav a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 14px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    border-radius: 9999px;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.18);
    position: relative;
    overflow: hidden;
    transition: all .25s cubic-bezier(0.34,1.56,0.64,1);
}

/* shimmer animation — সদস্য হোন button এর মতো */
.cmh-nav a::before {
    content: '';
    position: absolute; top: 0; left: -60%;
    width: 40%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
    transform: skewX(-20deg);
    animation: cmh-shimmer 3s infinite;
}

.cmh-nav a:hover {
    background: var(--fc-green-600, #16a34a);
    border-color: var(--fc-green-500, #22c55e);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(22,163,74,0.45);
}

.cmh-nav a.cmh-active {
    background: linear-gradient(135deg, var(--fc-green-700, #15803d), var(--fc-green-600, #16a34a));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 14px rgba(22,163,74,0.4);
}

/* Visibility */
@media (min-width: 769px) { .cmh { display: none !important; } }
@media (max-width: 768px) {
    .fc-topbar { display: none !important; }
    .fc-nav    { display: none !important; }
}


@media (max-width: 768px) {
    .fc-header-section-shortcode .fc-nav-inline {
        display: none !important;
    }
}

/* ============================================================
   NAV LINKS — Pill Button Style (সব device এ)
============================================================ */

/* সব nav link কে pill button বানাও */
.fc-nav__menu .fc-nav-link {
    background: var(--fc-green-50);
    border: 1.5px solid rgba(22,163,74,.2);
    border-radius: var(--fc-radius-full) !important;
    color: var(--fc-green-800);
    font-weight: 600;
    padding: .45rem 1.1rem;
    transition: all .3s var(--fc-ease);
}

/* underline effect সরিয়ে দাও */
.fc-nav__menu .fc-nav-link::after {
    display: none !important;
}

/* hover effect */
.fc-nav__menu .fc-nav-link:hover,
.fc-nav__menu .fc-nav-link.active {
    background: var(--fc-green-600) !important;
    border-color: var(--fc-green-600) !important;
    color: var(--fc-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(22,163,74,.35);
}

/* "সদস্য হোন" CTA — আলাদা yellow accent */
.fc-nav__menu .fc-nav__cta {
    background: linear-gradient(135deg, var(--fc-green-700), var(--fc-green-600)) !important;
    border-color: transparent !important;
    color: var(--fc-white) !important;
    box-shadow: 0 4px 14px rgba(22,163,74,.4) !important;
}
.fc-nav__menu .fc-nav__cta:hover {
    background: linear-gradient(135deg, var(--fc-green-600), var(--fc-green-500)) !important;
    box-shadow: 0 8px 22px rgba(22,163,74,.5) !important;
    transform: translateY(-2px);
}

/* shortcode inline nav এও same style */
.fc-nav-inline .fc-nav__menu .fc-nav-link {
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.2);
    border-radius: var(--fc-radius-full) !important;
    color: rgba(255,255,255,.9);
    font-weight: 600;
    padding: .45rem 1.1rem;
}
.fc-nav-inline .fc-nav__menu .fc-nav-link::after {
    display: none !important;
}
.fc-nav-inline .fc-nav__menu .fc-nav-link:hover,
.fc-nav-inline .fc-nav__menu .fc-nav-link.active {
    background: var(--fc-green-500) !important;
    border-color: var(--fc-green-500) !important;
    color: var(--fc-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(22,163,74,.35);
}
/* ── Committee Contribution Total ──────────────────────────── */
.fc-committee-contribution-total {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
    padding: 16px 28px;
    background: linear-gradient(135deg, rgba(22,163,74,.08) 0%, rgba(16,185,129,.12) 100%);
    border: 1.5px solid rgba(22,163,74,.25);
    border-radius: 12px;
    flex-wrap: wrap;
    text-align: center;
}
.fc-contribution-icon { font-size: 1.4rem; }
.fc-contribution-label { color: var(--fc-gray-600, #4b5563); font-size: .95rem; font-weight: 500; }
.fc-contribution-amount { color: var(--fc-green-600, #16a34a); font-size: 1.25rem; font-weight: 700; letter-spacing: -.3px; }

/* ── Committee card — linked (clickable) variant ───────────── */
.fc-committee-card--linked {
    cursor: pointer;
}
.fc-committee-card--linked:hover .fc-committee-card__name {
    color: var(--fc-green-600, #16a34a);
}
.fc-committee-card--linked:hover .fc-committee-card__photo img,
.fc-committee-card--linked:hover .fc-committee-card__initials {
    transform: scale(1.04);
}
