/* =============================================
   TGSCW - Telangana State Commission for Women
   Main Stylesheet | style.css
   WCAG 2.1 AA | GIGW 3.0 Compliant
   ============================================= */

/* ---- CSS Variables ---- */
/* Color Palette: OPTION 1 — Rose + Navy + Gold (Recommended)
   Primary:    #AC2B49  (Rose   — Women Empowerment)
   Nav:        #AC2B49 → #5C2D91  (Rose to Royal Purple gradient)
   Secondary:  #1E3A5F  (Navy   — Government Trust)
   Accent:     #F4C95D  (Gold   — Prestige / CTA)
   Background: #F8F9FC  (Near-White)
   Text:       #2D3748  (Charcoal)
   ------------------------------------------------- */
:root {
  /* Core brand */
  --primary:        #ac2b49;   /* Rose  */
  --primary-dark:   #8b1f38;   /* Deep Rose */
  --primary-mid:    #c93a5a;   /* Mid Rose */
  --primary-light:  #faeaee;   /* Rose Tint */
  --primary-xlight: #fdf4f6;   /* Pale Rose wash */

  /* Royal Purple (Navigation Secondary) */
  --purple:         #5c2d91;   /* Royal Purple */
  --purple-dark:    #461f72;   /* Deep Purple */
  --purple-mid:     #7a42b5;   /* Mid Purple */
  --purple-light:   #f0e8fa;   /* Purple Tint */

  /* Navy (Tertiary) */
  --navy:           #1e3a5f;   /* Core Navy */
  --navy-dark:      #142944;   /* Deep Navy */
  --navy-mid:       #2b5080;   /* Mid Navy */
  --navy-light:     #e8eef5;   /* Navy Tint */

  /* Gold (Accent) */
  --gold:           #f4c95d;   /* Core Gold */
  --gold-dark:      #d4a82a;   /* Deep Gold */
  --gold-light:     #fef7e0;   /* Gold Tint */
  --gold-text:      #7a5a00;   /* Gold on light bg */

  /* Neutrals */
  --white:          #ffffff;
  --bg-page:        #f8f9fc;   /* Page background */
  --dark:           #2d3748;   /* Text / dark UI */
  --dark-2:         #1a202c;   /* Darkest (footer) */
  --gray-text:      #5a6a7e;
  --gray-border:    #dde3ec;
  --gray-light:     #f0f4f8;
  --gray-bg:        var(--bg-page);  /* alias for compat */
  --text-body:      #2d3748;
  --text-heading:   #1a202c;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(30, 58, 95, 0.08);
  --shadow-md:   0 4px 20px rgba(30, 58, 95, 0.13);
  --shadow-lg:   0 8px 40px rgba(30, 58, 95, 0.18);
  --shadow-card: 0 2px 16px rgba(30, 58, 95, 0.09);
  --shadow-rose: 0 4px 20px rgba(172, 43, 73, 0.22);
  --shadow-gold: 0 4px 16px rgba(244, 201, 93, 0.35);
  --shadow-purple: 0 4px 20px rgba(92, 45, 145, 0.30);

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;

  /* Font sizes */
  --fs-base: 15px;
  --fs-sm: 13px;
  --fs-xs: 11px;
  --fs-lg: 17px;
  --fs-xl: 20px;
  --fs-2xl: 24px;
  --fs-3xl: 32px;

  /* Layout */
  --header-height: 100px;
  --nav-height: 52px;
  --utility-height: 38px;
  --total-sticky: 190px;
}

/* ---- Base Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: var(--fs-base);
}

body {
  font-family: 'Noto Sans', Arial, sans-serif;
  color: var(--text-body);
  background: var(--bg-page);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--primary-dark); }
a:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; border-radius: 3px; }
button:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; border-radius: 3px; }

/* ---- Accessibility ---- */
.skip-link {
  position: fixed;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  font-weight: 600;
  z-index: 10000;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 0;
  color: var(--white);
}

/* High Contrast Mode */
body.high-contrast {
  --primary: #ff0050;
  --primary-light: #1a0008;
  --dark: #ffffff;
  background: #000000;
  color: #ffffff;
}
body.high-contrast .main-header,
body.high-contrast .main-nav { background: #111; }
body.high-contrast .leader-card,
body.high-contrast .service-card,
body.high-contrast .event-card { background: #111; color: #fff; border: 1px solid #555; }
/* POP UP*/
.popup-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 95vw;
    max-height: 90vh;
    margin: 0 auto;
}

#awarenessModal .modal-dialog {
    width: fit-content;
    max-width: none;
    margin: 20px auto;
}

#awarenessModal .modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
}

#awarenessModal .modal-body{
    text-align:center;
    overflow:auto;
    max-height:90vh;
}

.carousel-control-prev,
.carousel-control-next{
    width:8%;
}
/* Force popup above all headers/menus */
#awarenessModal {
    z-index: 99999 !important;
}

#awarenessModal .modal-dialog {
    z-index: 100000 !important;
}

.modal-backdrop {
    z-index: 99998 !important;
}
/* Close button */
.awareness-close{
    position:absolute;
    top:12px;
    right:12px;
    z-index:100001;

    background-color:rgba(255,255,255,0.9);
    border-radius:50%;

    width:40px;
    height:40px;

    opacity:1;
}

/* Navigation buttons */
.carousel-control-prev,
.carousel-control-next{
    width:60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-color:rgba(0,0,0,0.6);
    border-radius:50%;
    padding:20px;
}
/* ============================
   STICKY HEADER WRAPPER
   — Utility + Header + Nav all stick together as one block.
   This prevents the nav from disappearing on scroll-up.
   ============================ */
.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 1100;
  /* Shadow added via JS when scrolled */
  transition: box-shadow 0.3s ease;
}
.site-header-wrap.scrolled {
  box-shadow: 0 4px 24px rgba(20,41,68,0.22);
}
.circle-image {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    object-fit: cover;
}
/* ============================
   TOP UTILITY BAR
   ============================ */
.utility-bar {
  background: var(--navy-dark);
  color: #b8c9e0;
  font-size: var(--fs-xs);
  height: var(--utility-height);
  /* NOT sticky — lives inside the sticky wrapper */
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  flex-wrap: nowrap;
  overflow: hidden;
}
.utility-left, .utility-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.utility-link {
  color: #b8c9e0;
  font-size: var(--fs-xs);
  white-space: nowrap;
  padding: 2px 4px;
}
.utility-link:hover { color: var(--gold); }
.utility-divider { color: #3a5070; font-size: 10px; }
.utility-label { color: #8aa5c0; font-size: var(--fs-xs); white-space: nowrap; }

.font-btn {
  background: transparent;
  border: 1px solid #3a5070;
  color: #b8c9e0;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: var(--fs-xs);
  font-family: inherit;
  transition: var(--transition-fast);
  min-width: 26px;
}
.font-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); font-weight: 700; }

.contrast-btn {
  background: transparent;
  border: 1px solid #3a5070;
  color: #b8c9e0;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: var(--fs-xs);
  font-family: inherit;
  white-space: nowrap;
  transition: var(--transition-fast);
}
.contrast-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); font-weight: 700; }

.lang-select {
  background: var(--navy);
  border: 1px solid #3a5070;
  color: #b8c9e0;
  font-size: var(--fs-xs);
  padding: 2px 6px;
  border-radius: 3px;
  cursor: pointer;
}
.lang-select:focus { outline: 2px solid var(--gold); }

/* ============================
   MAIN HEADER
   ============================ */
.main-header {
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  transition: box-shadow 0.3s;
  /* NOT individually sticky — part of .site-header-wrap */
}
.main-header.scrolled { box-shadow: none; /* wrapper handles shadow */ }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

/* ================================================
   HEADER LOGOS — Real Images
   ================================================ */

/* Shared logo column container */
.header-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.header-logo.left-logo  { align-items: flex-start; }
.header-logo.right-logo { align-items: flex-end; }

/* ── Left logo: STATE-TELANGANA-LOGO.png
   Contains Govt of Telangana seal + Telangana Rising side by side.
   Give it enough width so both symbols are clearly readable.    */
.left-logo-img {
  height: 86px;          /* fixed height — width scales naturally */
  width: auto;
  max-width: 260px;      /* never bleed into center title */
  object-fit: contain;
  object-position: left center;
  display: block;
  /* Crisp rendering for the round emblem detail */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* ── Right logo group wrapper */
.right-logo-group {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
  justify-content: flex-end;
}

/* Individual right logo card */
.right-logo-img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* ── Right logo: tscw_logo.jpg  (square pink icon) */
.right-logo-img {
  height: 82px;
  width: 82px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 10px;
  background: #fff;       /* white backing for the jpg */
  padding: 4px;
  border: 1.5px solid var(--primary-light);
}

/* Caption label under the right logo */
.right-logo-caption {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary);
  text-transform: uppercase;
  line-height: 1;
}

/* Legacy placeholder styles kept for any remaining placeholders */
.logo-placeholder {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-light), #e8d0d8);
  border: 2px dashed #c8a0ae;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  line-height: 1.3;
  flex-shrink: 0;
}
.logo-placeholder.small {
  width: 60px;
  height: 60px;
  font-size: 8px;
}

/* Center Header Title */
.header-title {
  flex: 1;
  text-align: center;
  min-width: 0;
}
.site-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 2.2vw, 27px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin: 0 0 2px;
  letter-spacing: -0.3px;
}
.site-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: var(--fs-sm);
  color: #006200;
  font-weight: 500;
  margin: 0 0 8px;
}
.subtitle-line {
  display: inline-block;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  padding: 1px 12px;
}

/* Search */
.search-form {
  display: flex;
  align-items: center;
  max-width: 340px;
  margin: 0 auto;
  border: 1.5px solid var(--gray-border);
  border-radius: 25px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.search-form:focus-within { border-color: var(--primary); }
.search-input {
  border: none;
  outline: none;
  padding: 7px 14px;
  font-size: var(--fs-sm);
  flex: 1;
  background: var(--bg-page);
  font-family: inherit;
}
.search-btn {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 7px 14px;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 13px;
}
.search-btn:hover { background: var(--primary-dark); }

/* Social Icons in header */
.header-social {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}
.social-icon-sm {
  width: 28px;
  height: 28px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: var(--transition-fast);
}
.social-icon-sm:hover { background: var(--primary); color: #fff; }

/* ============================
   MAIN NAVIGATION
   ============================ */
.main-nav {
  background: var(--primary);           /* Flat #AC2B49 Rose — professional, no gradient */
  /* NOT individually sticky — part of .site-header-wrap */
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.92);
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  padding: 14px 13px;
  white-space: nowrap;
  transition: var(--transition-fast);
  border-bottom: 3px solid transparent;
  line-height: 1;
}
.nav-link:hover,
.nav-item.active .nav-link {
  color: #ffffff;
  background: rgba(0,0,0,0.18);
  border-bottom-color: rgba(255,255,255,0.85);
}
.nav-arrow { font-size: 10px; opacity: 0.70; transition: transform 0.2s; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 225px;
  list-style: none;
  padding: 8px 0;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 32px rgba(172,43,73,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 999;
  border-top: 3px solid var(--primary);
}
.nav-item:hover .dropdown-menu-custom,
.nav-item:focus-within .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu-custom li a {
  display: flex;
  align-items: center;
  padding: 9px 18px;
  font-size: var(--fs-sm);
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition-fast);
  border-left: 3px solid transparent;
}
.dropdown-menu-custom li a:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-left-color: var(--primary);
  padding-left: 22px;
}
.text-primary-custom { color: var(--primary); }

/* Helpline Badge — Navy bg with Gold text for clear contrast on rose nav */
.helpline-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-dark);
  border: 2px solid rgba(244,201,93,0.5);
  border-radius: 25px;
  padding: 6px 16px;
  flex-shrink: 0;
  color: var(--gold);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.helpline-badge .fa-phone-volume { font-size: 16px; color: var(--gold); animation: pulse 2s infinite; }
.helpline-label { font-size: 10px; display: block; color: rgba(244,201,93,0.8); line-height: 1; font-weight: 600; }
.helpline-num { font-size: 18px; font-weight: 800; font-family: 'Inter', sans-serif; display: block; line-height: 1; color: var(--gold); }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ============================
   HERO CAROUSEL
   ============================ */
.hero-section { position: relative; overflow: hidden; }
.hero-carousel { position: relative; height: 550px; overflow: hidden; }
.hero-slides { height: 100%; position: relative; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.hero-slide.active { opacity: 1; visibility: visible; }
.slide-img-wrap, .slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-placeholder {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--primary-dark) 100%);
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  letter-spacing: 2px;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,30,52,0.82) 0%, rgba(30,58,95,0.55) 50%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 80px;
}
.slide-content { max-width: 600px; }
.slide-tag {
  display: inline-block;
  background: var(--gold);
  border: none;
  color: var(--navy-dark);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.slide-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.slide-accent { color: var(--gold); display: block; }
.slide-desc {
  color: rgba(255,255,255,0.88);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-hero-primary {
  background: var(--primary);
  color: #fff;
  padding: 13px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  border: 2px solid var(--primary);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-hero-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-hero-secondary {
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  border: 2px solid rgba(255,255,255,0.7);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: #fff; }

/* Hero Controls */
.hero-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 10;
  backdrop-filter: blur(4px);
}
.hero-control:hover { background: var(--primary); border-color: var(--primary); }
.hero-control.prev { left: 20px; }
.hero-control.next { right: 20px; }

/* Indicators */
.hero-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition-fast);
}
.indicator.active { background: #fff; width: 28px; border-radius: 5px; }

/* ============================
   NEWS TICKER
   ============================ */
.news-ticker {
  background: var(--primary-light);
  border-top: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  display: flex;
  align-items: center;
  height: 40px;
  overflow: hidden;
}
.ticker-label {
  background: var(--primary);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.ticker-wrap { flex: 1; overflow: hidden; height: 100%; display: flex; align-items: center; }
.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  font-size: var(--fs-sm);
  color: var(--primary-dark);
  font-weight: 500;
}
.ticker-item { padding: 0 8px; }
@keyframes ticker { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

/* ============================
   SECTIONS COMMON
   ============================ */
.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.section-label.light { color: rgba(255,255,255,0.8); }
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-title.light { color: #fff; }
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--navy));
  border-radius: 2px;
  margin: 0 auto 12px;
}
.section-divider.light { background: rgba(255,255,255,0.6); }
.section-desc { color: var(--gray-text); font-size: var(--fs-sm); }
.text-center .section-divider { margin-left: auto; margin-right: auto; }

/* ============================
   LEADERSHIP SECTION
   ============================ */
.leadership-section { background: var(--navy-light); }

.leader-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-border);
}
.leader-card:hover, .leader-card:focus { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--navy-mid); }
.leader-card.featured { border: 2px solid var(--primary); }

.leader-img-wrap {
  position: relative;
  padding: 28px 28px 0;
}
.img-placeholder-round {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), #c8d8ea);
  border: 4px solid var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-align: center;
  margin: 0 auto;
  line-height: 1.4;
}
.leader-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-top: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.leader-info { padding: 16px 24px 24px; }
.leader-name {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}
.leader-desg { font-size: var(--fs-sm); color:#8b1f38; margin-bottom: 12px; }
.leader-profile-link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--primary);
  border-bottom: 1.5px solid var(--primary-light);
}
.leader-profile-link:hover { border-bottom-color: var(--primary); }

/* ============================
   CHAIRPERSON MESSAGE
   ============================ */
.chairperson-section { background: var(--white); }
.chair-img-wrap { position: relative; display: inline-block; }
.img-placeholder-chair {
  width: 280px;
  height: 340px;
  background: linear-gradient(160deg, var(--navy-light), #b8d0e8);
  border: 3px dashed #90b0cc;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1px;
  margin: 0 auto;
}
.chair-img-deco {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--gold-light);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.7;
}

.chair-quote { position: relative; padding: 20px 20px; background: var(--bg-page); border-radius: 12px; border-left: 4px solid var(--navy); margin-bottom: 20px; }
.quote-icon { color: var(--navy-light); font-size: 28px; line-height: 1; margin-bottom: 8px; display: block; }
.right-quote { text-align: right; margin-top: 8px; margin-bottom: 0; }
.chair-msg-text { color: var(--text-body); line-height: 1.8; margin-bottom: 12px; font-size: var(--fs-lg); }
.chair-signature { border-top: 1.5px solid var(--gray-border); padding-top: 14px; margin-top: 14px; color: var(--gray-text); font-size: var(--fs-sm); }
.chair-signature strong { color: var(--navy); font-size: var(--fs-base); }

/* ============================
   COMMON BUTTONS
   ============================ */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: 28px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  border: 2px solid var(--primary);
  transition: var(--transition);
}
.btn-primary-custom:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 28px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  border: 2px solid var(--primary);
  transition: var(--transition);
}
.btn-outline-custom:hover { background: var(--primary); color: #fff; }

/* ============================
   QUICK SERVICES
   ============================ */
.services-section { background: var(--bg-page); }
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: 16px;
  padding: 28px 16px;
  text-align: center;
  transition: var(--transition);
  color: var(--text-body);
  text-decoration: none;
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  color: var(--primary);
}
.service-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  transition: var(--transition-fast);
}
.service-icon-wrap.emergency { background: var(--gold-light); color: var(--gold-dark); }
.service-card:hover .service-icon-wrap { background: var(--navy); color: var(--gold); }
.service-card:hover .service-icon-wrap.emergency { background: var(--gold); color: var(--navy-dark); }
.service-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: inherit;
  line-height: 1.4;
}

/* ============================
   STATISTICS SECTION
   ============================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.stats-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(244,201,93,0.07) 1px, transparent 1px);
  background-size: 30px 30px;
}
.stat-card {
  padding: 30px 20px;
  border: 1px solid rgba(244,201,93,0.2);
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.stat-card:hover { background: rgba(244,201,93,0.08); transform: translateY(-4px); border-color: rgba(244,201,93,0.4); }
.stat-icon { font-size: 36px; color: var(--gold); margin-bottom: 14px; }
.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: inline;
}
.stat-plus { font-size: 32px; font-weight: 800; color: var(--gold); display: inline; }
.stat-label { font-size: var(--fs-sm); color: rgba(255,255,255,0.75); margin-top: 8px; font-weight: 500; letter-spacing: 0.3px; }

/* ============================
   EVENTS SECTION
   ============================ */
.events-section { background: var(--bg-page); }
.section-header-row .section-label { margin-bottom: 4px; }

.events-track-wrap { overflow: hidden; position: relative; }
.events-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 12px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.events-track::-webkit-scrollbar { display: none; }

.event-card {
  flex: 0 0 300px;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--navy-light); }

.event-date-badge {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #fff;
  text-align: center;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 3px solid var(--gold);
}
.event-day { font-size: 28px; font-weight: 800; font-family: 'Inter', sans-serif; line-height: 1; color: var(--gold); }
.event-month { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; }
.event-year { font-size: 11px; opacity: 0.75; }

.event-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.event-category {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.event-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-desc {
  font-size: var(--fs-sm);
  color: var(--gray-text);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}
.event-link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}
.event-link:hover { gap: 6px; }

/* Scroll Buttons */
.scroll-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.scroll-btn:hover { background: var(--navy); color: var(--gold); }
.events-controls { display: flex; gap: 10px; }

/* ============================
   COMPLAINT CTA SECTION
   ============================ */
.complaint-cta {
  background: linear-gradient(110deg, var(--primary-dark) 0%, var(--primary) 45%, var(--navy) 100%);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 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='%23ffffff' 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");
}
.cta-icon-wrap {
  width: 100px;
  height: 100px;
  background: rgba(244,201,93,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: var(--gold);
  margin: 0 auto;
  border: 2px solid rgba(244,201,93,0.35);
}
.cta-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.cta-desc { color: rgba(255,255,255,0.85); font-size: 15px; margin-bottom: 16px; }
.cta-info-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-chip {
  background: rgba(244,201,93,0.12);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(244,201,93,0.3);
}
.btn-cta-primary {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 13px 24px;
  border-radius: 28px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}
.btn-cta-primary:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); }
.btn-cta-secondary {
  background: transparent;
  color: #fff;
  padding: 13px 24px;
  border-radius: 28px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  border: 2px solid rgba(255,255,255,0.55);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-cta-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

/* ============================
   GALLERY SECTION
   ============================ */
.gallery-section { background: var(--bg-page); }

/* Uniform 4-column × 2-row grid — all cells identical height */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  /* No span classes — every item is exactly one cell */
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, var(--navy-light) 0%, #c0d4e8 50%, #a8c4de 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.06); }

.gallery-ph-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
}
.gallery-ph-num {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  opacity: 0.18;
  line-height: 1;
}

/* Alternate placeholder shades so cells are visually distinct */
.gallery-item:nth-child(2) .gallery-placeholder { background: linear-gradient(150deg, var(--primary-light), #f0c8d4); }
.gallery-item:nth-child(2) .gallery-ph-label { color: var(--primary-dark); }
.gallery-item:nth-child(2) .gallery-ph-num  { color: var(--primary); }

.gallery-item:nth-child(3) .gallery-placeholder { background: linear-gradient(150deg, #e8f0e8, #c8ddc8); }
.gallery-item:nth-child(3) .gallery-ph-label { color: #2d5a2d; }
.gallery-item:nth-child(3) .gallery-ph-num  { color: #2d5a2d; }

.gallery-item:nth-child(4) .gallery-placeholder { background: linear-gradient(150deg, #f5f0e8, #e8d8b8); }
.gallery-item:nth-child(4) .gallery-ph-label { color: #7a5a00; }
.gallery-item:nth-child(4) .gallery-ph-num  { color: #7a5a00; }

.gallery-item:nth-child(5) .gallery-placeholder { background: linear-gradient(150deg, #f0e8f5, #d8c0ea); }
.gallery-item:nth-child(5) .gallery-ph-label { color: var(--purple); }
.gallery-item:nth-child(5) .gallery-ph-num  { color: var(--purple); }

.gallery-item:nth-child(6) .gallery-placeholder { background: linear-gradient(150deg, var(--navy-light), #b8ccdc); }
.gallery-item:nth-child(7) .gallery-placeholder { background: linear-gradient(150deg, var(--primary-light), #ecc8d4); }
.gallery-item:nth-child(7) .gallery-ph-label { color: var(--primary-dark); }
.gallery-item:nth-child(7) .gallery-ph-num  { color: var(--primary); }
.gallery-item:nth-child(8) .gallery-placeholder { background: linear-gradient(150deg, #e8f4f0, #b8dcd0); }
.gallery-item:nth-child(8) .gallery-ph-label { color: #1a5040; }
.gallery-item:nth-child(8) .gallery-ph-num  { color: #1a5040; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 41, 68, 0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-zoom {
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.gallery-zoom:hover { background: var(--gold); color: var(--navy-dark); transform: scale(1.1); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lightbox-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.9); }
.lightbox-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-img-wrap {
  max-width: 70vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-placeholder {
  min-width: 500px;
  min-height: 380px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { background: var(--primary); border-color: var(--primary); }
.lightbox-prev, .lightbox-next {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--navy); border-color: var(--navy); }

/* ============================
   SOCIAL MEDIA WING
   ============================ */
.social-wing { background: var(--white); }
.social-card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--gray-border);
  transition: var(--transition);
  height: 100%;
  cursor: pointer;
}
.social-card:hover { transform: translateY(-6px); }
.social-card.facebook { border-top: 4px solid #1877f2; }
.social-card.twitter { border-top: 4px solid #000; }
.social-card.instagram { border-top: 4px solid #e1306c; }
.social-card.youtube { border-top: 4px solid #ff0000; }
.social-card.linkedin { border-top: 4px solid #0a66c2; }
.social-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.social-card-icon { font-size: 24px; }
.facebook .social-card-icon { color: #1877f2; }
.twitter .social-card-icon { color: #000; }
.instagram .social-card-icon { color: #e1306c; }
.youtube .social-card-icon { color: #ff0000; }
.linkedin .social-card-icon { color: #0a66c2; }
.social-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: var(--fs-base); color: var(--text-heading); }
.social-followers { font-size: var(--fs-sm); color: var(--gray-text); margin-bottom: 10px; }
.social-followers strong { color: var(--navy); font-size: var(--fs-lg); }
.social-preview { font-size: var(--fs-sm); color: var(--gray-text); line-height: 1.6; margin-bottom: 16px; }
.social-follow-btn {
  display: inline-block;
  border: 1.5px solid currentColor;
  padding: 7px 20px;
  border-radius: 20px;
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: var(--transition-fast);
}
.facebook .social-follow-btn { color: #1877f2; }
.facebook .social-follow-btn:hover { background: #1877f2; color: #fff; }
.twitter .social-follow-btn { color: #000; }
.twitter .social-follow-btn:hover { background: #000; color: #fff; }
.instagram .social-follow-btn { color: #e1306c; }
.instagram .social-follow-btn:hover { background: #e1306c; color: #fff; }
.youtube .social-follow-btn { color: #ff0000; }
.youtube .social-follow-btn:hover { background: #ff0000; color: #fff; }
.linkedin .social-follow-btn { color: #0a66c2; }
.linkedin .social-follow-btn:hover { background: #0a66c2; color: #fff; }

/* ============================
   NEWS & NOTIFICATIONS
   ============================ */
.news-notifications { background: var(--bg-page); }
.news-panel { background: var(--white); border-radius: 14px; border: 1.5px solid var(--gray-border); overflow: hidden; height: 100%; }
.news-panel-header {
  background: linear-gradient(90deg, var(--navy-dark), var(--navy));
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--gold);
}
.news-panel-title { font-family: 'Poppins', sans-serif; font-size: var(--fs-lg); font-weight: 700; margin: 0; color: #fff; }
.view-all-link { font-size: var(--fs-sm); color: var(--gold); font-weight: 600; }
.view-all-link:hover { color: #fff; }
.news-list { padding: 12px 0; max-height: 340px; overflow-y: auto; }
.news-list::-webkit-scrollbar { width: 4px; }
.news-list::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 2px; }
.news-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--gray-border);
  transition: background 0.2s;
}
.news-item:last-child { border-bottom: none; }
.news-item:hover { background: var(--navy-light); }
.news-date {
  font-size: 11px;
  color: var(--gray-text);
  white-space: nowrap;
  font-weight: 600;
  min-width: 70px;
  padding-top: 2px;
}
.new-badge {
  background: var(--primary);
  color: #fff;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  min-width: auto;
  text-transform: uppercase;
}
.news-content { flex: 1; min-width: 0; }
.news-title {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 6px;
}
.news-title:hover { color: var(--navy); }
.news-actions { display: flex; gap: 12px; }
.news-view {
  font-size: 12px;
  color: var(--navy);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.news-view:hover { text-decoration: underline; }
.news-view .fa-file-pdf { color: #dc3545; }

/* ============================
   IMPORTANT LINKS
   ============================ */
.imp-links { background: var(--navy-light); }
.imp-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  border: 1.5px solid var(--gray-border);
  transition: var(--transition);
  color: var(--text-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.4;
  position: relative;
}
.imp-link-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  color: var(--navy);
}
.imp-link-icon {
  width: 52px;
  height: 52px;
  background: var(--navy-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--navy);
  transition: var(--transition-fast);
}
.imp-link-card:hover .imp-link-icon { background: var(--navy); color: var(--gold); }
.imp-link-ext {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  color: var(--gray-text);
  opacity: 0.5;
}

/* ============================
   FOOTER
   ============================ */
.site-footer { background: var(--navy-dark); color: #8aa5c0; }
.footer-top { padding: 60px 0 40px; }
.footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-size: var(--fs-base);
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-about-text { font-size: var(--fs-sm); line-height: 1.75; }
.footer-certifications { display: flex; gap: 8px; flex-wrap: wrap; }
.cert-badge {
  background: rgba(244,201,93,0.12);
  border: 1px solid rgba(244,201,93,0.3);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}
.footer-logo-placeholder {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: rgba(255,255,255,0.25);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: #8aa5c0;
  font-size: var(--fs-sm);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a .fas { font-size: 10px; color: var(--gold); }

/* Contact */
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: var(--fs-sm);
  line-height: 1.6;
}
.footer-contact-item .fas { color: var(--gold); font-size: 15px; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: #8aa5c0; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-item.emergency { background: rgba(172,43,73,0.2); border: 1px solid rgba(172,43,73,0.35); border-radius: 8px; padding: 10px 14px; }
.helpline-number { font-size: 28px; font-weight: 800; color: var(--gold); font-family: 'Inter', sans-serif; }

/* Footer Social */
.footer-social { display: flex; flex-direction: column; gap: 8px; }
.footer-social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: var(--transition-fast);
  border: 1px solid rgba(255,255,255,0.08);
  color: #8aa5c0;
}
.footer-social-btn:hover { background: rgba(255,255,255,0.06); }
.footer-social-btn.fb:hover { color: #1877f2; border-color: #1877f2; }
.footer-social-btn.tw:hover { color: #fff; border-color: #555; }
.footer-social-btn.ig:hover { color: #e1306c; border-color: #e1306c; }
.footer-social-btn.yt:hover { color: #ff0000; border-color: #ff0000; }
.footer-social-btn.li:hover { color: #0a66c2; border-color: #0a66c2; }

/* Visitor Counter */
.visitor-counter { background: rgba(244,201,93,0.06); border-radius: 10px; padding: 14px; border: 1px solid rgba(244,201,93,0.15); }
.visitor-title { font-size: 12px; color: #6a88a8; margin-bottom: 8px; font-weight: 600; }
.visitor-number { display: flex; gap: 4px; }
.visitor-number span {
  background: var(--navy);
  color: var(--gold);
  font-size: 18px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  width: 32px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid rgba(244,201,93,0.2);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0,0,0,0.35);
  padding: 18px 0;
  border-top: 1px solid rgba(244,201,93,0.1);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: #5a7090; }
.footer-policy-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-policy-links a { font-size: 12px; color: #5a7090; }
.footer-policy-links a:hover { color: var(--gold); }
.footer-meta { font-size: 11px; color: #3a5070; }

/* ============================
   BACK TO TOP
   ============================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  border: 2px solid rgba(244,201,93,0.3);
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 999;
}
.back-to-top:hover { background: var(--primary); color: #fff; border-color: transparent; transform: translateY(-3px); }
.back-to-top[hidden] { display: none; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  /* Gallery: 4 cols → 2 cols, 4 rows */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 200px);
  }
}

@media (max-width: 991px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    z-index: 999;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .dropdown-menu-custom {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
    border-left: 4px solid var(--primary-light);
    display: none;
    margin-left: 16px;
  }
  .nav-item.open .dropdown-menu-custom { display: block; }
  .helpline-badge { display: none; }
  .slide-overlay { padding: 0 30px; }
  .header-title { order: 2; }
  .header-logo.left-logo { order: 1; }
  .header-logo.right-logo { order: 3; }
}

@media (max-width: 767px) {
  .utility-inner { flex-wrap: wrap; height: auto; }
  .utility-bar { height: auto; padding: 6px 0; }
  .utility-right { display: none; }
  .hero-carousel { height: 380px; }
  .slide-heading { font-size: 24px; }
  .slide-desc { display: none; }
  .slide-overlay { padding: 0 20px; }
  .chair-img-wrap img, .img-placeholder-chair { width: 220px; height: 270px; }
  /* Gallery: 2 cols × 4 rows */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 170px);
    gap: 10px;
  }
  .events-track { gap: 14px; }
  .event-card { flex: 0 0 260px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .site-title { font-size: 14px; }
  /* Scale logos down on mobile */
  .left-logo-img  { height: 60px; max-width: 180px; }
  .right-logo-img { height: 58px; width: 58px; }
  .right-logo-caption { font-size: 9px; }
  .right-logo-group { margin-bottom: 4px; }
  .header-social { display: none; }
}

@media (max-width: 480px) {
  .hero-carousel { height: 300px; }
  .slide-heading { font-size: 20px; }
  .btn-hero-primary, .btn-hero-secondary { padding: 10px 18px; font-size: 13px; }
  /* Gallery: 2 cols × 4 rows at small screens */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 140px);
    gap: 8px;
  }
  .stat-card { padding: 20px 14px; }
  .lightbox-placeholder { min-width: 280px; min-height: 220px; }
  /* Extra-small logo sizing */
  .left-logo-img  { height: 50px; max-width: 150px; }
  .right-logo-img { height: 48px; width: 48px; }
  .right-logo-caption { display: none; }
}

/* Print Styles */
@media print {
  .site-header-wrap, .hero-section, .news-ticker,
  .complaint-cta, .back-to-top, .site-footer, .social-wing { display: none; }
  body { font-size: 12pt; }
}


/* ============================================================
   HOW CAN WE HELP — SECTION  (Multicolor Edition)
   ============================================================ */

/* ── Section wrapper ── */
.help-section {
  background: linear-gradient(180deg, #f8f9fc 0%, #f0f2f8 100%);
  position: relative;
  overflow: hidden;
}

.help-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(172, 43, 73, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(92, 45, 145, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(30, 58, 95, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Per-card colour tokens ──
   Each card declares --c1 (dark shade) --c2 (mid) --c3 (pale tint) --shadow-c
   via data-color attribute selectors below.                            ── */

/* 1 — Crimson Rose — Domestic Violence */
.help-card[data-color="rose"] {
  --c1: #b91c4a;
  --c2: #e03368;
  --c3: #fce8ef;
  --shadow-c: rgba(185, 28, 74, 0.28);
}

/* 2 — Indigo — Workplace Harassment */
.help-card[data-color="indigo"] {
  --c1: #3730a3;
  --c2: #4f46e5;
  --c3: #eef2ff;
  --shadow-c: rgba(79, 70, 229, 0.28);
}

/* 3 — Teal — Cyber Crime */
.help-card[data-color="teal"] {
  --c1: #0f766e;
  --c2: #14b8a6;
  --c3: #e6fffc;
  --shadow-c: rgba(20, 184, 166, 0.28);
}

/* 4 — Amber — Dowry Harassment */
.help-card[data-color="amber"] {
  --c1: #b45309;
  --c2: #f59e0b;
  --c3: #fffbeb;
  --shadow-c: rgba(245, 158, 11, 0.30);
}

/* 5 — Navy — Property Harassment */
.help-card[data-color="navy"] {
  --c1: #1e3a5f;
  --c2: #2563eb;
  --c3: #eff6ff;
  --shadow-c: rgba(37, 99, 235, 0.26);
}

/* 6 — Purple — Child Marriage */
.help-card[data-color="purple"] {
  --c1: #6d28d9;
  --c2: #8b5cf6;
  --c3: #f5f3ff;
  --shadow-c: rgba(139, 92, 246, 0.28);
}

/* 7 — Slate Blue — Stalking */
.help-card[data-color="slate"] {
  --c1: #1e40af;
  --c2: #3b82f6;
  --c3: #eff6ff;
  --shadow-c: rgba(59, 130, 246, 0.26);
}

/* 8 — Orange-Red — Police Inaction */
.help-card[data-color="orange"] {
  --c1: #c2410c;
  --c2: #ea580c;
  --c3: #fff7ed;
  --shadow-c: rgba(234, 88, 12, 0.28);
}

/* ── Base card shell ── */
.help-card {
  background: var(--white);
  border-radius: 18px;
  padding: 0;
  text-align: center;
  border: 1.5px solid transparent;
  box-shadow: 0 2px 16px rgba(30, 58, 95, 0.08);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Coloured top accent stripe */
.help-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c1), var(--c2));
  border-radius: 18px 18px 0 0;
  transition: height 0.3s ease;
}

/* Soft tinted background wash on hover */
.help-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--c3) 0%, rgba(255,255,255,0) 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

.help-card:hover,
.help-card:focus {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--c2);
  box-shadow: 0 12px 40px var(--shadow-c), 0 2px 8px rgba(0,0,0,0.06);
  outline: none;
}

.help-card:hover::after,
.help-card:focus::after {
  height: 6px;
}

.help-card:hover::before,
.help-card:focus::before {
  opacity: 1;
}

/* ── Inner padding wrapper ── */
.help-card-inner {
  padding: 32px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* ── Icon bubble ── */
.help-icon-wrap {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--c3), color-mix(in srgb, var(--c3) 60%, white));
  border: 2px solid color-mix(in srgb, var(--c2) 25%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  flex-shrink: 0;
}

/* Ring halo effect */
.help-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px dashed color-mix(in srgb, var(--c2) 30%, transparent);
  transition: border-color 0.3s ease;
}

.help-icon-wrap i {
  font-size: 28px;
  color: var(--c1);
  transition: transform 0.3s ease, color 0.25s ease;
}

/* On hover: icon bubble goes solid gradient */
.help-card:hover .help-icon-wrap,
.help-card:focus .help-icon-wrap {
  background: linear-gradient(145deg, var(--c2), var(--c1));
  border-color: transparent;
  transform: scale(1.12) rotate(-4deg);
  box-shadow: 0 8px 24px var(--shadow-c);
}

.help-card:hover .help-icon-wrap::before,
.help-card:focus .help-icon-wrap::before {
  border-color: color-mix(in srgb, var(--c2) 50%, transparent);
}

.help-card:hover .help-icon-wrap i,
.help-card:focus .help-icon-wrap i {
  color: #fff;
  transform: scale(1.08);
}

/* ── Card text ── */
.help-card-title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.help-card:hover .help-card-title,
.help-card:focus .help-card-title {
  color: var(--c1);
}

.help-card-desc {
  font-size: var(--fs-sm);
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

/* ── "Know Your Rights" link ── */
.help-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c1);
  text-decoration: none;
  padding: 7px 18px;
  border-radius: 20px;
  background: var(--c3);
  border: 1.5px solid color-mix(in srgb, var(--c2) 30%, transparent);
  transition: all 0.25s ease;
  margin-top: auto;
  letter-spacing: 0.2px;
}

.help-card-link:hover,
.help-card:hover .help-card-link {
  background: linear-gradient(90deg, var(--c1), var(--c2));
  color: #fff;
  border-color: transparent;
  gap: 9px;
  box-shadow: 0 4px 14px var(--shadow-c);
}

/* ── Bottom CTA ── */
.help-section-cta {
  padding: 28px 0 8px;
}

.help-cta-text {
  font-size: var(--fs-base);
  color: var(--gray-text);
  margin-bottom: 18px;
}

.btn-help-primary,
.btn-help-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: var(--fs-base);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.btn-help-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(172, 43, 73, 0.3);
}

.btn-help-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(172, 43, 73, 0.4);
  filter: brightness(1.08);
}

.btn-help-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-help-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 575px) {
  .btn-help-primary,
  .btn-help-secondary {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }
  .help-section-cta .me-3 { margin-right: 0 !important; }
  .help-card-inner { padding: 24px 16px 20px; }
}


/* ============================================================
   SUCCESS STORIES — SECTION
   ============================================================ */

.stories-section {
  background: linear-gradient(160deg, var(--navy-dark) 0%, #0d2240 50%, var(--purple-dark) 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative background pattern */
.stories-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(172, 43, 73, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(92, 45, 145, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(244, 201, 93, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Section header overrides for dark bg ── */
.section-label.light {
  background: rgba(244, 201, 93, 0.15);
  color: var(--gold);
  border-color: rgba(244, 201, 93, 0.3);
}

.section-title.light {
  color: var(--white);
}

.section-divider.light {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-desc.light {
  color: rgba(255, 255, 255, 0.68);
}

/* ── Trust Bar ── */
.stories-trust-bar {
  gap: 12px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: var(--fs-sm);
  font-weight: 500;
  backdrop-filter: blur(6px);
  letter-spacing: 0.2px;
  transition: var(--transition-fast);
}

.trust-chip:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(244, 201, 93, 0.5);
  color: var(--gold);
}

/* ── Story Cards ── */
.story-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 0;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  height: 100%;
}

.story-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(244, 201, 93, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

/* Featured card */
.story-card.featured {
  background: rgba(172, 43, 73, 0.18);
  border-color: rgba(172, 43, 73, 0.5);
}

.story-card.featured:hover {
  background: rgba(172, 43, 73, 0.26);
  border-color: var(--primary);
}

/* ── Quote Icon ── */
.story-quote-icon {
  font-size: 28px;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 14px;
  line-height: 1;
}

/* ── Category Badge ── */
.story-category-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(244, 201, 93, 0.15);
  border: 1px solid rgba(244, 201, 93, 0.3);
  color: var(--gold);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 13px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  width: fit-content;
}

/* ── Story Text ── */
.story-text {
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 22px;
  flex: 1;
  font-style: normal;
  border: none;
  padding: 0;
  quotes: none;
}

/* ── Story Footer ── */
.story-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.story-anon {
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  flex-shrink: 0;
}

.story-anon-name {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
}

.story-anon-note {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

/* ── Outcome Badge ── */
.story-outcome {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 13px;
  border-radius: 20px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
}

.story-outcome.success {
  background: rgba(56, 161, 105, 0.2);
  border: 1px solid rgba(56, 161, 105, 0.4);
  color: #6ee7b7;
}

/* ── Share Your Story CTA ── */
.stories-share-cta {
  padding-top: 20px;
}

.stories-cta-inner {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 48px 32px;
  max-width: 680px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}

.stories-cta-icon {
  font-size: 44px;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.stories-cta-title {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.stories-cta-text {
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.btn-story-share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark-2);
  padding: 13px 32px;
  border-radius: 8px;
  font-size: var(--fs-base);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.2px;
}

.btn-story-share:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244, 201, 93, 0.45);
}

/* ── Responsive tweaks ── */
@media (max-width: 767px) {
  .story-card {
    padding: 24px 20px 20px;
  }
  .stories-cta-inner {
    padding: 32px 20px;
  }
  .stories-cta-title {
    font-size: var(--fs-xl);
  }
}
/* ══════════════════════════════════════════════════════════════════════
     WHATSAPP SERVICE CARD
     ══════════════════════════════════════════════════════════════════════ */
     .service-icon-wrap.whatsapp-icon-wrap {
      background: linear-gradient(135deg, #dcfce7, #bbf7d0) !important;
      border-color: rgba(37,211,102,0.3) !important;
    }
    .service-icon-wrap.whatsapp-icon-wrap i {
      color: #16a34a !important;
    }
    .whatsapp-service-card:hover .service-icon-wrap.whatsapp-icon-wrap,
    .whatsapp-service-card:focus .service-icon-wrap.whatsapp-icon-wrap {
      background: linear-gradient(135deg, #25D366, #128C7E) !important;
      border-color: transparent !important;
    }
    .whatsapp-service-card:hover .service-icon-wrap.whatsapp-icon-wrap i,
    .whatsapp-service-card:focus .service-icon-wrap.whatsapp-icon-wrap i {
      color: #fff !important;
    }

/* ================================================================
   MEMBERS PAGE — members.html
   Telangana State Commission for Women
   Appointed vide G.O.Rt.No.637 dt. 11.05.2026
   ================================================================ */

/* ── Page Hero Banner ──────────────────────────────────────────── */
.page-hero-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--purple-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: 56px 0 48px;
}
.page-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(172,43,73,0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(92,45,145,0.15) 0%, transparent 50%),
    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='%23ffffff' fill-opacity='0.03'%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");
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.page-hero-content { }

/* Breadcrumb */
.page-breadcrumb { margin-bottom: 16px; }
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0; margin: 0;
  flex-wrap: wrap;
}
.breadcrumb-list li { font-size: 13px; color: rgba(255,255,255,0.6); }
.breadcrumb-list li a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.breadcrumb-list li a:hover { color: var(--gold); }
.breadcrumb-list li[aria-current="page"] { color: var(--gold); font-weight: 600; }
.breadcrumb-list .fa-chevron-right { font-size: 9px; color: rgba(255,255,255,0.35); }

/* Title */
.page-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.page-hero-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--primary));
  border-radius: 2px;
  margin-top: 14px;
}
.page-hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  font-style: italic;
}

/* ── GO Reference Strip ─────────────────────────────────────────── */
.go-reference-strip {
  background: #fff;
  border-bottom: 3px solid var(--primary-light);
  border-top: 1px solid var(--gray-border);
  box-shadow: 0 2px 12px rgba(30,58,95,0.07);
  padding: 14px 0;
}
.go-ref-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.go-ref-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.go-ref-icon {
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
}
.go-ref-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 2px;
}
.go-ref-val {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-heading);
}
.go-ref-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.2px;
}
.go-ref-btn:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-rose);
}
@media (max-width: 767px) {
  .go-ref-inner { gap: 16px; }
  .go-ref-item:nth-child(3) { display: none; }
}

/* ── Members Section ────────────────────────────────────────────── */
.members-section { background: var(--bg-page); }

/* Grid label above members */
.members-grid-tag {
  display: inline-flex;
  align-items: center;
  background: var(--navy-light);
  color: var(--navy);
  border: 1px solid rgba(30,58,95,0.18);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 20px;
}

/* ── Member Card ─────────────────────────────────────────────────── */
.member-card {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid var(--gray-border);
  box-shadow: 0 2px 18px rgba(30,58,95,0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.member-card:hover,
.member-card:focus {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(172,43,73,0.16);
  border-color: var(--primary);
  outline: none;
}
.member-card:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

/* Chairperson card – special styling */
.chairperson-card {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, var(--primary-xlight) 0%, #fff 40%);
  box-shadow: 0 4px 28px rgba(172,43,73,0.14);
}
.chairperson-card:hover,
.chairperson-card:focus {
  box-shadow: 0 16px 48px rgba(172,43,73,0.24);
  border-color: var(--primary-dark);
}

/* Card top bar (serial + badge) */
.member-card-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 0;
}
.member-sl {
  font-size: 11px;
  font-weight: 800;
  color: rgba(30,58,95,0.35);
  letter-spacing: 0.5px;
  font-family: 'Poppins', monospace;
}
.chairperson-card .member-sl { color: rgba(172,43,73,0.4); }

/* Designation badges */
.member-desig-badge {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 12px;
}
.chairperson-badge {
  background: var(--primary);
  color: #fff;
}
.member-badge {
  background: var(--navy-light);
  color: var(--navy);
}

/* Photo wrap */
.member-photo-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 16px auto 0;
}
.chairperson-card .member-photo-wrap {
  width: 130px;
  height: 130px;
}
.member-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid var(--gray-border);
  display: block;
  transition: border-color 0.25s ease;
}
.member-card:hover .member-photo,
.member-card:focus .member-photo { border-color: var(--primary); }
.chairperson-card .member-photo { border: 4px solid var(--primary); }

/* Fallback icon when photo missing */
.member-photo-fallback {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), #c8d8ea);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--navy-mid);
  border: 3px solid var(--gray-border);
}
.chairperson-card .member-photo-fallback {
  background: linear-gradient(135deg, var(--primary-light), #f9c5d0);
  color: var(--primary);
  font-size: 44px;
  border-color: var(--primary-light);
}

/* Spinning ring (chairperson only) */
.member-photo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(172,43,73,0.25);
  animation: spin-ring 22s linear infinite;
  pointer-events: none;
}
@keyframes spin-ring { to { transform: rotate(360deg); } }

/* Member info text */
.member-info {
  padding: 14px 16px 20px;
  width: 100%;
}
.member-name {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.35;
  margin-bottom: 4px;
}
.chairperson-card .member-name { font-size: 16px; color: var(--primary-dark); }
.member-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-text);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.chairperson-card .member-role { color: var(--primary); }

/* GO ref under chairperson card */
.member-go-ref {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  color: var(--gray-text);
  background: var(--gray-light);
  padding: 4px 10px;
  border-radius: 12px;
  margin-top: 8px;
}

/* ── Members Table ───────────────────────────────────────────────── */
.members-table-wrap {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--gray-border);
  box-shadow: 0 2px 16px rgba(30,58,95,0.07);
  padding: 28px 28px 24px;
}
.members-table-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.members-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.members-table thead tr {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.members-table thead th {
  color: #fff;
  font-weight: 700;
  padding: 14px 18px;
  text-align: left;
  font-size: 12.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.members-table thead th:first-child { border-radius: 8px 0 0 0; }
.members-table thead th:last-child  { border-radius: 0 8px 0 0; }
.members-table tbody tr {
  border-bottom: 1px solid var(--gray-border);
  transition: background 0.15s ease;
}
.members-table tbody tr:hover { background: var(--bg-page); }
.members-table tbody td {
  padding: 13px 18px;
  color: var(--text-body);
  vertical-align: middle;
}
.members-table tbody td:first-child {
  font-weight: 700;
  color: var(--gray-text);
  width: 60px;
  text-align: center;
}

/* Chairperson row highlight */
.members-table .chairperson-row {
  background: var(--primary-xlight);
}
.members-table .chairperson-row:hover { background: #fbe6ec; }
.members-table .chairperson-row td { color: var(--primary-dark); }

/* Table badges */
.table-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.chairperson-table-badge { background: var(--primary); color: #fff; }
.member-table-badge { background: var(--navy-light); color: var(--navy); }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .page-hero-banner { padding: 40px 0 36px; }
  .page-hero-title { font-size: 28px; }
  .members-table-wrap { padding: 20px 16px; }
  .members-table thead th,
  .members-table tbody td { padding: 11px 12px; font-size: 13px; }
}
@media (max-width: 575px) {
  .member-photo-wrap { width: 90px; height: 90px; }
  .chairperson-card .member-photo-wrap { width: 110px; height: 110px; }
  .members-table-wrap { padding: 14px 8px; }
  .members-table-header { flex-direction: column; align-items: flex-start; }
}
