/* ============================================================
   Sri Bhavani Mahila Mandali - Main Stylesheet
   Color Palette from Logo:
   Maroon: #7B1A2E | Gold: #C9952A | Green: #2E6B3E | Cream: #F5EFE0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Lato:wght@300;400;700&family=Cormorant+Garamond:ital,wght@0,500;1,400&display=swap');

/* ---- CSS Variables ---- */
:root {
  --maroon:       #7B1A2E;
  --maroon-dark:  #5A1220;
  --maroon-light: #9B2A40;
  --gold:         #C9952A;
  --gold-light:   #E3B44A;
  --gold-pale:    #F5DFA0;
  --green:        #2E6B3E;
  --green-light:  #3D8A52;
  --cream:        #F5EFE0;
  --cream-dark:   #EDE4CC;
  --white:        #FFFFFF;
  --text-dark:    #1E1E1E;
  --text-mid:     #444444;
  --text-light:   #777777;
  --shadow-sm:    0 2px 10px rgba(123,26,46,0.1);
  --shadow-md:    0 6px 24px rgba(123,26,46,0.15);
  --shadow-lg:    0 16px 48px rgba(123,26,46,0.2);
  --radius:       10px;
  --radius-lg:    20px;
  --transition:   all 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-mid); line-height: 1.8; }

/* ---- Utility ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.bg-cream { background: var(--cream); }
.bg-maroon { background: var(--maroon); }
.bg-dark { background: var(--maroon-dark); }

/* Section Heading */
.section-heading { margin-bottom: 50px; }
.section-heading .tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-heading h2 { color: var(--maroon); }
.section-heading .divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--maroon));
  margin: 16px auto 0;
  border-radius: 2px;
}
.section-heading.left .divider { margin-left: 0; }
.section-heading p { max-width: 600px; margin: 16px auto 0; }
.section-heading.left p { margin-left: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  font-size: 0.92rem; font-weight: 700; letter-spacing: 0.5px;
  border-radius: 6px;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--maroon-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--maroon);
  transform: translateY(-2px);
}
.btn-maroon {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}
.btn-maroon:hover {
  background: var(--maroon-dark);
  border-color: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-lg { padding: 16px 38px; font-size: 1rem; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--maroon-dark);
  color: var(--cream);
  font-size: 0.8rem;
  padding: 7px 0;
}
.top-bar .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 6px;
}
.top-bar a { color: var(--gold-pale); }
.top-bar a:hover { color: var(--gold-light); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.top-bar span { display: flex; align-items: center; gap: 5px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-logo { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; }
.nav-brand-text .org-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--maroon); line-height: 1.2;
}
.nav-brand-text .org-sub {
  font-size: 0.72rem; color: var(--gold);
  letter-spacing: 1px; text-transform: uppercase;
}
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 13px;
  font-size: 0.88rem; font-weight: 700;
  color: var(--text-dark);
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--maroon); background: var(--cream); }
.nav-donate {
  margin-left: 8px;
  background: var(--gold);
  color: var(--maroon-dark) !important;
  padding: 9px 20px !important;
}
.nav-donate:hover { background: var(--gold-light) !important; }

/* Dropdown */
.nav-item { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white);
  min-width: 190px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--gold);
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 16px;
  font-size: 0.86rem; font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}
.dropdown-menu a:hover { background: var(--cream); color: var(--maroon); padding-left: 22px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--maroon); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 50%, #A03040 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,149,42,0.18) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9952A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding: 80px 0;
}
.hero-text .badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,149,42,0.2);
  border: 1px solid rgba(201,149,42,0.4);
  color: var(--gold-light);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px; border-radius: 30px;
  margin-bottom: 22px;
}
.hero-text h1 { color: var(--white); margin-bottom: 16px; }
.hero-text h1 span { color: var(--gold-light); display: block; }
.hero-text .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem; color: var(--cream);
  margin-bottom: 16px;
  opacity: 0.9;
}
.hero-text p { color: rgba(255,255,255,0.8); max-width: 500px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 30px; margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900;
  color: var(--gold-light);
  display: block;
}
.hero-stat .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.7); letter-spacing: 1px; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-logo-wrap {
  position: relative;
  width: 540px; height: 540px;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute; inset: -20px;
  border-radius: 50%;
  border: 2px solid rgba(201,149,42,0.3);
  animation: pulse-ring 3s ease-in-out infinite;
}
.hero-logo-wrap::after {
  content: '';
  position: absolute; inset: -40px;
  border-radius: 50%;
  border: 1px solid rgba(201,149,42,0.15);
  animation: pulse-ring 3s ease-in-out infinite 1s;
}
.hero-logo-img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 60px rgba(201,149,42,0.3);
  border: 4px solid rgba(201,149,42,0.4);
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 1; }
}

/* ============================================================
   MARQUEE / ANNOUNCEMENT
   ============================================================ */
.announce-bar {
  background: var(--gold);
  padding: 11px 0;
  overflow: hidden;
}
.announce-bar .marquee-inner {
  display: flex; gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.announce-bar span {
  font-size: 0.85rem; font-weight: 700;
  color: var(--maroon-dark);
  display: flex; align-items: center; gap: 10px;
}
.announce-bar span::before { content: '★'; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT SNIPPET
   ============================================================ */
.about-home { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; object-fit: cover;
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--maroon);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge .yrs { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--gold-light); display: block; line-height: 1; }
.about-badge .yrs-lbl { font-size: 0.75rem; letter-spacing: 1px; opacity: 0.9; }
.about-content .section-heading { margin-bottom: 24px; }
.about-content p { margin-bottom: 18px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0; }
.feat-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.feat-item .icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.feat-item h4 { font-size: 0.88rem; color: var(--maroon); margin-bottom: 2px; }
.feat-item p { font-size: 0.78rem; margin: 0; }

/* ============================================================
   IMPACT NUMBERS
   ============================================================ */
.impact { background: var(--maroon); }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.impact-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,149,42,0.25);
  transition: var(--transition);
}
.impact-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.impact-card .ic { font-size: 2.5rem; margin-bottom: 12px; }
.impact-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 900;
  color: var(--gold-light);
  display: block; line-height: 1;
}
.impact-card p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-top: 6px; }

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.program-card-img img { width: 100%; height: 100%; object-fit: cover; }
.program-card-img .overlay-icon {
  position: absolute;
  font-size: 4rem; opacity: 0.2;
}
.program-card-body { padding: 24px; }
.program-card-body .prog-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px; display: block;
}
.program-card-body h3 { color: var(--maroon); font-size: 1.2rem; margin-bottom: 10px; }
.program-card-body p { font-size: 0.9rem; }
.program-card-footer {
  padding: 0 24px 24px;
  display: flex; gap: 10px;
}

/* ============================================================
   VISION & MISSION BLOCKS
   ============================================================ */
.vm-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
}
.vm-card {
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.vm-card.vision { background: var(--maroon); color: var(--white); }
.vm-card.mission { background: var(--green); color: var(--white); }
.vm-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.vm-card .vm-icon { font-size: 3rem; margin-bottom: 20px; }
.vm-card h3 { color: var(--gold-light); font-size: 1.6rem; margin-bottom: 16px; }
.vm-card p { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.85; }
.vm-values { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.vm-values li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.vm-values li::before { content: '✦'; color: var(--gold-light); font-size: 0.7rem; flex-shrink: 0; }

/* ============================================================
   Live / UPDATES
   ============================================================ */
.Live-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
}
.Live-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.Live-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.Live-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  overflow: hidden;
}
.Live-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.Live-card:hover .Live-card-img img { transform: scale(1.05); }
.Live-card-body { padding: 20px; }
.Live-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; flex-wrap: wrap; }
.Live-cat {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white);
  background: var(--maroon); padding: 3px 10px; border-radius: 20px;
}
.Live-date { font-size: 0.78rem; color: var(--text-light); }
.Live-card-body h4 { color: var(--maroon); font-size: 1rem; margin-bottom: 8px; line-height: 1.4; }
.Live-card-body p { font-size: 0.85rem; }
.Live-card-footer { padding: 0 20px 20px; }
.read-more { font-size: 0.85rem; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 6px; }
.read-more:hover { color: var(--maroon); }

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  background: var(--cream-dark);
  cursor: pointer;
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: rgba(123,26,46,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: var(--white); font-size: 2rem; }

/* ============================================================
   REPORTS / DOCUMENTS
   ============================================================ */
.reports-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.report-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.report-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.report-icon {
  width: 52px; height: 52px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.report-icon.pdf { background: rgba(220,53,69,0.1); }
.report-icon.doc { background: rgba(0,120,212,0.1); }
.report-icon.xls { background: rgba(33,115,70,0.1); }
.report-info h4 { font-size: 0.9rem; color: var(--maroon); margin-bottom: 3px; }
.report-info span { font-size: 0.75rem; color: var(--text-light); }
.report-dl { margin-left: auto; color: var(--gold); font-size: 1.3rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testi-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testi-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem; line-height: 1;
  color: var(--cream-dark);
  position: absolute; top: 10px; left: 20px;
}
.testi-card p { font-style: italic; color: var(--text-mid); position: relative; z-index: 1; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--cream-dark); overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--gold);
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--maroon); }
.testi-role { font-size: 0.78rem; color: var(--text-light); }

/* ============================================================
   DONATE CTA BANNER
   ============================================================ */
.donate-cta {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.donate-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at right, rgba(201,149,42,0.2), transparent 60%);
}
.donate-cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.donate-cta h2 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); }
.donate-cta p { color: rgba(255,255,255,0.8); max-width: 500px; }
.donate-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}
.contact-detail .ci-icon {
  width: 44px; height: 44px;
  background: var(--maroon);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail h4 { font-size: 0.85rem; color: var(--text-light); font-weight: 400; margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); }
.contact-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-dark);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text-dark); margin-bottom: 7px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  font-family: inherit; font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,149,42,0.15);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.map-wrap {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--cream-dark);
}
.map-wrap iframe { width: 100%; height: 320px; display: block; border: none; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--maroon-dark);
  color: rgba(255,255,255,0.8);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding: 70px 0 50px;
}
.footer-brand .nav-logo { width: 70px; height: 70px; margin-bottom: 18px; }
.footer-brand .org-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; max-width: 280px; }
.footer-brand .tagline-f {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1rem;
  color: var(--gold-light); margin-top: 12px; display: block;
}
.footer-col h4 { font-family: 'Playfair Display', serif; color: var(--gold-light); font-size: 1rem; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(201,149,42,0.3); }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 0.88rem; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.86rem; align-items: flex-start; }
.footer-contact-item span:first-child { color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p, .footer-bottom a { font-size: 0.82rem; }
.footer-bottom a { color: var(--gold-light); }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--maroon-dark); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  padding: 80px 0 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,149,42,0.15), transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 550px; margin: 12px auto 0; }
.breadcrumb {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  margin-bottom: 16px;
}
.breadcrumb a { font-size: 0.82rem; color: var(--gold-light); }
.breadcrumb span { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { background: var(--white); }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.story-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: var(--cream-dark); }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.timeline { margin-top: 50px; }
.timeline-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--maroon); margin-bottom: 30px; text-align: center; }
.timeline-items { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline-items::before {
  content: '';
  position: absolute; left: 22px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--gold), var(--maroon));
}
.tl-item { display: flex; gap: 24px; padding-bottom: 30px; position: relative; }
.tl-dot {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--maroon); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-weight: 900; font-size: 0.75rem;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
  position: relative; z-index: 1;
}
.tl-content { padding-top: 8px; }
.tl-content h4 { color: var(--maroon); margin-bottom: 4px; }
.tl-content p { font-size: 0.88rem; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%; overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid var(--gold);
  background: var(--cream-dark);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { color: var(--maroon); font-size: 0.95rem; margin-bottom: 4px; }
.team-card .role { font-size: 0.8rem; color: var(--gold); font-weight: 700; }

/* ============================================================
   ACTIVITIES / PROGRAMS PAGE
   ============================================================ */
.programs-full-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 30px; }
.prog-full-card {
  display: grid; grid-template-columns: 180px 1fr;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.prog-full-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.prog-full-img { background: linear-gradient(135deg, var(--maroon),var(--maroon-light)); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: rgba(255,255,255,0.5); }
.prog-full-body { padding: 24px 24px 24px 0; }
.prog-full-body .tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.prog-full-body h3 { color: var(--maroon); margin-bottom: 10px; font-size: 1.15rem; }
.prog-full-body p { font-size: 0.88rem; margin-bottom: 14px; }
.prog-full-body ul { display: flex; flex-direction: column; gap: 5px; }
.prog-full-body ul li { font-size: 0.84rem; color: var(--text-mid); display: flex; align-items: center; gap: 7px; }
.prog-full-body ul li::before { content: '✓'; color: var(--green); font-weight: 900; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem; font-weight: 700;
  border: 2px solid var(--cream-dark);
  color: var(--text-mid);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { border-color: var(--maroon); background: var(--maroon); color: var(--white); }
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.gal-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  cursor: pointer;
  position: relative;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gal-item:hover img { transform: scale(1.07); }
.gal-item .gal-overlay {
  position: absolute; inset: 0;
  background: rgba(123,26,46,0.65);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; transition: var(--transition);
  color: var(--white);
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span { font-size: 1.8rem; }
.gal-overlay p { font-size: 0.88rem; font-weight: 600; }
/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: var(--white); font-size: 2rem; cursor: pointer;
  background: rgba(255,255,255,0.1);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--maroon); }

/* ============================================================
   REPORTS PAGE
   ============================================================ */
.reports-full { background: var(--cream); }
.reports-category { margin-bottom: 50px; }
.reports-category h3 { font-size: 1.3rem; color: var(--maroon); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.reports-category h3::after { content: ''; flex: 1; height: 1px; background: var(--cream-dark); }
.reports-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.report-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.report-item:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.ri-icon { font-size: 2rem; flex-shrink: 0; }
.ri-info { flex: 1; }
.ri-info h4 { font-size: 0.92rem; color: var(--maroon); margin-bottom: 3px; }
.ri-info span { font-size: 0.78rem; color: var(--text-light); }
.ri-dl {
  padding: 8px 16px;
  background: var(--maroon);
  color: var(--white);
  border-radius: 6px;
  font-size: 0.8rem; font-weight: 700;
  transition: var(--transition);
}
.ri-dl:hover { background: var(--gold); color: var(--maroon-dark); }

/* ============================================================
   DONATE PAGE
   ============================================================ */
.donate-hero { background: linear-gradient(135deg, var(--green-light), var(--green)); padding: 80px 0; text-align: center; }
.donate-hero h1 { color: var(--white); }
.donate-hero p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 14px auto; }
.donate-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.donate-amounts { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 24px; }
.amount-btn {
  padding: 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-size: 1.1rem; font-weight: 700;
  color: var(--maroon);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.amount-btn.active, .amount-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--maroon-dark);
}
.payment-methods { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.pay-method {
  padding: 10px 18px;
  border: 2px solid var(--cream-dark);
  border-radius: 8px;
  font-size: 0.85rem; font-weight: 700;
  color: var(--text-mid);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.pay-method.active, .pay-method:hover { border-color: var(--maroon); color: var(--maroon); background: var(--cream); }
.upi-box {
  background: var(--cream);
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin-top: 20px;
}
.upi-box .upi-id { font-size: 1.2rem; font-weight: 700; color: var(--maroon); margin: 10px 0; }
.upi-box p { font-size: 0.85rem; }
.impact-use { background: var(--white); padding: 30px; border-radius: var(--radius-lg); border: 1px solid var(--cream-dark); box-shadow: var(--shadow-sm); }
.impact-use h3 { color: var(--maroon); margin-bottom: 20px; }
.impact-use-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--cream-dark); }
.impact-use-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.impact-use-item .pct {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900;
  color: var(--gold); flex-shrink: 0; line-height: 1;
}
.impact-use-item h4 { font-size: 0.9rem; color: var(--maroon); margin-bottom: 3px; }
.impact-use-item p { font-size: 0.82rem; }

/* ============================================================
   Live PAGE
   ============================================================ */
.Live-full-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; }
.Live-sidebar h3 { font-size: 1.1rem; color: var(--maroon); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }
.sidebar-Live-item { display: flex; gap: 12px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--cream-dark); }
.sidebar-Live-item:last-child { border-bottom: none; }
.sidebar-thumb { width: 65px; height: 65px; border-radius: 8px; background: var(--cream-dark); overflow: hidden; flex-shrink: 0; }
.sidebar-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-Live-info h4 { font-size: 0.84rem; color: var(--maroon); margin-bottom: 4px; line-height: 1.35; }
.sidebar-Live-info span { font-size: 0.76rem; color: var(--text-light); }
.Live-main-list { display: flex; flex-direction: column; gap: 30px; }
.Live-full-card {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.Live-full-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.Live-full-img { background: var(--cream-dark); overflow: hidden; }
.Live-full-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.Live-full-card:hover .Live-full-img img { transform: scale(1.05); }
.Live-full-body { padding: 24px 24px 24px 0; }
.Live-full-body .Live-meta { margin-bottom: 10px; }
.Live-full-body h3 { font-size: 1.15rem; color: var(--maroon); margin-bottom: 10px; }
.Live-full-body p { font-size: 0.9rem; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; opacity: 0; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(25px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { bottom: 10px; right: 10px; }
  .impact-grid { grid-template-columns: repeat(2,1fr); }
  .programs-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .donate-grid { grid-template-columns: 1fr; }
  .Live-full-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .programs-full-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 16px; box-shadow: var(--shadow-md); border-top: 3px solid var(--gold); gap: 4px; }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 11px 16px; width: 100%; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--cream); margin-top: 4px; border-left: 3px solid var(--gold); border-radius: 0; border-top: none; }
  .hamburger { display: flex; }
  .navbar { position: sticky; }
  .nav-inner { position: relative; }
  .hero { min-height: 70vh; }
  .hero-content { padding: 50px 0; }
  .impact-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .programs-grid { grid-template-columns: 1fr; }
  .Live-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-full-grid { grid-template-columns: repeat(2,1fr); }
  .reports-grid { grid-template-columns: 1fr; }
  .reports-list { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-features { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .donate-cta-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .Live-full-card { grid-template-columns: 1fr; }
  .Live-full-img { height: 200px; }
  .prog-full-card { grid-template-columns: 1fr; }
  .prog-full-img { height: 120px; }
  .section-pad { padding: 55px 0; }
  .donate-amounts { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 480px) {
  .impact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-full-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .donate-amounts { grid-template-columns: repeat(2,1fr); }
  .about-features { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .btn-lg { width: 100%; justify-content: center; }
}


/* benficiries */
/* SECTION */
.bene-scroll-section {
  width: 100%;
  background: #f8f8f8;
}

/* HEADING */
.bene-scroll-header {
  text-align: center;
  padding: 60px 20px 30px;
  background: #faf7f2;
}

.bene-scroll-header h2 {
  font-size: 2.6rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  color: #7B1A2E;
}

.bene-scroll-header p {
  color: #666;
}

/* IMAGE BLOCK */
.bene-scroll-item {
  width: 100%;
  min-height: 100vh; /* flexible instead of fixed */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

/* IMAGE */
.bene-scroll-item img {
  width: 100%;
  max-width: 1000px; /* keeps it readable */
  height: auto; /* IMPORTANT: no crop */
  object-fit: contain; /* full image visible */
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-radius: 8px;
}


/* cc url live  */


.cctv-section {
  padding: 80px 20px;
  background: #f8f8f8;
}

.cctv-container {
  max-width: 1100px;
  margin: auto;
}

.cctv-header {
  text-align: center;
  margin-bottom: 30px;
}

.cctv-header h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #7B1A2E;
}

.cctv-header p {
  color: #666;
}

/* Responsive Video */
.cctv-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cctv-frame-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



/* chairmans message  */

.chairman-msg-wrap {
  padding: 80px 20px;
  background: #f9f6f2;
}

.chairman-msg-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

/* LEFT IMAGE */
.chairman-msg-left {
  flex: 1;
}

.chairman-msg-left img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* RIGHT CONTENT */
.chairman-msg-right {
  flex: 1;
}

/* TITLE */
.chairman-title {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #7B1A2E;
  font-family: 'Playfair Display', serif;
}

/* INTRO */
.chairman-intro {
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* QUOTE */
.chairman-quote {
  background: #eef5fb;
  padding: 15px;
  border-left: 4px solid #2b6cb0;
  font-style: italic;
  margin-bottom: 20px;
}

/* LIST */
.chairman-points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.chairman-points li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.chairman-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c9952a;
}

/* SIGN */
.chairman-sign {
  text-align: right;
  color: #333;
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .chairman-msg-container {
    flex-direction: column;
    text-align: center;
  }

  .chairman-sign {
    text-align: center;
  }
}