/* ============================================================
   CBA Nepal — Main Stylesheet  v2.1
   नेपाल कस्मेटिक व्यवसायी संघ / NEPAL COSMETIC BUSINESS ASSOCIATION
   ============================================================ */

/* ── ROOT VARIABLES ─────────────────────────────────────── */
:root {
  --primary:       #1a2870;
  --primary-dark:  #111d50;
  --primary-light: #2a3d8f;
  --accent:        #c49a28;
  --accent-dark:   #a07d1e;
  --accent-light:  #d4b050;
  --cta:           #c62828;
  --cta-dark:      #a01820;
  --cta-light:     #e04848;
  --white:         #ffffff;
  --off-white:     #f8f9fa;
  --light-bg:      #f4f6f9;
  --light-gray:    #e8ecf0;
  --text-dark:     #1a1a2e;
  --text-gray:     #5a6a7c;
  --text-light:    #6b7c94;
  --danger:        #dc3545;
  --success:       #198754;
  --warning:       #ffc107;
  --border:        #dee2e6;
  --shadow:        0 4px 20px rgba(26,40,112,0.10);
  --shadow-hover:  0 10px 36px rgba(26,40,112,0.18);
  --radius:        8px;
  --radius-lg:     14px;
  --transition:    all 0.28s ease;
  --font-main:    'Poppins','Noto Sans Devanagari',sans-serif;
  --font-heading: 'Poppins',sans-serif;
}

/* ── GLOBAL RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 15px;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  background: var(--light-bg);
}
img[src^="data:image/svg"] { background: transparent; }

a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
ul { list-style: none; padding: 0; margin: 0; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* ── KEYFRAMES ──────────────────────────────────────────── */
@keyframes fadeInUp  { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn    { from { opacity:0; }                              to { opacity:1; } }
@keyframes spin      { to   { transform:rotate(360deg); } }
@keyframes ticker    { 0%{ transform:translateX(110vw); } 100%{ transform:translateX(-100%); } }

/* ════════════════════════════════════════════════════════
   SECTION LABEL  (standalone — not scoped to any parent)
════════════════════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
  white-space: nowrap;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 14px; height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
}

/* ════════════════════════════════════════════════════════
   SECTION DIVIDER  (standalone — single definition)
════════════════════════════════════════════════════════ */
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--accent), var(--primary));
  border-radius: 2px;
  margin-top: 12px;
  flex-shrink: 0;
  display: block;
}

/* ════════════════════════════════════════════════════════
   SECTION HEADER
════════════════════════════════════════════════════════ */
.section-header { margin-bottom: 45px; }
.section-header h2 {
  font-size: 32px; font-weight: 700;
  color: var(--primary); margin-top: 4px;
}
.section-header p {
  color: var(--text-gray); margin-top: 12px;
  font-size: 15px; max-width: 640px;
  margin-left: auto; margin-right: auto;
}

/* ════════════════════════════════════════════════════════
   SECTIONS — GENERAL
════════════════════════════════════════════════════════ */
section {
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
section > .container,
section > .container-fluid { position: relative; z-index: 1; }

.bg-light-gray   { background: var(--light-bg); }
.bg-primary-custom { background: var(--primary); }
.bg-primary-custom .section-label { color: var(--accent-light); }
.bg-primary-custom .section-header h2 { color: var(--white); }
.bg-primary-custom .section-header p { color: rgba(255,255,255,.7); }

/* ════════════════════════════════════════════════════════
   TOP BAR
════════════════════════════════════════════════════════ */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  font-size: 12.5px;
  padding: 6px 0;
  border-bottom: 2px solid var(--accent);
}
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: var(--accent-light); }
.topbar .topbar-left span { margin-right: 18px; }
.topbar .topbar-left i   { color: var(--accent); margin-right: 5px; }
.topbar .topbar-right a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  margin-left: 6px; font-size: 12px;
}
.topbar .topbar-right a:hover { background: var(--accent); color: var(--primary); }

/* ════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════ */
.site-header {
  background: var(--white);
  padding: 12px 0;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  position: relative;
  transition: var(--transition);
}
.site-header.scrolled { padding: 7px 0; box-shadow: 0 4px 24px rgba(26,40,112,.14); }
.header-logo img { height: 92px; width: 92px; flex-shrink: 0; background: transparent; object-fit: contain; border-radius: 50%; }
.header-logo .logo-text { margin-left: 14px; min-width: 0; }
.header-logo .logo-text .org-name-np {
  font-size: 30px; font-weight: 700; color: var(--cta);
  line-height: 1.25; font-family: 'Noto Sans Devanagari',sans-serif;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.header-logo .logo-text .org-name {
  font-size: 18px; font-weight: 700; color: var(--primary); line-height: 1.3;
  letter-spacing: 0.5px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.header-logo .logo-text .org-est {
  font-size: 10.5px; color: var(--text-light);
  letter-spacing: 1px; text-transform: uppercase; margin-top: 2px;
}
.header-actions .btn-member {
  background: var(--cta); color: #fff;
  font-weight: 600; font-size: 13px;
  padding: 8px 20px; border-radius: var(--radius); border: none;
  transition: var(--transition);
}
.header-actions .btn-member:hover {
  background: var(--cta-dark); transform: translateY(-1px); color: #fff;
}

/* ════════════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════════════ */
.main-navbar { background: var(--primary); z-index: 1000; position: sticky; top: 0; transition: transform 0.32s ease, box-shadow 0.32s ease; }
.main-navbar.nav-hidden { transform: translateY(-100%); box-shadow: none; }
.main-navbar .navbar-nav .nav-item .nav-link {
  color: rgba(255,255,255,.9) !important;
  font-size: 14px; font-weight: 500;
  padding: 14px 16px !important;
  position: relative; transition: var(--transition); letter-spacing: .3px;
}
.main-navbar .navbar-nav .nav-item .nav-link::after {
  content: ''; position: absolute;
  bottom: 0; left: 50%; width: 0; height: 3px;
  background: var(--accent); transition: var(--transition); transform: translateX(-50%);
}
.main-navbar .navbar-nav .nav-item .nav-link:hover,
.main-navbar .navbar-nav .nav-item .nav-link.active { color: var(--accent-light) !important; }
.main-navbar .navbar-nav .nav-item .nav-link:hover::after { width: 80%; }
.main-navbar .navbar-nav .nav-item .nav-link.active::after { width: 80%; }
/* Dropdown links: disable the underline ::after so it doesn't conflict with Bootstrap's caret ::after */
.main-navbar .navbar-nav .nav-item.dropdown .nav-link::after {
  content: none; position: static; width: auto; height: auto; background: none;
}
/* Bootstrap dropdown caret styling */
.main-navbar .navbar-nav .dropdown-toggle::after {
  border-top: .3em solid; border-right: .25em solid transparent;
  border-left: .25em solid transparent;
  opacity: .55; vertical-align: .15em; margin-left: .4em;
  transition: transform .25s ease, opacity .2s ease;
}
.main-navbar .nav-item.dropdown:hover .dropdown-toggle::after,
.main-navbar .nav-item.dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg); opacity: 1;
}
/* Underline effect — use ::before for dropdown items since ::after is the caret */
.main-navbar .navbar-nav .nav-item.dropdown .nav-link::before {
  content: ''; position: absolute;
  bottom: 0; left: 50%; width: 0; height: 3px;
  background: var(--accent); transition: var(--transition); transform: translateX(-50%);
}
.main-navbar .navbar-nav .nav-item.dropdown .nav-link:hover::before,
.main-navbar .navbar-nav .nav-item.dropdown .nav-link.active::before { width: 80%; }
/* Open dropdowns on hover (desktop only) */
@media (min-width: 992px) {
  .main-navbar .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
.main-navbar .dropdown-menu {
  background: var(--white); border: none;
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-hover);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 220px; padding: 8px 0;
}
.main-navbar .dropdown-menu .dropdown-item {
  font-size: 13.5px; color: var(--text-dark);
  padding: 9px 20px; transition: var(--transition);
  border-left: 3px solid transparent;
}
.main-navbar .dropdown-menu .dropdown-item:hover {
  background: var(--light-bg); color: var(--primary);
  border-left-color: var(--accent); padding-left: 26px;
}
.main-navbar .navbar-toggler { border-color: rgba(255,255,255,.3); color: var(--white); }
.main-navbar .navbar-toggler-icon { filter: invert(1); }

/* ════════════════════════════════════════════════════════
   HERO SLIDER
════════════════════════════════════════════════════════ */
.hero-slider { position: relative; overflow: hidden; }
.hero-slider .carousel-item {
  height: 580px; overflow: hidden; position: relative;
}
.hero-slider .carousel-item img {
  width: 100%; height: 100%; object-fit: cover; filter: brightness(.55);
}
.hero-slider .carousel-item > div[style*="background"] {
  width: 100%; height: 580px; overflow: hidden; position: relative;
}
.hero-slider .carousel-caption {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  text-align: left; max-width: 720px; width: 88%;
  bottom: auto; right: auto; padding: 0;
}
.hero-slider .carousel-caption .slide-subtitle {
  font-size: 12px; font-weight: 700;
  color: var(--accent-light); letter-spacing: 4px;
  text-transform: uppercase; margin-bottom: 14px;
}
.hero-slider .carousel-caption h2 {
  font-size: 46px; font-weight: 700;
  color: var(--white); line-height: 1.2; margin-bottom: 16px;
  text-shadow: 0 3px 14px rgba(0,0,0,.35);
}
.hero-slider .carousel-caption p {
  font-size: 16px; color: rgba(255,255,255,.85);
  margin-bottom: 28px; max-width: 560px;
}
.hero-slider .carousel-caption .btn-hero {
  background: var(--cta); color: #fff;
  font-weight: 700; padding: 12px 34px;
  border-radius: var(--radius); font-size: 14px;
  border: 2px solid var(--cta); transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-slider .carousel-caption .btn-hero:hover {
  background: var(--cta-dark); color: #fff; border-color: var(--cta-dark);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(198,40,40,.35);
}
/* Hero slide entrance animation */
.hero-slider .carousel-item.active .slide-subtitle { animation: fadeInUp .6s ease .1s both; }
.hero-slider .carousel-item.active h2 { animation: fadeInUp .6s ease .25s both; }
.hero-slider .carousel-item.active .carousel-caption p { animation: fadeInUp .6s ease .4s both; }
.hero-slider .carousel-item.active .btn-hero { animation: fadeInUp .6s ease .55s both; }
.hero-slider .carousel-indicators button {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.45); border: none;
  margin: 0 5px; transition: var(--transition);
}
.hero-slider .carousel-indicators button.active {
  background: var(--accent); transform: scale(1.3);
}
.hero-slider .ticker-wrap {
  background: rgba(18,42,68,.92); color: var(--white);
  padding: 10px 0; position: absolute;
  bottom: 0; left: 0; width: 100%; z-index: 10; overflow: hidden;
}
.hero-slider .ticker-label {
  background: var(--cta); color: #fff;
  font-weight: 700; font-size: 11px; padding: 4px 14px;
  letter-spacing: 1.5px; text-transform: uppercase;
  white-space: nowrap; flex-shrink: 0;
}
.ticker-content { overflow: hidden; flex: 1; }
.ticker-text {
  display: inline-block; white-space: nowrap;
  animation: ticker 40s linear infinite; font-size: 13px;
}
.ticker-text a { color: rgba(255,255,255,.88); margin: 0 32px; }
.ticker-text a:hover { color: var(--accent-light); }

/* Hero fallback (when no slider image) */
.hero-fallback {
  width: 100%; height: 580px;
  position: relative; overflow: hidden;
}
.hero-fallback-gradient {
  width: 100%; height: 580px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 60%, #1e4a72 100%);
  position: relative; overflow: hidden;
}
.hero-deco {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-deco--1 {
  top: -120px; right: -120px; width: 550px; height: 550px;
  background: rgba(200,169,74,.1);
}
.hero-deco--2 {
  bottom: -80px; left: -80px; width: 420px; height: 420px;
  background: rgba(255,255,255,.04);
}
.hero-deco--3 {
  top: 30%; left: 5%; width: 300px; height: 300px;
  background: rgba(200,169,74,.06);
}
.hero-deco--sm-1 {
  top: -100px; right: -100px; width: 500px; height: 500px;
  background: rgba(200,169,74,.08);
}
.hero-deco--sm-2 {
  bottom: -80px; left: -80px; width: 400px; height: 400px;
  background: rgba(255,255,255,.04);
}

/* ════════════════════════════════════════════════════════
   STATS COUNTER
════════════════════════════════════════════════════════ */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 60px 0; overflow: hidden; position: relative;
}
.stats-section::before,
.stats-section::after {
  content: ''; position: absolute;
  border-radius: 50%; pointer-events: none;
}
.stats-section::before {
  width: 360px; height: 360px;
  background: rgba(196,154,40,.08);
  top: -120px; right: -80px;
}
.stats-section::after {
  width: 260px; height: 260px;
  background: rgba(255,255,255,.04);
  bottom: -80px; left: -60px;
}
.stat-item {
  text-align: center; padding: 24px 10px;
  position: relative; transition: transform .3s ease;
}
.stat-item:hover { transform: translateY(-4px); }
/* Vertical divider between stat columns (desktop) */
@media (min-width: 768px) {
  .stats-section .col-md-3:not(:last-child) .stat-item::after {
    content: ''; position: absolute; right: 0; top: 20%; height: 60%;
    width: 1px; background: rgba(255,255,255,.12);
  }
}
.stat-item .stat-icon {
  width: 64px; height: 64px;
  background: rgba(196,154,40,.18);
  border: 2px solid rgba(196,154,40,.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 25px; color: var(--accent-light);
  transition: transform .3s ease, box-shadow .3s ease;
}
.stat-item:hover .stat-icon {
  transform: scale(1.08);
  box-shadow: 0 4px 18px rgba(196,154,40,.25);
}
.stat-item .stat-number {
  font-size: 44px; font-weight: 800; color: var(--white); line-height: 1;
}
.stat-item .stat-number span { color: var(--accent-light); }
.stat-item .stat-label {
  font-size: 13.5px; color: rgba(255,255,255,.72); margin-top: 8px; font-weight: 500;
}

/* ════════════════════════════════════════════════════════
   GENERAL CARD
════════════════════════════════════════════════════════ */
.card-custom {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition); border: 1px solid rgba(0,0,0,.04); height: 100%;
}
.card-custom:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.card-custom .card-img-wrap {
  overflow: hidden; height: 210px; background: var(--light-bg);
}
.card-custom .card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform .5s ease;
}
.card-custom:hover .card-img-wrap img { transform: scale(1.06); }
.card-custom .card-body-custom { padding: 22px; }
.card-custom .card-category {
  font-size: 10.5px; font-weight: 700; color: var(--accent);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px;
}
.card-custom .card-title-custom {
  font-size: 17px; font-weight: 600; color: var(--primary);
  line-height: 1.45; margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.card-custom .card-excerpt {
  font-size: 14px; color: var(--text-gray); line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.card-custom .card-meta {
  font-size: 12.5px; color: var(--text-light);
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--light-gray);
}
.card-custom .card-meta i { color: var(--accent); margin-right: 5px; }
.card-custom .card-link {
  font-size: 13px; font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px;
}
.card-custom .card-link:hover { color: var(--accent); gap: 10px; }

/* ════════════════════════════════════════════════════════
   NEWS LIST ITEM
════════════════════════════════════════════════════════ */
.news-list-item {
  display: flex; gap: 14px; padding: 14px 10px;
  border-bottom: 1px solid var(--light-gray);
  border-radius: var(--radius); transition: var(--transition);
  align-items: flex-start;
  color: inherit; text-decoration: none;
}
.news-list-item:last-child { border-bottom: none; }
.news-list-item:hover { background: var(--light-bg); padding-left: 14px; }
.news-list-item .news-thumb {
  width: 88px; height: 66px; border-radius: var(--radius);
  object-fit: cover; flex-shrink: 0; background: var(--light-gray);
}
.news-list-item .news-info { flex: 1; min-width: 0; }
.news-list-item .news-title {
  font-size: 13.5px; font-weight: 600; color: var(--primary); line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.news-list-item .news-title:hover { color: var(--accent-dark); }
.news-list-item .news-date { font-size: 11.5px; color: var(--text-light); margin-top: 6px; }
.news-list-item .news-date i { color: var(--accent); margin-right: 4px; }

/* ════════════════════════════════════════════════════════
   RELATED NEWS SIDEBAR
════════════════════════════════════════════════════════ */
.related-news-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.related-news-header {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px 14px;
  border-bottom: 1px solid var(--light-gray);
}
.related-news-header h5 {
  margin: 0; font-size: 15px; font-weight: 700;
  color: var(--primary); letter-spacing: .3px;
}
.related-news-bar {
  width: 4px; height: 20px; border-radius: 2px;
  background: var(--accent); flex-shrink: 0;
}
.related-news-list { padding: 4px 0; }
.related-news-card {
  display: block; padding: 10px 18px; text-decoration: none;
  transition: background .2s;
  border-bottom: 1px solid var(--light-gray);
}
.related-news-card:last-child { border-bottom: none; }
.related-news-card:hover { background: var(--light-bg); }
.related-news-badge-inline {
  display: inline-block;
  background: var(--accent); color: var(--primary);
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  padding: 2px 7px; border-radius: 3px; letter-spacing: .4px;
  margin-bottom: 4px;
}
.related-news-body { min-width: 0; }
.related-news-title {
  font-size: 13px; font-weight: 600; color: var(--primary);
  line-height: 1.5; margin: 0 0 4px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  transition: color .2s;
}
.related-news-card:hover .related-news-title { color: var(--accent-dark); }
.related-news-date {
  font-size: 11px; color: var(--text-light);
  display: flex; align-items: center; gap: 5px;
}
.related-news-date i { color: var(--accent); font-size: 10px; }

/* ════════════════════════════════════════════════════════
   EVENT CARD
════════════════════════════════════════════════════════ */
.event-card {
  display: flex; gap: 0; background: var(--white);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 16px;
  transition: var(--transition); border: 1px solid rgba(0,0,0,.04);
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.event-card .event-date-box {
  background: var(--primary); color: var(--white);
  min-width: 78px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 14px 10px; text-align: center; flex-shrink: 0;
}
.event-card .event-date-box .ev-day   { font-size: 30px; font-weight: 800; line-height: 1; }
.event-card .event-date-box .ev-month { font-size: 12px; text-transform: uppercase; color: var(--accent-light); font-weight: 600; margin-top: 4px; }
.event-card .event-date-box .ev-year  { font-size: 11px; color: rgba(255,255,255,.55); margin-top: 2px; }
.event-card .event-info { padding: 14px 16px; flex: 1; min-width: 0; }
.event-card .event-info .ev-category {
  font-size: 10.5px; font-weight: 700; color: var(--accent);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 5px;
}
.event-card .event-info .ev-title {
  font-size: 14.5px; font-weight: 600; color: var(--primary); line-height: 1.4;
}
.event-card .event-info .ev-venue { font-size: 12.5px; color: var(--text-gray); margin-top: 7px; }
.event-card .event-info .ev-venue i { color: var(--accent); margin-right: 5px; }

/* ════════════════════════════════════════════════════════
   PRESIDENT SECTION
════════════════════════════════════════════════════════ */
.president-section { background: var(--light-bg); }
.president-img-wrap { position: relative; display: inline-block; }
.president-img-wrap img {
  width: 260px; height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--accent);
  display: block;
}
.president-img-wrap img[src^="data:image/svg"] {
  object-fit: contain; background: #f0edf8;
}
.president-img-wrap .pres-badge i { color: var(--accent); }
.president-img-wrap .pres-badge {
  position: absolute; bottom: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary); color: var(--white);
  padding: 7px 18px; border-radius: 30px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
  border: 2px solid var(--accent);
  box-shadow: 0 4px 12px rgba(26,40,112,.2);
}
.president-content { padding-left: 42px; }
.president-content h2 {
  color: var(--primary); font-size: 30px; margin-bottom: 16px;
}
.president-content .quote-icon {
  font-size: 70px; color: var(--accent); opacity: .25;
  line-height: .8; margin-bottom: -6px;
  font-family: Georgia,serif; display: block;
}
.president-content .pres-message {
  color: var(--text-gray); font-size: 15px;
  line-height: 1.95; font-style: italic;
}
.president-content .pres-name {
  font-size: 18px; font-weight: 700; color: var(--primary);
  margin-top: 22px; font-style: normal;
}
.president-content .pres-title {
  font-size: 13px; color: var(--accent-dark); font-weight: 600; margin-top: 3px;
}

/* Sponsors section */
.sponsors-section { padding: 50px 0; }
.sponsor-name-fallback {
  text-align: center; padding: 12px;
  font-size: 13px; font-weight: 600;
  color: var(--primary); opacity: .6;
}

/* News inline item body */
.news-inline-body { flex: 1; min-width: 0; }

/* ════════════════════════════════════════════════════════
   MISSION / VISION / OBJECTIVES
════════════════════════════════════════════════════════ */
.mvo-card {
  text-align: center;
  padding: 38px 26px 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border-top: 1px solid rgba(0,0,0,.04);
}
.mvo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover), 0 4px 0 var(--accent);
}
.mvo-card .mvo-icon {
  width: 76px; height: 76px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; font-size: 30px; color: var(--accent-light);
  box-shadow: 0 8px 22px rgba(26,40,112,.22);
}
.mvo-card h4 {
  font-size: 20px; font-weight: 700;
  color: var(--primary); margin-bottom: 14px;
}
.mvo-card p { font-size: 14px; color: var(--text-gray); line-height: 1.8; }
.mvo-card ul { text-align: left; padding-left: 18px; margin-bottom: 0; list-style: disc; }
.mvo-card ul li { font-size: 14px; color: var(--text-gray); padding: 5px 0; line-height: 1.55; }

/* ════════════════════════════════════════════════════════
   MEMBERS / PARTNERS
════════════════════════════════════════════════════════ */
.member-logo-item {
  padding: 12px 22px;
  display: flex; align-items: center; justify-content: center;
}
.member-logo-item img {
  max-height: 60px; max-width: 130px; object-fit: contain;
  filter: grayscale(75%); opacity: .7; transition: var(--transition);
}
.member-logo-item img:hover { filter: grayscale(0); opacity: 1; transform: scale(1.1); }
.member-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px 18px; text-align: center;
  box-shadow: var(--shadow); transition: var(--transition);
  border: 1px solid var(--light-gray); height: 100%;
}
.member-card:hover {
  border-color: var(--accent); transform: translateY(-5px); box-shadow: var(--shadow-hover);
}
.member-card img {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover; border: 3px solid var(--light-gray); margin: 0 auto 14px;
}
.member-card img[src^="data:image/svg"] { object-fit: contain; background: #eef6f0; }
.member-card .member-name    { font-size: 15px; font-weight: 600; color: var(--primary); }
.member-card .member-company { font-size: 13px; color: var(--text-gray); margin-top: 4px; }
.member-card .member-category {
  font-size: 11px; font-weight: 600;
  background: var(--light-bg); color: var(--accent-dark);
  padding: 3px 10px; border-radius: 20px;
  display: inline-block; margin-top: 8px;
}

/* ════════════════════════════════════════════════════════
   LEADERSHIP TEAM
════════════════════════════════════════════════════════ */
.leader-card {
  text-align: center; padding: 28px 18px;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); transition: var(--transition);
  height: 100%; border: 1px solid rgba(0,0,0,.04);
}
.leader-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.leader-card img {
  width: 100px; height: 100px; border-radius: 50%;
  object-fit: cover; border: 4px solid var(--accent); margin: 0 auto 16px;
}
.leader-card img[src^="data:image/svg"] { object-fit: contain; background: #f0edf8; }
.leader-card .leader-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 36px;
  color: var(--accent-light); border: 4px solid var(--accent);
}
.leader-card .leader-name     { font-size: 16px; font-weight: 700; color: var(--primary); }
.leader-card .leader-position { font-size: 13px; color: var(--accent-dark); font-weight: 600; margin-top: 5px; }
.leader-card .leader-term     { font-size: 12px; color: var(--text-light); margin-top: 4px; }

/* ════════════════════════════════════════════════════════
   GALLERY
════════════════════════════════════════════════════════ */
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius); cursor: pointer; height: 220px;
  background: var(--light-bg);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item .gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(26,40,112,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item .gallery-overlay i { font-size: 32px; color: var(--white); }

/* ════════════════════════════════════════════════════════
   SPONSORS
════════════════════════════════════════════════════════ */
.sponsor-item {
  display: flex; align-items: center; justify-content: center;
  padding: 18px 22px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  border: 1px solid var(--light-gray);
  transition: var(--transition); margin-bottom: 16px;
}
.sponsor-item:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.sponsor-item img {
  max-height: 68px; max-width: 180px; object-fit: contain;
  filter: grayscale(50%); transition: var(--transition);
}
.sponsor-item img:hover { filter: grayscale(0); }
.sponsor-item .sponsor-name-text {
  font-size: 15px; font-weight: 600; color: var(--text-gray); text-align: center;
}

/* ════════════════════════════════════════════════════════
   NOTICE TICKER BAR
════════════════════════════════════════════════════════ */
.notice-section { background: var(--primary); padding: 0; overflow: hidden; }
.notice-section .notice-label {
  background: var(--accent); color: var(--primary-dark);
  font-weight: 700; font-size: 12.5px;
  padding: 14px 22px; letter-spacing: 1px; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap; flex-shrink: 0;
}
.notice-section .notice-scroller {
  padding: 14px 18px; color: rgba(255,255,255,.9); font-size: 14px; flex: 1; overflow: hidden;
}
.notice-section .notice-scroller a { color: var(--accent-light); margin-right: 36px; }
.notice-section .notice-scroller a:hover { color: var(--white); }

/* ════════════════════════════════════════════════════════
   PAGE BANNER
════════════════════════════════════════════════════════ */
.page-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 64px 0 56px; position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute;
  bottom: -80px; left: -80px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,.04); border-radius: 50%;
  pointer-events: none;
}
.page-banner::after {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: rgba(196,154,40,.1); border-radius: 50%;
  pointer-events: none;
}
.page-banner h1 {
  font-size: 34px; font-weight: 700; color: var(--white); margin-bottom: 8px;
}
.page-banner .breadcrumb-custom {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: 13px; color: rgba(255,255,255,.65);
}
.page-banner .breadcrumb-custom a { color: var(--accent-light); }
.page-banner .breadcrumb-custom a:hover { color: var(--white); }
.page-banner .breadcrumb-custom .separator { color: rgba(255,255,255,.35); }

/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.78); padding: 60px 0 0;
}
.site-footer .footer-logo img { height: 56px; }
.site-footer .footer-desc {
  font-size: 14px; color: rgba(255,255,255,.6);
  margin-top: 14px; line-height: 1.85;
}
.site-footer h5 {
  color: var(--accent-light); font-size: 15px; font-weight: 700;
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 2px solid rgba(196,154,40,.25);
}
.site-footer ul li { margin-bottom: 9px; }
.site-footer ul li a {
  color: rgba(255,255,255,.62); font-size: 13.5px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .25s ease, transform .25s ease;
}
.site-footer ul li a i { color: var(--accent); font-size: 11px; flex-shrink: 0; }
.site-footer ul li a:hover { color: var(--accent-light); transform: translateX(5px); }
.site-footer .contact-item { display: flex; gap: 12px; margin-bottom: 14px; }
.site-footer .contact-item .ci-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(196,154,40,.12);
  border: 1px solid rgba(196,154,40,.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0; font-size: 13px;
}
.site-footer .contact-item .ci-text { font-size: 13.5px; color: rgba(255,255,255,.62); line-height: 1.55; }
.site-footer .social-links { display: flex; gap: 9px; margin-top: 16px; flex-wrap: wrap; }
.site-footer .social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: #fff; transition: transform .2s, background .2s, border-color .2s;
  text-decoration: none;
}
.site-footer .social-links a:hover { transform: translateY(-3px) scale(1.1); border-color: transparent; }
.site-footer .social-links a[title="Facebook"]:hover  { background: #1877f2; }
.site-footer .social-links a[title="Instagram"]:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.site-footer .social-links a[title="Twitter / X"]:hover { background: #000; }
.site-footer .social-links a[title="YouTube"]:hover   { background: #ff0000; }
.site-footer .social-links a[title="LinkedIn"]:hover  { background: #0077b5; }
.site-footer .social-links a[title="WhatsApp"]:hover  { background: #25d366; }

/* Contact page social icons */
.contact-social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-social-links a {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #fff; text-decoration: none;
  transition: transform .2s, opacity .2s; opacity: .92;
}
.contact-social-links a:hover { transform: translateY(-3px) scale(1.1); opacity: 1; }

.footer-bottom {
  background: rgba(0,0,0,.24); padding: 15px 0; margin-top: 40px;
  font-size: 13px; color: rgba(255,255,255,.45);
}
.footer-bottom a { color: var(--accent-light); }
.footer-bottom a:hover { color: var(--white); }

/* ════════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════ */
.btn-primary-custom {
  background: var(--primary); color: var(--white);
  padding: 10px 26px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px;
  border: 2px solid var(--primary); transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary-custom:hover {
  background: var(--primary-dark); border-color: var(--primary-dark);
  color: var(--white); transform: translateY(-2px);
}
.btn-accent-custom {
  background: var(--accent); color: var(--primary-dark);
  padding: 10px 26px; border-radius: var(--radius);
  font-weight: 700; font-size: 14px;
  border: 2px solid var(--accent); transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-accent-custom:hover {
  background: var(--accent-dark); border-color: var(--accent-dark);
  color: var(--primary-dark); transform: translateY(-2px);
}
.btn-outline-custom {
  background: transparent; color: var(--primary);
  padding: 9px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px; border: 2px solid var(--primary);
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-custom:hover { background: var(--primary); color: var(--white); }
.view-all-link {
  font-size: 13.5px; font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border: 1.5px solid var(--primary);
  border-radius: var(--radius); transition: var(--transition); white-space: nowrap;
}
.view-all-link:hover { background: var(--primary); color: var(--white); gap: 10px; }

/* ════════════════════════════════════════════════════════
   FILTER TABS
════════════════════════════════════════════════════════ */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-tabs .filter-btn {
  padding: 7px 18px; font-size: 13px; font-weight: 600;
  border-radius: 30px; border: 1.5px solid var(--border);
  background: var(--white); color: var(--text-gray); cursor: pointer; transition: var(--transition);
}
.filter-tabs .filter-btn.active,
.filter-tabs .filter-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ════════════════════════════════════════════════════════
   CONTACT FORM & INFO
════════════════════════════════════════════════════════ */
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-label { font-size: 13.5px; font-weight: 600; color: var(--primary); margin-bottom: 7px; display: block; }
.form-control-custom {
  width: 100%; padding: 11px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 14px; color: var(--text-dark); transition: var(--transition);
  background: var(--white); font-family: var(--font-main);
}
.form-control-custom:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,40,112,.18);
}
.form-control-custom::placeholder { color: var(--text-light); }
.contact-info-card {
  background: var(--primary); border-radius: var(--radius-lg);
  padding: 36px; color: var(--white); height: 100%;
}
.contact-info-card h4 { color: var(--accent-light); font-size: 20px; margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-info-item .ci-icon-wrap {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(196,154,40,.18); border: 1px solid rgba(196,154,40,.38);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-light); flex-shrink: 0;
}
.contact-info-item .ci-content .ci-title {
  font-size: 11.5px; color: rgba(255,255,255,.48);
  text-transform: uppercase; letter-spacing: 1px;
}
.contact-info-item .ci-content .ci-value {
  font-size: 14px; color: rgba(255,255,255,.84); margin-top: 4px;
}

/* ════════════════════════════════════════════════════════
   PUBLICATIONS
════════════════════════════════════════════════════════ */
.publication-item {
  display: flex; gap: 16px; align-items: center;
  background: var(--white); border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  margin-bottom: 14px; transition: var(--transition);
  border: 1px solid var(--light-gray);
}
.publication-item:hover { border-color: var(--accent); transform: translateX(5px); }
.publication-item .pub-icon {
  width: 50px; height: 50px; border-radius: var(--radius);
  background: rgba(220,53,69,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--danger); font-size: 22px; flex-shrink: 0;
}
.publication-item .pub-info .pub-title { font-size: 15px; font-weight: 600; color: var(--primary); }
.publication-item .pub-info .pub-meta  { font-size: 12px; color: var(--text-light); margin-top: 4px; }
.publication-item .pub-download {
  margin-left: auto; background: var(--accent); color: var(--primary-dark);
  padding: 7px 16px; border-radius: var(--radius);
  font-size: 13px; font-weight: 600; flex-shrink: 0;
  display: flex; align-items: center; gap: 6px;
}
.publication-item .pub-download:hover { background: var(--accent-dark); }

/* ════════════════════════════════════════════════════════
   PAGINATION
════════════════════════════════════════════════════════ */
.pagination-custom { display: flex; gap: 6px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.pagination-custom a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); background: var(--white); color: var(--primary);
  font-size: 14px; font-weight: 600; border: 1.5px solid var(--border); transition: var(--transition);
}
.pagination-custom a:hover,
.pagination-custom a.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ════════════════════════════════════════════════════════
   ALERTS
════════════════════════════════════════════════════════ */
.alert-custom {
  padding: 12px 18px; border-radius: var(--radius); font-size: 14px;
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.alert-success { background: #d1e7dd; color: #0a3622; border-left: 4px solid var(--success); }
.alert-error   { background: #f8d7da; color: #58151c; border-left: 4px solid var(--danger); }
.alert-info    { background: #cff4fc; color: #055160; border-left: 4px solid #0dcaf0; }

/* ════════════════════════════════════════════════════════
   UTILITIES
════════════════════════════════════════════════════════ */
.text-accent         { color: var(--accent)  !important; }
.text-primary-custom { color: var(--primary) !important; }
.bg-primary-c        { background: var(--primary) !important; }
.bg-accent-c         { background: var(--accent)  !important; }
.rounded-custom      { border-radius: var(--radius) !important; }
.shadow-custom       { box-shadow: var(--shadow)   !important; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

.badge-accent {
  background: var(--accent); color: var(--primary);
  font-size: 10.5px; padding: 3px 10px; border-radius: 20px; font-weight: 700;
}
.badge-primary {
  background: var(--primary); color: var(--white);
  font-size: 10.5px; padding: 3px 10px; border-radius: 20px; font-weight: 700;
}
.separator-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 36px 0;
}

/* ════════════════════════════════════════════════════════
   CTA BANNER SECTION
════════════════════════════════════════════════════════ */
.cta-banner-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 60px 0; position: relative; overflow: hidden;
}
.cta-banner-section::before {
  content: ''; position: absolute; top: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(196,154,40,.08); border-radius: 50%;
  pointer-events: none;
}
.cta-banner-heading {
  color: var(--accent); font-weight: 800; font-size: 32px;
  margin-bottom: 12px;
}
.cta-banner-text {
  color: rgba(255,255,255,.8); font-size: 16px;
  margin-bottom: 28px; max-width: 600px;
  margin-left: auto; margin-right: auto;
}
.cta-banner-btn {
  background: var(--cta) !important; border-color: var(--cta) !important;
  color: #fff !important;
}
.cta-banner-btn:hover {
  background: var(--cta-dark) !important; border-color: var(--cta-dark) !important;
}
.cta-banner-outline {
  border-color: var(--accent) !important; color: var(--accent) !important;
}
.cta-banner-outline:hover {
  background: var(--accent) !important; color: var(--primary-dark) !important;
}

/* ════════════════════════════════════════════════════════
   NEED HELP CARD (Join page)
════════════════════════════════════════════════════════ */
.need-help-card {
  margin-bottom: 64px !important;
  margin-top: 32px !important;
  z-index: 10;
  position: relative;
  box-shadow: 0 12px 36px rgba(26,40,112,0.18);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 32px 0;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .need-help-card {
    margin-bottom: 80px !important;
    padding: 24px 0;
    min-height: 180px;
  }
}

/* ════════════════════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════════════════ */
.about-logo-img {
  width: 80px; height: 80px;
  object-fit: contain; display: block; margin: 0 auto;
  border-radius: 50%;
  border: 2.5px solid var(--accent);
  box-shadow: 0 4px 16px rgba(26,40,112,0.13);
  background: var(--white);
}
.about-intro-heading {
  color: var(--primary); font-size: 32px;
  margin-bottom: 18px; line-height: 1.3;
}
.about-intro-text {
  color: var(--text-gray); font-size: 15px; line-height: 1.9;
}
.about-stat-box {
  background: var(--light-bg); border-radius: var(--radius); padding: 18px;
}
.about-stat-box--accent { border-left: 4px solid var(--accent); }
.about-stat-box--primary { border-left: 4px solid var(--primary); }
.about-stat-number {
  font-size: 28px; font-weight: 800; color: var(--primary);
}
.about-stat-label {
  font-size: 13px; color: var(--text-gray);
}
.about-info-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg); padding: 40px;
  color: white; text-align: center; position: relative; overflow: hidden;
}
.about-info-title {
  color: var(--accent-light); font-size: 22px; margin-bottom: 6px;
}
.about-info-stat-number {
  font-size: 24px; font-weight: 800; color: var(--accent-light);
}
.about-info-stat-label {
  font-size: 11px; color: rgba(255,255,255,0.6);
}
.about-registered-badge {
  position: absolute; bottom: -16px; right: 20px;
  background: var(--accent); color: var(--primary);
  padding: 8px 20px; border-radius: var(--radius);
  font-weight: 700; font-size: 13px;
}
.about-info-watermark {
  font-size: 64px; font-weight: 900; opacity: 0.1;
  position: absolute; top: 10px; left: 20px; font-family: Georgia;
}
.about-info-logo-wrap {
  width: 90px; height: 90px;
  background: rgba(200,169,74,0.2); border: 3px solid var(--accent);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px; overflow: hidden;
}
.about-info-logo-fallback {
  font-size: 32px; font-weight: 900; color: var(--accent-light);
}
.about-info-divider {
  border-color: rgba(255,255,255,0.15); margin: 20px 0;
}

/* About Objectives */
.about-objectives-list {
  text-align: left; padding-left: 16px; line-height: 2;
}
.about-objectives-item {
  font-size: 14px; color: var(--text-gray);
}

/* About Timeline */
.about-timeline {
  position: relative; padding-left: 36px;
  border-left: 3px solid var(--accent);
}
.about-timeline-item {
  position: relative; margin-bottom: 32px;
}
.about-timeline-dot {
  position: absolute; left: -46px; top: 2px;
  width: 24px; height: 24px;
  background: var(--accent); border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--accent);
}
.about-timeline-card {
  background: var(--white); border-radius: var(--radius);
  padding: 20px 24px; box-shadow: var(--shadow);
  border-left: 3px solid var(--primary);
}
.about-timeline-year {
  background: var(--primary); color: var(--accent-light);
  padding: 3px 12px; border-radius: 20px;
  font-size: 12px; font-weight: 700;
}
.about-timeline-title {
  color: var(--primary); font-weight: 700; margin: 10px 0 6px;
}
.about-timeline-desc {
  color: var(--text-gray); font-size: 14px; margin: 0;
}

/* President Message Card */
.pres-card-photo-wrap {
  position: relative; display: inline-block;
}
.pres-card-photo {
  width: 260px; height: 320px; object-fit: cover;
  border-radius: var(--radius-lg); border: 4px solid var(--accent);
  display: block;
}
.pres-card-photo[src^="data:image/svg"] {
  object-fit: contain; background: #f0edf8;
}
.pres-card-badge {
  position: absolute; bottom: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary); color: var(--white);
  padding: 7px 18px; border-radius: 30px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
  border: 2px solid var(--accent);
  box-shadow: 0 4px 12px rgba(26,40,112,.2);
}
.pres-card-badge i { color: var(--accent); }
.pres-card-content { padding-left: 20px; }
.pres-card-quote {
  font-size: 60px; color: var(--accent); opacity: .25;
  line-height: .8; margin-bottom: -8px;
  font-family: Georgia, serif; display: block;
}
.pres-card-msg {
  color: var(--text-gray); font-size: 15px;
  line-height: 1.9; font-style: italic; margin: 0;
}
.pres-card-name {
  font-size: 20px; font-weight: 700; color: var(--primary);
  margin-top: 22px;
}
.pres-card-role {
  font-size: 13px; font-weight: 600; color: var(--accent-dark);
  margin-top: 3px;
}

/* ════════════════════════════════════════════════════════
   MEDIA COVERAGE PAGE
════════════════════════════════════════════════════════ */
.mc-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  height: 100%;
}
.mc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,40,112,.12);
  color: inherit;
}
.mc-card-img {
  position: relative; overflow: hidden;
  height: 220px; background: #f5f5f5;
}
.mc-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s;
}
.mc-card:hover .mc-card-img img { transform: scale(1.04); }
.mc-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--light-bg);
}
.mc-card-placeholder i {
  font-size: 48px; color: var(--light-gray);
}
.mc-source-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(26,40,112,.85); color: var(--white);
  padding: 4px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 600;
  backdrop-filter: blur(4px);
}
.mc-card-body {
  padding: 20px;
}
.mc-card-date {
  font-size: 12px; color: var(--text-light); margin-bottom: 8px;
}
.mc-card-date i { margin-right: 5px; color: var(--accent); }
.mc-card-title {
  font-size: 16px; font-weight: 700; color: var(--primary);
  line-height: 1.4; margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.mc-card-desc {
  font-size: 13.5px; color: var(--text-gray);
  line-height: 1.7; margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.mc-card-link {
  font-size: 13px; font-weight: 600; color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
}
.mc-card:hover .mc-card-link { color: var(--primary); }
.mc-card-link i { font-size: 10px; }

/* ════════════════════════════════════════════════════════
   NEWS DETAIL PAGE
════════════════════════════════════════════════════════ */
.nd-title {
  font-size: 24px; font-weight: 700; color: var(--primary);
  line-height: 1.4; margin-bottom: 14px;
}
.nd-meta {
  display: flex; gap: 18px; color: var(--text-light); font-size: 13px;
  padding-bottom: 14px; border-bottom: 1px solid var(--light-gray);
  margin-bottom: 20px;
}
.nd-meta i { color: var(--accent); }
.nd-featured-img {
  width: 100%; max-height: 400px; object-fit: cover;
  border-radius: var(--radius); margin-bottom: 20px;
}
.nd-content { line-height: 1.9; color: var(--text-gray); font-size: 15px; }
.nd-share {
  margin-top: 28px; padding-top: 18px;
  border-top: 1px solid var(--light-gray);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.nd-share-label {
  font-weight: 600; color: var(--primary); font-size: 14px;
}
.nd-share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  color: #fff; padding: 6px 12px; border-radius: 6px;
  font-size: 12px; text-decoration: none; transition: opacity .2s;
}
.nd-share-btn:hover { opacity: .85; color: #fff; }
.nd-share-btn.fb  { background: #1877f2; }
.nd-share-btn.tw  { background: #000; }
.nd-share-btn.wa  { background: #25d366; }
.nd-share-btn.cp  {
  background: var(--light-bg); color: var(--primary);
  border: 1px solid var(--light-gray);
}
.nd-share-btn.cp:hover { color: var(--primary); }

/* Publication Sidebar — compact list */
.nd-pub-box {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.nd-pub-header {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px 10px;
  border-bottom: 1px solid var(--light-gray);
}
.nd-pub-header h5 {
  margin: 0; font-size: 14px; font-weight: 700;
  color: var(--primary); letter-spacing: .3px;
}
.nd-pub-bar {
  width: 4px; height: 18px; border-radius: 2px;
  background: var(--accent); flex-shrink: 0;
}
.nd-pub-list {
  list-style: none; margin: 0; padding: 4px 0;
}
.nd-pub-list li {
  border-bottom: 1px solid var(--light-gray);
}
.nd-pub-list li:last-child { border-bottom: none; }
.nd-pub-link {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 16px; text-decoration: none;
  transition: background .15s;
}
.nd-pub-link:hover { background: var(--light-bg); }
.nd-pub-ico {
  color: var(--danger); font-size: 13px; flex-shrink: 0;
  width: 16px; text-align: center;
}
.nd-pub-name {
  flex: 1; min-width: 0;
  font-size: 12.5px; font-weight: 600; color: var(--primary);
  line-height: 1.35;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nd-pub-link:hover .nd-pub-name { color: var(--accent-dark); }
.nd-pub-yr {
  font-size: 10.5px; color: var(--text-light); flex-shrink: 0;
}
.nd-pub-all {
  display: block; text-align: center;
  padding: 8px 16px; font-size: 12px; font-weight: 600;
  color: var(--accent); text-decoration: none;
  border-top: 1px solid var(--light-gray);
  transition: background .15s;
}
.nd-pub-all:hover {
  background: var(--light-bg); color: var(--accent-dark);
}

/* ════════════════════════════════════════════════════════
   JOIN / MEMBERSHIP PAGE
════════════════════════════════════════════════════════ */
.join-subtitle {
  color: var(--text-gray); font-size: 14px; margin-bottom: 24px;
}
.join-section-header {
  background: var(--off-white); border-radius: var(--radius);
  padding: 14px 20px; margin-bottom: 22px;
}
.join-section-header h6 {
  color: var(--primary); font-weight: 700; margin-bottom: 0;
}
.join-section-header h6 i { color: var(--accent); }
.join-file-input { padding: 10px 14px; cursor: pointer; }
.join-file-hint { font-size: 12px; color: var(--text-light); }
.font-np { font-family: 'Noto Sans Devanagari', sans-serif; }
.text-danger { color: var(--danger); }
.join-agree-box {
  background: rgba(26,60,94,0.04); border: 1px solid var(--light-gray);
  border-radius: var(--radius); padding: 16px;
}
.join-agree-check {
  margin-top: 3px; accent-color: var(--primary);
  width: 16px; height: 16px; flex-shrink: 0;
}
.join-agree-label {
  font-size: 13px; color: var(--text-gray); cursor: pointer;
}
.join-submit-btn {
  font-size: 15px; padding: 13px 40px;
}

/* Success State */
.join-success { text-align: center; padding: 40px 20px; }
.join-success-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 24px;
}
.join-success-icon i { font-size: 36px; color: #fff; }
.join-success-title {
  color: var(--primary); font-weight: 700; margin-bottom: 12px;
}
.join-success-text {
  color: var(--text-gray); font-size: 15px;
  max-width: 480px; margin: 0 auto 8px;
}
.join-success-sm { font-size: 14px; margin-bottom: 28px; }
.join-success-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.join-next-box {
  margin-top: 28px; background: var(--off-white);
  border-radius: var(--radius); padding: 16px 20px;
  text-align: left; max-width: 420px; margin-left: auto; margin-right: auto;
}
.join-next-label {
  font-size: 12px; color: var(--text-gray);
  font-weight: 600; margin-bottom: 8px;
}
.join-next-steps {
  display: flex; flex-direction: column; gap: 8px;
}
.join-next-step {
  display: flex; gap: 10px; font-size: 13px; color: var(--text-gray);
}
.join-next-step i {
  color: var(--accent); margin-top: 2px; flex-shrink: 0;
}

/* Sidebar: Why Join + Categories (shared box style) */
.join-why-box {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.join-why-header {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px 10px;
  border-bottom: 1px solid var(--light-gray);
}
.join-why-header h5 {
  margin: 0; font-size: 14px; font-weight: 700;
  color: var(--primary); letter-spacing: .3px;
}
.join-why-bar {
  width: 4px; height: 18px; border-radius: 2px;
  background: var(--accent); flex-shrink: 0;
}
.join-why-list {
  list-style: none; margin: 0; padding: 4px 0;
}
.join-why-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 16px; font-size: 12.5px; color: var(--text-gray);
  border-bottom: 1px solid var(--light-gray);
  line-height: 1.4;
}
.join-why-list li:last-child { border-bottom: none; }
.join-why-list li i {
  color: var(--accent); font-size: 11px; flex-shrink: 0; width: 14px;
  text-align: center;
}
.join-why-list li strong { color: var(--primary); font-weight: 600; }
.join-cat-dot { font-size: 6px !important; }

/* Sidebar: Need Help */
.join-help-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 18px 20px;
}
.join-help-title {
  color: var(--accent-light); margin-bottom: 8px; font-size: 15px;
}
.join-help-desc {
  font-size: 12px; opacity: 0.85; margin-bottom: 12px;
}
.join-help-contacts {
  font-size: 12.5px; display: flex; flex-direction: column; gap: 6px;
}
.join-help-contacts i { color: var(--accent); }
.join-help-btn {
  display: block; text-align: center; margin-top: 14px;
  background: var(--accent); color: var(--primary);
  padding: 8px 16px; border-radius: 6px;
  font-size: 12.5px; font-weight: 700; text-decoration: none;
  transition: opacity .2s;
}
.join-help-btn:hover { opacity: .9; color: var(--primary); }

/* ════════════════════════════════════════════════════════
   SEARCH OVERLAY
════════════════════════════════════════════════════════ */
.search-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(10,20,40,0.85); z-index: 9999;
  align-items: flex-start; justify-content: center;
  padding-top: 80px;
}
.search-overlay-inner {
  width: 100%; max-width: 640px; padding: 0 16px;
}
.search-overlay-form {
  background: #fff; border-radius: 12px;
  display: flex; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.search-overlay-input {
  flex: 1; border: none; padding: 18px 20px;
  font-size: 16px; outline: none; font-family: inherit;
}
.search-overlay-btn {
  background: var(--accent); border: none;
  padding: 0 22px; cursor: pointer;
}
.search-overlay-icon {
  font-size: 18px; color: var(--primary);
}
.search-overlay-hint {
  text-align: center; margin-top: 14px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.search-overlay-kbd {
  background: rgba(255,255,255,0.15); color: #fff;
  padding: 2px 8px; border-radius: 4px; font-family: monospace;
}

/* ════════════════════════════════════════════════════════
   CONTACT SUBMIT BUTTON
════════════════════════════════════════════════════════ */
.contact-submit-btn {
  font-size: 15px; padding: 12px 36px;
}
.contact-map-wrap {
  border-radius: var(--radius-lg); overflow: hidden; height: 400px;
}

/* ════════════════════════════════════════════════════════
   FOOTER BRAND
════════════════════════════════════════════════════════ */
.footer-logo-img {
  height: 64px; width: auto; margin-bottom: 14px; object-fit: contain;
}
.footer-logo-fallback {
  width: 64px; height: 64px;
  background: rgba(200,169,74,0.15); border: 2px solid rgba(200,169,74,0.3);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin-bottom: 14px;
}
.footer-logo-text {
  font-size: 20px; font-weight: 800; color: var(--accent-light);
}
.footer-org-name {
  color: var(--accent-light); font-size: 16px;
  font-weight: 700; line-height: 1.3;
}
.footer-org-sub {
  font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px;
}
.text-muted-light { opacity: 0.7; }
.text-danger { color: var(--danger); }

/* ════════════════════════════════════════════════════════
   NEWS HERO CARD (Homepage)
════════════════════════════════════════════════════════ */
.news-hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.04);
  overflow: hidden;
  margin-bottom: 16px;
}
.news-hero-card .news-hero-img {
  width: 100%; height: 100%;
  min-height: 220px; object-fit: cover; display: block;
}
.news-hero-card .news-hero-body { padding: 24px 26px; }
.news-hero-card .news-hero-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  background: var(--accent); color: #fff;
  padding: 2px 9px; border-radius: 4px;
  letter-spacing: .5px; margin-bottom: 8px;
}
.news-hero-card .news-hero-meta {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 12px;
  border-top: 1px solid var(--light-gray);
  font-size: 12.5px; color: var(--text-light);
}
.news-hero-card .news-hero-meta i { color: var(--accent); margin-right: 5px; }
.news-hero-card .card-category {
  font-size: 10.5px; font-weight: 700; color: var(--accent);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px;
}
.news-hero-card .card-title-custom {
  font-size: 19px; font-weight: 600; color: var(--primary);
  line-height: 1.45; margin-bottom: 10px;
}
.news-hero-card .card-title-custom a { color: inherit; text-decoration: none; }
.news-hero-card .card-title-custom a:hover { color: var(--accent-dark); }
.news-hero-card .card-excerpt {
  font-size: 14px; color: var(--text-gray); line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.news-hero-card .card-link {
  font-size: 13px; font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none;
}
.news-hero-card .card-link:hover { color: var(--accent); gap: 10px; }

/* ════════════════════════════════════════════════════════
   QUICK LINKS BOX (Homepage sidebar)
════════════════════════════════════════════════════════ */
.quick-links-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.04);
  padding: 22px; margin-top: 20px;
}
.quick-links-box h5 {
  font-size: 15px; font-weight: 700;
  color: var(--primary); margin-bottom: 14px;
}
.quick-links-box h5 i { color: var(--accent); margin-right: 8px; }
.quick-link-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; font-size: 14px; font-weight: 500;
  color: var(--primary); text-decoration: none;
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}
.quick-link-item:last-child { border-bottom: none; }
.quick-link-item:hover { color: var(--accent); padding-left: 4px; }
.quick-link-item i:first-child { color: var(--accent); width: 16px; text-align: center; flex-shrink: 0; }
.quick-link-item .fa-chevron-right { font-size: 11px; color: var(--text-light); margin-left: auto; }

/* ════════════════════════════════════════════════════════
   PROVINCE CARD (Homepage)
════════════════════════════════════════════════════════ */
a.province-card, .province-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 20px; text-align: center;
  transition: var(--transition);
  display: block; text-decoration: none; cursor: pointer;
}
a.province-card:hover, .province-card:hover {
  background: rgba(196,154,40,.15);
  border-color: rgba(196,154,40,.4);
  transform: translateY(-3px);
}
.province-card .province-icon {
  font-size: 28px; color: var(--accent-light);
  margin-bottom: 10px; display: block;
}
.province-card .province-img {
  width: 40px; height: 40px; object-fit: contain;
  margin: 0 auto 10px; display: block;
}
.province-card .province-name {
  font-weight: 600; color: var(--white); font-size: 14px;
}
.province-card .province-name-np {
  font-size: 12px; color: rgba(255,255,255,.5);
  margin-top: 3px; font-family: 'Noto Sans Devanagari', sans-serif;
}

/* ════════════════════════════════════════════════════════
   NAVBAR ACTION BUTTONS
════════════════════════════════════════════════════════ */
.nav-search-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.15);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.9);
  text-decoration: none; transition: background .2s, color .2s;
  font-size: 13px;
}
.nav-search-btn:hover {
  background: var(--accent); color: var(--primary);
}
.nav-join-btn {
  background: var(--cta); color: #fff;
  font-weight: 700; font-size: 12px;
  padding: 6px 14px; border-radius: 6px;
  text-decoration: none; white-space: nowrap;
  transition: background .2s, transform .2s;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-join-btn:hover {
  background: var(--cta-dark); color: #fff;
  transform: translateY(-1px);
}
.nav-lang-badge {
  background: rgba(255,255,255,.15);
  border-radius: 4px; padding: 5px 10px;
  font-size: 12px; color: rgba(255,255,255,.8);
  display: inline-flex; align-items: center; gap: 5px;
}
.nav-lang-badge img { height: 14px; width: auto; vertical-align: middle; }

/* ════════════════════════════════════════════════════════
   EMPTY STATE
════════════════════════════════════════════════════════ */
.empty-state {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 40px; text-align: center;
  color: var(--text-light);
}
.empty-state i {
  font-size: 36px; margin-bottom: 12px;
  display: block; opacity: .35;
}

/* ════════════════════════════════════════════════════════
   NEWS LIST INLINE ITEMS (Homepage)
════════════════════════════════════════════════════════ */
.news-inline-list {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.04);
}
.news-inline-item {
  display: flex; gap: 14px; padding: 14px 16px;
  align-items: flex-start; text-decoration: none;
  color: inherit; transition: background .2s;
  border-bottom: 1px solid var(--light-gray);
}
.news-inline-item:last-child { border-bottom: none; }
.news-inline-item:hover { background: var(--light-bg); }
.news-inline-item .news-inline-thumb {
  width: 88px; height: 66px; object-fit: cover;
  border-radius: var(--radius); flex-shrink: 0;
}
.news-inline-item .news-inline-title {
  font-size: 13.5px; font-weight: 600; color: var(--primary);
  line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 6px;
}
.news-inline-item .news-inline-meta {
  font-size: 11.5px; color: var(--text-light);
  display: flex; flex-wrap: wrap; align-items: center; gap: 5px;
}
.news-inline-item .news-inline-meta i { color: var(--accent); margin-right: 3px; }
.news-inline-tag {
  font-size: 9px; background: var(--accent); color: #fff;
  padding: 1px 6px; border-radius: 3px; font-weight: 700;
}
.news-inline-cat {
  background: var(--light-bg); color: var(--text-gray);
  padding: 1px 7px; border-radius: 3px; font-size: 11px;
}

/* ════════════════════════════════════════════════════════
   REVEAL ANIMATION
════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.animate-fade { animation: fadeIn 0.6s ease; }
.animate-up   { animation: fadeInUp 0.6s ease; }

/* ════════════════════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════════════════════ */
#backToTop {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--primary); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; visibility: hidden;
  transition: var(--transition); z-index: 9990;
  border: 2px solid var(--accent); font-size: 15px;
}
#backToTop.visible { opacity: 1; visibility: visible; }
#backToTop:hover { background: var(--accent); color: var(--primary); }

/* ════════════════════════════════════════════════════════
   PRELOADER
════════════════════════════════════════════════════════ */
#preloader {
  position: fixed; inset: 0; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999; transition: opacity 0.4s ease;
}
#preloader.hidden { opacity: 0; pointer-events: none; }
.preloader-spinner {
  width: 50px; height: 50px;
  border: 4px solid var(--light-gray);
  border-top-color: var(--primary); border-right-color: var(--accent);
  border-radius: 50%; animation: spin 0.8s linear infinite;
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {
  .hero-slider .carousel-caption h2 { font-size: 38px; }
  .hero-slider .carousel-item,
  .hero-slider .carousel-item > div[style*="background"] { height: 500px; }
}

@media (max-width: 991px) {
  section { padding: 52px 0; }
  .hero-slider .carousel-item,
  .hero-slider .carousel-item > div[style*="background"] { height: 420px; }
  .hero-slider .carousel-caption h2 { font-size: 30px; }
  .hero-slider .carousel-caption p  { font-size: 15px; }
  .president-content { padding-left: 20px; }
  .president-img-wrap img { width: 220px; height: 268px; }
  .stat-item .stat-number { font-size: 36px; }
  .main-navbar .navbar-nav .nav-item .nav-link { padding: 10px 12px !important; }
  .section-header h2 { font-size: 28px; }
}

@media (max-width: 767px) {
  .topbar .topbar-left { display: none !important; }
  .hero-slider .carousel-item,
  .hero-slider .carousel-item > div[style*="background"] { height: 360px; }
  .hero-slider .carousel-caption h2 { font-size: 24px; }
  .hero-slider .carousel-caption p  { display: none; }
  .president-content  { padding-left: 0; margin-top: 36px; }
  .president-img-wrap img { width: 180px; height: 220px; }
  .contact-form-wrap { padding: 24px; }
  .site-footer { padding: 40px 0 0; }
  .section-header h2 { font-size: 24px; }
  .page-banner h1 { font-size: 26px; }
  .event-card { flex-direction: column; }
  .event-card .event-date-box {
    flex-direction: row; gap: 12px;
    padding: 12px 16px; min-width: auto;
  }
  .mvo-card { padding: 28px 20px 24px; }
}

@media (max-width: 575px) {
  .hero-slider .carousel-caption { text-align: center; }
  .hero-slider .carousel-caption h2 { font-size: 20px; }
  .hero-slider .carousel-item,
  .hero-slider .carousel-item > div[style*="background"] { height: 300px; }
  .hero-slider .ticker-wrap { display: none; }
  .president-img-wrap img { width: 150px; height: 184px; }
  .president-img-wrap .pres-badge { font-size: 11px; padding: 6px 14px; }
  .contact-form-wrap { padding: 18px; }
  .section-header h2 { font-size: 22px; }
}
