/* ============================================================
   CEWA Portal - Main Stylesheet
   Theme: Forest Green (#1A4D1A) + Saffron (#E8620A) + Gold (#F5A623)
   Logo colors: Dark Green + Saffron + Gold + Maroon
   Font: Noto Sans Devanagari + Inter
   Mobile-first responsive
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Variables --- */
:root {
  --navy:      #1A4D1A;
  --navy-dk:   #0D3B0D;
  --navy-lt:   #2E6B2E;
  --saffron:   #E8620A;
  --saffron-dk:#C4510A;
  --gold:      #F5A623;
  --maroon:    #8B0000;
  --success:   #28a745;
  --danger:    #dc3545;
  --warning:   #ffc107;
  --info:      #17a2b8;
  --white:     #FFFFFF;
  --gray-50:   #F8F9FA;
  --gray-100:  #F0F2F5;
  --gray-200:  #E9ECEF;
  --gray-400:  #CED4DA;
  --gray-600:  #6C757D;
  --gray-800:  #343A40;
  --text:      #2D3748;
  --shadow:    0 2px 12px rgba(26,77,26,.12);
  --shadow-lg: 0 8px 32px rgba(26,77,26,.18);
  --radius:    10px;
  --radius-lg: 16px;
  --font-mr:   'Noto Sans Devanagari', sans-serif;
  --font-en:   'Inter', sans-serif;
  --transition: all 0.25s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-mr);
  font-size: 15px;
  color: var(--text);
  background: var(--gray-100);
  line-height: 1.7;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--saffron); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.3; color: var(--navy); }
h1 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h2 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }
p { margin-bottom: .75rem; }
.text-saffron  { color: var(--saffron); }
.text-navy     { color: var(--navy); }
.text-gold     { color: var(--gold); }
.text-muted    { color: var(--gray-600); }
.text-center   { text-align: center; }
.font-en       { font-family: var(--font-en); }

/* --- Layout --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.container-sm { max-width: 720px; }
.container-lg { max-width: 1400px; }
.row { display: flex; flex-wrap: wrap; gap: 20px; }
.col { flex: 1; min-width: 280px; }

/* --- Header / Navbar --- */
.site-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.header-top {
  background: var(--navy-dk);
  padding: 6px 0;
  font-size: 12px;
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: space-between;
}
.header-top a { color: rgba(255,255,255,.8); margin-left: 15px; }
.header-top a:hover { color: var(--gold); }
.header-social a { font-size: 14px; }

.navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; gap: 16px;
}
.navbar-brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--white);
}
.navbar-logo {
  width: 52px; height: 52px; object-fit: contain;
  background: var(--white); border-radius: 50%; padding: 4px;
}
.navbar-brand-text .org-name {
  font-size: 14px; font-weight: 700; color: var(--white); display: block; line-height: 1.2;
}
.navbar-brand-text .org-sub {
  font-size: 11px; color: var(--gold); font-family: var(--font-en);
}
.navbar-nav {
  display: flex; align-items: center; gap: 4px; flex-wrap: wrap;
}
.navbar-nav a {
  color: rgba(255,255,255,.85); padding: 8px 12px; border-radius: 6px;
  font-size: 13.5px; font-weight: 500; white-space: nowrap;
  transition: var(--transition);
}
.navbar-nav a:hover, .navbar-nav a.active {
  background: rgba(255,255,255,.12); color: var(--white);
}
.navbar-nav .has-dropdown { position: relative; }
.navbar-nav .has-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); box-shadow: var(--shadow-lg);
  border-radius: 8px; min-width: 220px; z-index: 999;
  border-top: 3px solid var(--saffron);
  overflow: hidden;
}
.dropdown-menu a {
  display: block; padding: 10px 16px; color: var(--text);
  font-size: 13.5px; border-bottom: 1px solid var(--gray-100);
}
.dropdown-menu a:hover { background: var(--gray-50); color: var(--saffron); }
.btn-join {
  background: var(--saffron); color: var(--white) !important;
  padding: 8px 18px !important; border-radius: 20px !important;
  font-weight: 600 !important;
}
.btn-join:hover { background: var(--saffron-dk) !important; }

.hamburger { display: none; cursor: pointer; color: var(--white); font-size: 24px; background: none; border: none; }

/* --- News Ticker --- */
.news-ticker {
  background: var(--saffron); color: var(--white);
  padding: 8px 0; overflow: hidden;
  display: flex; align-items: center; gap: 12px;
}
.ticker-label {
  background: var(--navy); color: var(--white);
  padding: 4px 14px; white-space: nowrap;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
  border-radius: 0 20px 20px 0;
}
.ticker-content { overflow: hidden; flex: 1; }
.ticker-text {
  display: inline-block; white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  font-size: 13px; font-weight: 500;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 60%, #1a4d8f 100%);
  padding: 70px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--gray-100);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-content { position: relative; z-index: 1; text-align: center; color: var(--white); }
.hero-badge {
  display: inline-block; background: rgba(245,166,35,.2); border: 1px solid var(--gold);
  color: var(--gold); padding: 5px 16px; border-radius: 20px; font-size: 12px;
  margin-bottom: 20px; font-weight: 600;
}
.hero h1 { color: var(--white); margin-bottom: 10px; }
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem); color: var(--gold);
  font-weight: 600; letter-spacing: 1px; margin-bottom: 16px;
}
.hero p { color: rgba(255,255,255,.85); max-width: 680px; margin: 0 auto 30px; font-size: 15px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: 8px; font-weight: 600;
  font-size: 14px; cursor: pointer; border: none;
  transition: var(--transition); white-space: nowrap;
  font-family: var(--font-mr);
}
.btn-primary   { background: var(--saffron); color: var(--white); }
.btn-primary:hover { background: var(--saffron-dk); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232,98,10,.3); }
.btn-outline   { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.1); color: var(--white); border-color: var(--white); }
.btn-navy      { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dk); color: var(--white); }
.btn-success   { background: var(--success); color: var(--white); }
.btn-danger    { background: var(--danger); color: var(--white); }
.btn-light     { background: var(--white); color: var(--navy); }
.btn-light:hover { background: var(--gray-100); }
.btn-sm        { padding: 7px 16px; font-size: 13px; }
.btn-lg        { padding: 14px 32px; font-size: 16px; }
.btn-block     { width: 100%; justify-content: center; }
.btn:disabled  { opacity: .6; cursor: not-allowed; }

/* --- Stats Counter --- */
.stats-section {
  background: var(--white); padding: 30px 0;
  box-shadow: var(--shadow);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0; text-align: center;
}
.stat-item {
  padding: 20px 10px;
  border-right: 1px solid var(--gray-200);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.2rem; font-weight: 800; color: var(--saffron);
  font-family: var(--font-en); line-height: 1;
}
.stat-label { font-size: 12px; color: var(--gray-600); margin-top: 4px; }

/* --- Section --- */
.section { padding: 60px 0; }
.section-alt { background: var(--white); }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2::after {
  content: ''; display: block; width: 60px; height: 3px;
  background: var(--saffron); margin: 12px auto 0; border-radius: 2px;
}
.section-header p { color: var(--gray-600); max-width: 600px; margin: 12px auto 0; }

/* --- Cards --- */
.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-header {
  background: var(--navy); color: var(--white);
  padding: 16px 20px; font-weight: 600;
}
.card-body { padding: 20px; }
.card-footer { padding: 14px 20px; background: var(--gray-50); border-top: 1px solid var(--gray-200); }

/* Activity cards */
.activity-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.activity-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 28px 24px;
  border-top: 4px solid var(--saffron);
  transition: var(--transition); text-align: center;
}
.activity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.activity-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-lt));
  color: var(--white); font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.activity-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.activity-card p { font-size: 13px; color: var(--gray-600); margin: 0; }

/* --- Meeting Banner --- */
.meeting-banner {
  background: linear-gradient(135deg, var(--saffron), #ff8c42);
  padding: 30px; border-radius: var(--radius-lg);
  color: var(--white); display: flex; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.meeting-banner .meeting-icon { font-size: 48px; flex-shrink: 0; }
.meeting-banner h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 4px; }
.meeting-banner p  { color: rgba(255,255,255,.9); margin: 0; font-size: 13.5px; }
.meeting-banner .btn { background: var(--white); color: var(--saffron); flex-shrink: 0; }
.meeting-banner .btn:hover { background: var(--gold); color: var(--white); }

/* --- Documents Grid --- */
.doc-categories { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.doc-tab {
  padding: 7px 18px; border-radius: 20px; border: 2px solid var(--gray-400);
  cursor: pointer; font-size: 13.5px; transition: var(--transition);
  background: var(--white); color: var(--text);
}
.doc-tab.active, .doc-tab:hover {
  border-color: var(--navy); background: var(--navy); color: var(--white);
}
.doc-list { display: grid; gap: 10px; }
.doc-item {
  background: var(--white); border-radius: 8px; padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow); transition: var(--transition);
  border-left: 4px solid var(--navy);
}
.doc-item:hover { border-left-color: var(--saffron); transform: translateX(2px); }
.doc-icon { font-size: 24px; flex-shrink: 0; }
.doc-info { flex: 1; min-width: 0; }
.doc-title { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.doc-meta { font-size: 12px; color: var(--gray-600); }
.doc-download {
  color: var(--navy); font-size: 13px; font-weight: 600;
  white-space: nowrap; flex-shrink: 0;
}
.doc-download:hover { color: var(--saffron); }

/* --- Articles Grid --- */
.articles-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.article-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: var(--transition);
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.article-card img { width: 100%; height: 160px; object-fit: cover; }
.article-card-body { padding: 16px; }
.article-type-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 2px 10px; border-radius: 12px; margin-bottom: 8px;
  background: var(--navy); color: var(--white);
}
.article-card h3 { font-size: 14.5px; margin-bottom: 6px; }
.article-card p { font-size: 13px; color: var(--gray-600); margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.article-card-meta { padding: 10px 16px; border-top: 1px solid var(--gray-200); font-size: 12px; color: var(--gray-600); display: flex; justify-content: space-between; }

/* --- Forms --- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; color: var(--text); }
.form-label .req { color: var(--danger); margin-left: 3px; }
.form-control {
  width: 100%; padding: 11px 14px; border: 2px solid var(--gray-400);
  border-radius: 8px; font-size: 14.5px; font-family: var(--font-mr);
  background: var(--white); color: var(--text);
  transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(28,58,107,.1); }
.form-control.is-invalid { border-color: var(--danger); }
.form-text { font-size: 12px; color: var(--gray-600); margin-top: 4px; }
.invalid-feedback { font-size: 12px; color: var(--danger); margin-top: 4px; display: none; }
.is-invalid ~ .invalid-feedback { display: block; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type=checkbox] { width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--navy); margin-top: 2px; }
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }

/* Multi-step form */
.step-indicator { display: flex; align-items: center; margin-bottom: 32px; }
.step-item { display: flex; flex-direction: column; align-items: center; flex: 1; }
.step-circle {
  width: 38px; height: 38px; border-radius: 50%; background: var(--gray-200);
  color: var(--gray-600); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; transition: var(--transition);
}
.step-item.active .step-circle   { background: var(--navy); color: var(--white); }
.step-item.done .step-circle     { background: var(--success); color: var(--white); }
.step-label { font-size: 11px; color: var(--gray-600); margin-top: 5px; text-align: center; }
.step-item.active .step-label    { color: var(--navy); font-weight: 600; }
.step-line { flex: 1; height: 3px; background: var(--gray-200); margin: 0 4px; margin-bottom: 20px; transition: var(--transition); }
.step-line.done { background: var(--success); }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* File upload */
.upload-zone {
  border: 2px dashed var(--gray-400); border-radius: 10px;
  padding: 24px; text-align: center; cursor: pointer;
  transition: var(--transition); background: var(--gray-50);
}
.upload-zone:hover { border-color: var(--navy); background: rgba(28,58,107,.04); }
.upload-zone.has-file { border-color: var(--success); background: rgba(40,167,69,.04); }
.upload-preview { width: 100px; height: 100px; object-fit: cover; border-radius: 8px; margin: 0 auto 8px; display: none; }
.upload-preview.show { display: block; }
.upload-zone p { font-size: 13px; color: var(--gray-600); margin: 0; }

/* --- Badges --- */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 12px;
  font-size: 11.5px; font-weight: 700;
}
.badge-success   { background: #d4edda; color: #155724; }
.badge-danger    { background: #f8d7da; color: #721c24; }
.badge-warning   { background: #fff3cd; color: #856404; }
.badge-info      { background: #d1ecf1; color: #0c5460; }
.badge-primary   { background: #cce5ff; color: #004085; }
.badge-secondary { background: #e2e3e5; color: #383d41; }

/* --- Alerts --- */
.alert {
  padding: 14px 18px; border-radius: 8px; margin-bottom: 20px;
  display: flex; align-items: flex-start; gap: 10px; font-size: 14px;
}
.alert-success { background: #d4edda; color: #155724; border-left: 4px solid var(--success); }
.alert-danger  { background: #f8d7da; color: #721c24; border-left: 4px solid var(--danger); }
.alert-warning { background: #fff3cd; color: #856404; border-left: 4px solid var(--warning); }
.alert-info    { background: #d1ecf1; color: #0c5460;  border-left: 4px solid var(--info); }

/* --- Tables --- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 14px; }
thead tr { background: var(--navy); color: var(--white); }
thead th { padding: 13px 16px; text-align: left; font-weight: 600; white-space: nowrap; }
tbody td { padding: 12px 16px; border-bottom: 1px solid var(--gray-200); vertical-align: middle; }
tbody tr:hover { background: var(--gray-50); }
tbody tr:last-child td { border-bottom: none; }

/* --- Member Card Preview --- */
.id-card-wrapper {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
#idCardCanvas {
  border-radius: 12px; box-shadow: var(--shadow-lg);
  max-width: 100%;
}

/* --- Contact Section --- */
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.contact-item {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; text-align: center; box-shadow: var(--shadow);
  border-bottom: 3px solid var(--saffron);
}
.contact-item .icon { font-size: 32px; margin-bottom: 12px; }
.contact-item h4 { margin-bottom: 8px; font-size: 15px; }
.contact-item p { font-size: 14px; color: var(--gray-600); margin: 0; }

/* --- Footer --- */
.footer {
  background: var(--navy-dk); color: rgba(255,255,255,.8);
  padding: 50px 0 20px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .org-name { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.footer-brand .org-sub  { font-size: 12px; color: var(--gold); font-family: var(--font-en); margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.6; }
.footer h4 { color: var(--white); font-size: 14px; margin-bottom: 14px; border-bottom: 2px solid var(--saffron); padding-bottom: 6px; display: inline-block; }
.footer ul li { margin-bottom: 7px; }
.footer ul li a { color: rgba(255,255,255,.7); font-size: 13px; }
.footer ul li a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; margin-top: 14px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: var(--transition);
}
.social-links a:hover { background: var(--saffron); }
.footer-bottom {
  padding-top: 20px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,.5);
}

/* --- Page Banner --- */
.page-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-lt));
  padding: 40px 0; text-align: center; color: var(--white);
}
.page-banner h1 { color: var(--white); margin-bottom: 6px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.7); }
.breadcrumb a { color: var(--gold); }
.breadcrumb span::before { content: '›'; margin-right: 8px; }

/* --- Loading Spinner --- */
.spinner { display: inline-block; width: 20px; height: 20px; border: 3px solid rgba(255,255,255,.3); border-radius: 50%; border-top-color: var(--white); animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.page-loader { position: fixed; inset: 0; background: var(--navy); display: flex; align-items: center; justify-content: center; z-index: 9999; transition: opacity .5s; }
.page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-logo { text-align: center; color: var(--white); }
.loader-logo .spinner-lg { width: 48px; height: 48px; border-width: 4px; margin: 16px auto 0; }

/* --- Responsive --- */
@media (max-width: 768px) {
  .navbar-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-dk); padding: 16px; gap: 4px; }
  .navbar-nav.open { display: flex; }
  .navbar { position: relative; }
  .hamburger { display: block; }
  .header-top { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .dropdown-menu { position: static; box-shadow: none; border-radius: 0; border-top: none; background: rgba(255,255,255,.05); }
  .dropdown-menu a { color: rgba(255,255,255,.8); border-bottom-color: rgba(255,255,255,.1); }
  .meeting-banner { flex-direction: column; text-align: center; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero { padding: 40px 0 60px; }
  .section { padding: 40px 0; }
  .hero-btns { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* --- Print / ID Card --- */
@media print {
  .site-header, .footer, .news-ticker, .section:not(.id-card-section) { display: none !important; }
}

/* --- Utility --- */
.mt-1 { margin-top: 8px; }   .mt-2 { margin-top: 16px; }  .mt-3 { margin-top: 24px; }  .mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
.p-2  { padding: 16px; }       .p-3  { padding: 24px; }
.d-flex { display: flex; } .align-center { align-items: center; } .justify-between { justify-content: space-between; }
.gap-2 { gap: 16px; }
.w-100 { width: 100%; }
.hidden { display: none !important; }
.rounded { border-radius: var(--radius); }

/* ── Scrolling Gallery ── */
.gallery-track-wrap { cursor: grab; }
.gallery-track-wrap:active { cursor: grabbing; }
.gallery-track {
  display: flex !important;
  gap: 16px;
  width: max-content;
  animation: scrollGallery 35s linear infinite;
}
.gallery-track:hover { animation-play-state: paused; }
@keyframes scrollGallery {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
