/* ============================================================
   CareNation â€” Main Stylesheet
   Design System: Blue + Green + Orange | Dark mode ready
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* â”€â”€ Variables â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --blue:        #1a56db;
  --blue-dark:   #1341a6;
  --blue-light:  #e8f0fe;
  --green:       #0ea472;
  --green-dark:  #0b8059;
  --green-light: #e6f7f1;
  --orange:      #f97316;
  --orange-light:#fff4ed;
  --dark:        #0f172a;
  --dark2:       #1e293b;
  --muted:       #64748b;
  --border:      #e2e8f0;
  --white:       #ffffff;
  --bg:          #f8fafc;
  --gradient:    linear-gradient(135deg, var(--blue), var(--green));
  --gradient2:   linear-gradient(135deg, #1a56db 0%, #0ea472 60%, #f97316 100%);
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow:      0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
  --navbar-h:    112px;
}

/* â”€â”€ Reset â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a  { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green); }

/* â”€â”€ Typography â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.4rem; }
.display-serif { font-family: 'Playfair Display', serif; }
.text-gradient  { background: var(--gradient2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-label  { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: .5rem; }
.section-title  { margin-bottom: 1rem; }
.section-desc   { color: var(--muted); max-width: 560px; }
.text-center .section-desc { margin: 0 auto; }

/* â”€â”€ Custom Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.custom-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1); transition: box-shadow var(--transition);
}
.custom-header.scrolled { box-shadow: var(--shadow); }






.top-notification-marquee { color: #fff; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; text-shadow: 0 1px 3px rgba(0,0,0,0.25); }

.header-search { 
    display: flex; 
    align-items: center; 
    background: #fff; 
    border-radius: 50px; 
    padding: 4px 4px 4px 20px; 
    flex-shrink: 0; 
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}
.header-search input { 
    border: none; 
    outline: none; 
    padding: 0; 
    font-size: 0.85rem; 
    font-weight: 400; 
    color: #8898aa; 
    width: 200px; 
    background: transparent;
    letter-spacing: 0.5px;
}
.header-search input::placeholder {
    color: #8898aa;
}
.header-search button { 
    background: #2563eb; 
    border: none; 
    color: #fff; 
    width: 50px; 
    height: 34px; 
    border-radius: 15px; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-left: 10px;
    transition: all 0.2s;
}
.header-search button:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}
.header-search button i {
    font-size: 0.95rem;
}

.ht-btn { color: #fff !important; font-size: 0.7rem; font-weight: 600; padding: 6px 12px; border-radius: 4px; display: inline-flex; align-items: center; gap: 4px; text-decoration: none; transition: opacity 0.2s; white-space: nowrap; }
.ht-btn:hover { opacity: 0.9; }
.ht-teal { background: #0f9d78; }
.ht-blue { background: #3b82f6; }
.ht-purple { background: #8b5cf6; }
.ht-red { background: #e11d48; }
.ht-darkblue { background: #1e3a8a; }

.header-bottom { background: #369c9b; height: 60px; display: flex; align-items: center; transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s; }
/* Removed .custom-header.scrolled .header-bottom hiding to keep nav visible */
.header-bottom-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0; }
.header-logo-box { background: #fff; height: 60px; padding: 0 20px; display: flex; align-items: center; border-right: 1px solid rgba(0,0,0,0.1); }
.cn-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.cn-logo img { height: 42px; width: auto; }
.cn-logo-text { font-weight: 800; font-size: 1.35rem; color: var(--blue); }
.cn-logo-text span { color: var(--green); }

.header-nav { flex: 1; display: flex; justify-content: center; }
.header-nav-links { list-style: none; display: flex; gap: clamp(8px, 1.2vw, 20px); margin: 0; padding: 0; align-items: center; }
.header-nav-links a { color: #fff !important; font-size: clamp(0.72rem, 0.85vw, 0.9rem); font-weight: 600; text-decoration: none; transition: opacity 0.2s; white-space: nowrap; }
.header-nav-links a:hover { opacity: 0.8; }

.submenu { display: none; list-style: none; padding: 0; margin: 0; }
.has-submenu { position: relative; }

@media (min-width: 1200px) {
  .has-submenu:hover > .submenu { display: none; opacity: 1; visibility: visible; transform: translateY(0); }
  .submenu { display: none; position: absolute; top: 100%; left: 0; background: #fff; min-width: 240px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); border-radius: 8px; padding: 12px 0; z-index: 1100; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border-top: 3px solid var(--green); }
  .submenu li { width: 100%; }
  .submenu li a { display: block !important; padding: 10px 20px !important; color: #333 !important; font-size: 0.88rem !important; font-weight: 500 !important; transition: all 0.2s !important; border: none !important; background: transparent !important; opacity: 1 !important; }
  .submenu li a:hover { background: #f0f7f6 !important; color: var(--green) !important; padding-left: 25px !important; }
  .submenu li.divider { height: 1px; background: rgba(0,0,0,.06); margin: 5px 15px; }
  .submenu li.submenu-label { font-size: .65rem; font-weight: 800; text-transform: uppercase; color: var(--muted); padding: 8px 20px 4px; letter-spacing: .05em; }
  .nav-arrow { display: inline-block !important; margin-left: 4px; font-size: 0.75rem; transition: transform 0.3s; }
  .has-submenu:hover .nav-arrow { transform: rotate(180deg); }
}

.header-join { padding-right: 20px; display: flex; align-items: center; gap: 15px; }
.btn-join { background: #ffca28; color: #333 !important; font-weight: 700; font-size: 0.85rem; padding: 8px 20px; border-radius: 6px; text-decoration: none; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.btn-join:hover { background: #ffb300; }

.cn-hamburger { display: none !important; background: transparent; border: none; cursor: pointer; padding: .4rem; }
.cn-hamburger i { font-size: 1.6rem; color: #fff; }

/* â”€â”€ Header Notification Ticker Resize â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#headerNotificationTicker {
  margin: 0 !important;
  max-width: 550px !important;
  background: rgba(0,0,0,0.15) !important;
  border: none !important;
  height: 28px !important; 
  padding: 0 10px 0 0 !important; 
  border-radius: 4px !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
}

.ticker-prefix { display: flex; align-items: center; gap: 8px; padding: 0 10px; flex-shrink: 0; }
.ticker-bell-box { width: 22px; height: 22px; border-radius: 4px; background: #f59e0b; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.75rem; }
.ticker-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #10b981; margin-left: -4px; margin-top: -8px; }
.announcement-ticker { display: flex; white-space: nowrap; animation: announcement-ticker-scroll 40s linear infinite; }
.announcement-ticker-item { display: inline-flex; align-items: center; gap: 8px; margin-right: 40px; font-size: 0.78rem; font-weight: 600; color: #fff; }
.announcement-ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.4); }

@keyframes announcement-ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@media (max-width: 1400px) {
  #headerNotificationTicker { max-width: 350px !important; }
  .ht-btn { padding: 5px 10px; font-size: 0.7rem; }
}

/* â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn { display: inline-flex; align-items: center; gap: .45rem; padding: .7rem 1.5rem; border-radius: 50px; font-weight: 600; font-size: .9rem; border: 2px solid transparent; cursor: pointer; transition: all var(--transition); text-decoration: none; }
.btn-primary   { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,86,219,.3); }
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* â”€â”€ Variables â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --blue:        #1a56db;
  --blue-dark:   #1341a6;
  --blue-light:  #e8f0fe;
  --green:       #0ea472;
  --green-dark:  #0b8059;
  --green-light: #e6f7f1;
  --orange:      #f97316;
  --orange-light:#fff4ed;
  --dark:        #0f172a;
  --dark2:       #1e293b;
  --muted:       #64748b;
  --border:      #e2e8f0;
  --white:       #ffffff;
  --bg:          #f8fafc;
  --gradient:    linear-gradient(135deg, var(--blue), var(--green));
  --gradient2:   linear-gradient(135deg, #1a56db 0%, #0ea472 60%, #f97316 100%);
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow:      0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
  --navbar-h:    112px;
}

/* â”€â”€ Reset â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a  { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green); }

/* â”€â”€ Typography â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.4rem; }
.display-serif { font-family: 'Playfair Display', serif; }
.text-gradient  { background: var(--gradient2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-label  { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: .5rem; }
.section-title  { margin-bottom: 1rem; }
.section-desc   { color: var(--muted); max-width: 560px; }
.text-center .section-desc { margin: 0 auto; }

/* â”€â”€ Custom Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.custom-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow var(--transition);
}
.custom-header.scrolled { box-shadow: var(--shadow); }
.custom-header.hide-header { transform: translateY(-100%); }

.top-notification-marquee { color: #fff; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; text-shadow: 0 1px 3px rgba(0,0,0,0.25); }

.header-search { 
    display: flex; 
    align-items: center; 
    background: #fff; 
    border-radius: 50px; 
    padding: 4px 4px 4px 20px; 
    flex-shrink: 0; 
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}
.header-search input { 
    border: none; 
    outline: none; 
    padding: 0; 
    font-size: 0.85rem; 
    font-weight: 400; 
    color: #8898aa; 
    width: 200px; 
    background: transparent;
    letter-spacing: 0.5px;
}
.header-search input::placeholder {
    color: #8898aa;
}
.header-search button { 
    background: #2563eb; 
    border: none; 
    color: #fff; 
    width: 50px; 
    height: 34px; 
    border-radius: 15px; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-left: 10px;
    transition: all 0.2s;
}
.header-search button:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}
.header-search button i {
    font-size: 0.95rem;
}

.ht-btn { color: #fff !important; font-size: 0.7rem; font-weight: 600; padding: 6px 12px; border-radius: 4px; display: inline-flex; align-items: center; gap: 4px; text-decoration: none; transition: opacity 0.2s; white-space: nowrap; }
.ht-btn:hover { opacity: 0.9; }
.ht-teal { background: #0f9d78; }
.ht-blue { background: #3b82f6; }
.ht-purple { background: #8b5cf6; }
.ht-red { background: #e11d48; }
.ht-darkblue { background: #1e3a8a; }

.header-bottom { background: #369c9b; height: 60px; display: flex; align-items: center; transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s; }
/* Removed .custom-header.scrolled .header-bottom hiding to keep nav visible */
.header-bottom-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0; }
.header-logo-box { background: #fff; height: 60px; padding: 0 20px; display: flex; align-items: center; border-right: 1px solid rgba(0,0,0,0.1); }
.cn-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.cn-logo img { height: 42px; width: auto; }
.cn-logo-text { font-weight: 800; font-size: 1.35rem; color: var(--blue); }
.cn-logo-text span { color: var(--green); }

.header-nav { flex: 1; display: flex; justify-content: center; }
.header-nav-links { list-style: none; display: flex; gap: clamp(8px, 1.2vw, 20px); margin: 0; padding: 0; align-items: center; }
.header-nav-links a { color: #fff !important; font-size: clamp(0.72rem, 0.85vw, 0.9rem); font-weight: 600; text-decoration: none; transition: opacity 0.2s; white-space: nowrap; }
.header-nav-links a:hover { opacity: 0.8; }

.submenu { display: none; list-style: none; padding: 0; margin: 0; }
.has-submenu { position: relative; }

@media (min-width: 1200px) {
  .has-submenu:hover > .submenu { display: none; opacity: 1; visibility: visible; transform: translateY(0); }
  .submenu { display: none; position: absolute; top: 100%; left: 0; background: #fff; min-width: 240px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); border-radius: 8px; padding: 12px 0; z-index: 1100; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border-top: 3px solid var(--green); }
  .submenu li { width: 100%; }
  .submenu li a { display: block !important; padding: 10px 20px !important; color: #333 !important; font-size: 0.88rem !important; font-weight: 500 !important; transition: all 0.2s !important; border: none !important; background: transparent !important; opacity: 1 !important; }
  .submenu li a:hover { background: #f0f7f6 !important; color: var(--green) !important; padding-left: 25px !important; }
  .submenu li.divider { height: 1px; background: rgba(0,0,0,.06); margin: 5px 15px; }
  .submenu li.submenu-label { font-size: .65rem; font-weight: 800; text-transform: uppercase; color: var(--muted); padding: 8px 20px 4px; letter-spacing: .05em; }
  .nav-arrow { display: inline-block !important; margin-left: 4px; font-size: 0.75rem; transition: transform 0.3s; }
  .has-submenu:hover .nav-arrow { transform: rotate(180deg); }
}

.header-join { padding-right: 20px; display: flex; align-items: center; gap: 15px; }
.btn-join { background: #ffca28; color: #333 !important; font-weight: 700; font-size: 0.85rem; padding: 8px 20px; border-radius: 6px; text-decoration: none; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.btn-join:hover { background: #ffb300; }

.cn-hamburger { display: none !important; background: transparent; border: none; cursor: pointer; padding: .4rem; }
.cn-hamburger i { font-size: 1.6rem; color: #fff; }

/* â”€â”€ Header Notification Ticker Resize â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#headerNotificationTicker {
  margin: 0 !important;
  max-width: 550px !important;
  background: rgba(0,0,0,0.15) !important;
  border: none !important;
  height: 28px !important; 
  padding: 0 10px 0 0 !important; 
  border-radius: 4px !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
}

.ticker-prefix { display: flex; align-items: center; gap: 8px; padding: 0 10px; flex-shrink: 0; }
.ticker-bell-box { width: 22px; height: 22px; border-radius: 4px; background: #f59e0b; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.75rem; }
.ticker-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #10b981; margin-left: -4px; margin-top: -8px; }
.announcement-ticker { display: flex; white-space: nowrap; animation: announcement-ticker-scroll 40s linear infinite; }
.announcement-ticker-item { display: inline-flex; align-items: center; gap: 8px; margin-right: 40px; font-size: 0.78rem; font-weight: 600; color: #fff; }
.announcement-ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.4); }

@keyframes announcement-ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@media (max-width: 1400px) {
  #headerNotificationTicker { max-width: 350px !important; }
  .ht-btn { padding: 5px 10px; font-size: 0.7rem; }
}

/* â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn { display: inline-flex; align-items: center; gap: .45rem; padding: .7rem 1.5rem; border-radius: 50px; font-weight: 600; font-size: .9rem; border: 2px solid transparent; cursor: pointer; transition: all var(--transition); text-decoration: none; }
.btn-primary   { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,86,219,.3); }
.btn-green     { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(14,164,114,.3); }
.btn-orange    { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-orange:hover { background: #ea6a0a; border-color: #ea6a0a; color: #fff; transform: translateY(-2px); }
.btn-blue      { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; transform: translateY(-2px); }
.btn-outline   { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: #fff; color: var(--blue); }
.btn-lg { padding: .95rem 2rem; font-size: 1rem; }
.btn-sm { padding: .4rem 1rem; font-size: .82rem; }

/* â”€â”€ Hero Carousel Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-carousel-section {
  width: 100%; margin-top: 0; margin-bottom: 0;
  height: calc(100vh - var(--navbar-h)); background: var(--dark);
  overflow: hidden;
}
.hcs-viewport { position: relative; width: 100%; height: 100%; overflow: hidden; }
.hcs-track { display: flex; flex-wrap: nowrap; height: 100%; transition: transform .65s cubic-bezier(.4, 0, .2, 1); will-change: transform; }
.hcs-slide { flex-shrink: 0; height: 100%; background-size: cover; background-position: center center; background-repeat: no-repeat; position: relative; }
.hcs-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10, 18, 40, .78) 0%, rgba(10, 18, 40, .45) 55%, rgba(10, 18, 40, .15) 100%); }
.hcs-slide-badge {
  position: absolute; top: 2.2rem; right: 1.2rem;
  background: rgba(255, 255, 255, .12); backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, .35); color: #fff;
  font-size: .8rem; font-weight: 700; padding: .38rem 1rem;
  border-radius: 50px; z-index: 3; pointer-events: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  letter-spacing: 0.04em;
}
.hcs-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .8rem 1.4rem; background: linear-gradient(transparent, rgba(10, 18, 40, .75));
  color: #fff; font-size: .88rem; font-weight: 600; z-index: 3; pointer-events: none;
}
.hcs-content-wrap { position: absolute; inset: 0; z-index: 4; display: flex; align-items: center; pointer-events: none; padding-top: var(--navbar-h); }
.hcs-content-wrap .container { pointer-events: none; }
.hcs-content { pointer-events: auto; max-width: 560px; padding: 0 .5rem; }
.hero-badge { margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; color: #fff; background: rgba(14,164,114, 0.25); padding: 0.45rem 1.1rem; border-radius: 50px; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.5px; border: 1.5px solid #0ea472; backdrop-filter: blur(6px); box-shadow: 0 4px 18px rgba(14,164,114,0.3); }
.hero-badge span { width: 8px; height: 8px; border-radius: 50%; background: #0ea472; display: inline-block; animation: pulse-dot 1.5s ease-in-out infinite; box-shadow: 0 0 0 3px rgba(14,164,114,0.35); }
.hcs-heading { color: #fff !important; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.hcs-lead { color: rgba(255, 255, 255, .8); font-size: 1rem; margin-bottom: 1.6rem; max-width: 480px; text-shadow: 0 1px 6px rgba(0,0,0,.3); }
.hcs-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 255, 255, .15); backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, .35); color: #fff;
  font-size: .95rem; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.hcs-btn:hover { background: rgba(255, 255, 255, .35); transform: translateY(-50%) scale(1.1); }
.hcs-prev { left: 14px; }
.hcs-next { right: 14px; }
.hcs-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; align-items: center; }
.hcs-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, .35); border: 1.5px solid rgba(255,255,255,0.5); cursor: pointer; padding: 0; transition: all .35s ease; }
.hcs-dot:nth-child(1) { border-color: #0ea472; }
.hcs-dot:nth-child(2) { border-color: #3b82f6; }
.hcs-dot:nth-child(3) { border-color: #f59e0b; }
.hcs-dot.active { transform: scale(1.5); }
.hcs-dot:nth-child(1).active { background: #0ea472; box-shadow: 0 0 10px rgba(14,164,114,0.7); border-color: #0ea472; }
.hcs-dot:nth-child(2).active { background: #3b82f6; box-shadow: 0 0 10px rgba(59,130,246,0.7); border-color: #3b82f6; }
.hcs-dot:nth-child(3).active { background: #f59e0b; box-shadow: 0 0 10px rgba(245,158,11,0.7); border-color: #f59e0b; }

.hero-carousel-section .hero-stats { display: flex; gap: 0; margin-top: 2rem; flex-wrap: wrap; }
.hero-carousel-section .hero-stat {
  flex-shrink: 0;
  padding: 0.7rem 1.2rem;
  border-radius: 14px;
  margin-right: 0.75rem;
  margin-bottom: 0.5rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.15);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.hero-carousel-section .hero-stat:nth-child(1) { border-color: #0ea47288; box-shadow: 0 4px 14px rgba(14,164,114,0.18); }
.hero-carousel-section .hero-stat:nth-child(2) { border-color: #3b82f688; box-shadow: 0 4px 14px rgba(59,130,246,0.18); }
.hero-carousel-section .hero-stat:nth-child(3) { border-color: #f59e0b88; box-shadow: 0 4px 14px rgba(245,158,11,0.18); }
.hero-carousel-section .hero-stat:nth-child(4) { border-color: #ec489988; box-shadow: 0 4px 14px rgba(236,72,153,0.18); }
.hero-carousel-section .hero-stat:nth-child(1) strong { color: #0ea472; }
.hero-carousel-section .hero-stat:nth-child(2) strong { color: #60a5fa; }
.hero-carousel-section .hero-stat:nth-child(3) strong { color: #fbbf24; }
.hero-carousel-section .hero-stat:nth-child(4) strong { color: #f472b6; }
.hero-carousel-section .hero-stat strong { display: block; font-size: 1.8rem; font-weight: 800; line-height: 1.1; }
.hero-carousel-section .hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.75); font-weight: 500; display: block; margin-top: 0.2rem; }

/* â”€â”€ Floating Badges â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hcs-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 1rem 1.4rem;
  color: #fff;
  z-index: 6;
  min-width: 155px;
  pointer-events: none;
  animation: hcs-float 4s ease-in-out infinite;
}
/* Bottom-left card: green accent */
.hcs-float-bl {
  bottom: 60px; left: 30px;
  border: 1.5px solid #0ea47255;
  border-top: 3px solid #0ea472;
  box-shadow: 0 10px 30px rgba(14,164,114,0.25), 0 2px 8px rgba(0,0,0,0.15);
}
/* Top-right card: blue accent */
.hcs-float-tr {
  top: 120px; right: 30px; animation-delay: 2s;
  border: 1.5px solid #3b82f655;
  border-top: 3px solid #3b82f6;
  box-shadow: 0 10px 30px rgba(59,130,246,0.25), 0 2px 8px rgba(0,0,0,0.15);
}

@keyframes hcs-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

:root { --navbar-h: 112px; }

/* â”€â”€ Section Spacing â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--dark); }
.section-muted { background: #f1f5f9; }
.section-gradient { background: var(--gradient); }

/* â”€â”€ Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.card-cn { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--border); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.card-cn:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-cn-img { width: 100%; height: 220px; object-fit: cover; }
.card-cn-body { padding: 1.4rem; }
.card-cn-tag { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .25rem .7rem; border-radius: 50px; background: var(--blue-light); color: var(--blue); margin-bottom: .6rem; }
.card-cn-tag.green { background: var(--green-light); color: var(--green); }
.card-cn-tag.orange { background: var(--orange-light); color: var(--orange); }

/* â”€â”€ Progress bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.progress-label { display: flex; justify-content: space-between; font-size: .82rem; margin-bottom: .4rem; color: var(--muted); }
.progress-label strong { color: var(--dark); }
.progress-bar-wrap { height: 8px; background: var(--border); border-radius: 50px; overflow: hidden; }
.progress-bar-fill  { height: 100%; border-radius: 50px; background: var(--gradient); transition: width 1s ease; }

/* â”€â”€ Stats â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stat-card { text-align: center; padding: 2rem 1rem; background: rgba(255,255,255,.05); border-radius: var(--radius); border: 1px solid rgba(255,255,255,.1); }
.stat-card .num { font-size: 2.8rem; font-weight: 900; background: var(--gradient2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-card .label { color: rgba(255,255,255,.65); font-size: .9rem; margin-top: .3rem; }
.stat-card .icon { font-size: 2rem; margin-bottom: .5rem; }

/* â”€â”€ Testimonials â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonial-card { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); border-top: 4px solid var(--green); position: relative; }
.testimonial-card::before { content: '\201C'; font-size: 4rem; color: var(--green); opacity: .2; position: absolute; top: .5rem; left: 1.2rem; font-family: serif; line-height: 1; }
.testimonial-card p { color: var(--muted); font-style: italic; margin-bottom: 1.2rem; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; font-size: .9rem; }
.testimonial-author span  { font-size: .78rem; color: var(--muted); }
.stars { color: #f59e0b; font-size: .85rem; margin-bottom: .4rem; }

/* â”€â”€ Impact Grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.impact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }

/* â”€â”€ CTA Banner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-banner { background: var(--gradient); border-radius: var(--radius-lg); padding: 4rem 3rem; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: -50%; background: radial-gradient(circle at center, rgba(255,255,255,.08) 0%, transparent 70%); }
.cta-banner h2 { color: #fff; margin-bottom: .8rem; }
.cta-banner p  { color: rgba(255,255,255,.8); margin-bottom: 1.8rem; font-size: 1.05rem; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* â”€â”€ Forms â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-cn .form-label { font-size: .87rem; font-weight: 600; color: var(--dark2); margin-bottom: .35rem; }
.form-cn .form-control, .form-cn .form-select { border: 1.5px solid var(--border); border-radius: 10px; padding: .65rem 1rem; font-size: .92rem; color: var(--dark); background: #fff; transition: border-color var(--transition), box-shadow var(--transition); }
.form-cn .form-control:focus, .form-cn .form-select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,.12); outline: none; }
.form-cn textarea { resize: vertical; min-height: 120px; }

/* â”€â”€ Admin Styles â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.admin-stat { background: #fff; border-radius: var(--radius); padding: 1.4rem 1.6rem; border: 1px solid var(--border); box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 1rem; }
.admin-stat-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.admin-stat-icon.blue   { background: var(--blue-light); color: var(--blue); }
.admin-stat-icon.green  { background: var(--green-light); color: var(--green); }
.admin-stat-icon.orange { background: var(--orange-light); color: var(--orange); }
.admin-stat-icon.purple { background: #f3e8ff; color: #7c3aed; }
.admin-stat-num  { font-size: 1.6rem; font-weight: 800; color: var(--dark); line-height: 1; }
.admin-stat-label{ font-size: .8rem; color: var(--muted); margin-top: .2rem; }

.table-cn { width: 100%; border-collapse: collapse; font-size: .88rem; }
.table-cn th { background: #f8fafc; padding: .75rem 1rem; text-align: left; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); border-bottom: 2px solid var(--border); }
.table-cn td { padding: .85rem 1rem; border-bottom: 1px solid var(--border); color: var(--dark2); vertical-align: middle; }
.table-wrap { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm); }

.alert { padding: .85rem 1.1rem; border-radius: var(--radius); font-size: .88rem; margin-bottom: 1rem; border-left: 4px solid; display: flex; align-items: flex-start; gap: .6rem; }
.alert-success { background: var(--green-light); border-color: var(--green); color: var(--green-dark); }
.alert-danger   { background: #fee2e2; border-color: #f87171; color: #991b1b; }
.alert-warning  { background: #fef3c7; border-color: #fbbf24; color: #92400e; }
.alert-info     { background: var(--blue-light); border-color: var(--blue); color: var(--blue-dark); }

/* â”€â”€ Responsive Overrides â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

@media (max-width: 1199px) {
  .mobile-only { display: block !important; }

  /* ── Offcanvas Panel ─────────────────────────────────────── */
  .header-nav {
    display: block;
    position: fixed;
    top: 0; left: -320px;
    width: 300px; max-width: 88vw;
    height: 100vh;
    background: linear-gradient(160deg, #0d1b2e 0%, #0f2342 40%, #0a1628 100%);
    z-index: 1050;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 6px 0 32px rgba(0,0,0,0.45);
  }
  .header-nav.open { left: 0; }

  /* Scrollbar styling */
  .header-nav::-webkit-scrollbar { width: 3px; }
  .header-nav::-webkit-scrollbar-track { background: transparent; }
  .header-nav::-webkit-scrollbar-thumb { background: rgba(19,150,120,0.4); border-radius: 10px; }

  /* ── Offcanvas Header ────────────────────────────────────── */
  .offcanvas-header {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-bottom: 0;
    border-bottom: none;
  }

  /* Brand bar: logo + close btn */
  .offcanvas-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 14px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .offcanvas-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .offcanvas-logo-img {
    height: 36px;
    width: auto;
    border-radius: 6px;
  }
  .offcanvas-logo-text {
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
  }
  .offcanvas-logo-text span { color: #13b981; }

  .offcanvas-close {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    flex-shrink: 0;
  }
  .offcanvas-close:hover {
    background: rgba(239,68,68,0.2);
    border-color: rgba(239,68,68,0.5);
    transform: rotate(90deg);
  }

  /* ── Quick Action Buttons ────────────────────────────────── */
  .offcanvas-quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 16px 16px 14px;
    background: rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .oq-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 6px 8px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .oq-btn:hover { transform: translateY(-2px); }
  .oq-btn i {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 2px;
  }
  .oq-btn span { line-height: 1; }

  .oq-donate {
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.35);
    color: #f87171;
    box-shadow: 0 4px 12px rgba(239,68,68,0.12);
  }
  .oq-donate:hover { box-shadow: 0 6px 20px rgba(239,68,68,0.3); color: #f87171; }

  .oq-cart {
    background: rgba(245,158,11,0.15);
    border: 1px solid rgba(245,158,11,0.35);
    color: #fbbf24;
    box-shadow: 0 4px 12px rgba(245,158,11,0.12);
  }
  .oq-cart:hover { box-shadow: 0 6px 20px rgba(245,158,11,0.3); color: #fbbf24; }

  .oq-member {
    background: rgba(19,185,129,0.15);
    border: 1px solid rgba(19,185,129,0.35);
    color: #34d399;
    box-shadow: 0 4px 12px rgba(19,185,129,0.12);
  }
  .oq-member:hover { box-shadow: 0 6px 20px rgba(19,185,129,0.3); color: #34d399; }

  .oq-login {
    background: rgba(59,130,246,0.15);
    border: 1px solid rgba(59,130,246,0.35);
    color: #60a5fa;
    box-shadow: 0 4px 12px rgba(59,130,246,0.12);
  }
  .oq-login:hover { box-shadow: 0 6px 20px rgba(59,130,246,0.3); color: #60a5fa; }

  /* ── Nav Section Divider ─────────────────────────────────── */
  .offcanvas-divider {
    display: flex;
    align-items: center;
    padding: 0 18px;
    margin: 16px 0 4px;
    gap: 10px;
  }
  .offcanvas-divider::before,
  .offcanvas-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
  }
  .offcanvas-divider span {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
  }

  /* ── Nav Links ───────────────────────────────────────────── */
  .header-nav-links {
    flex-direction: column;
    gap: 6px;
    padding: 4px 14px 30px;
    align-items: stretch;
    margin: 0;
  }
  .header-nav-links > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.9) !important;
    padding: 13px 14px 13px 42px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.92rem;
    border: 1px solid rgba(255,255,255,0.07);
    position: relative;
    transition: background 0.2s, border-color 0.2s, padding-left 0.2s;
    text-decoration: none;
  }
  .header-nav-links > li > a::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px; height: 8px;
    background: #13b981;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(19,185,129,0.6);
    transition: transform 0.2s;
  }
  .header-nav-links > li > a:hover {
    background: rgba(19,185,129,0.1);
    border-color: rgba(19,185,129,0.3);
    color: #fff !important;
  }
  .header-nav-links > li > a:hover::before { transform: translateY(-50%) scale(1.4); }

  /* Nav arrow (chevron) badge */
  .nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(19,185,129,0.15);
    border: 1px solid rgba(19,185,129,0.3);
    color: #13b981;
    width: 28px; height: 28px;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: background 0.2s, transform 0.3s;
    flex-shrink: 0;
  }
  .has-submenu.open > a .nav-arrow {
    background: rgba(19,185,129,0.3);
    transform: rotate(180deg);
  }

  /* ── Submenu ─────────────────────────────────────────────── */
  .submenu {
    display: none;
    list-style: none;
    padding: 6px 0 4px 12px;
    margin: 4px 0 0;
    flex-direction: column;
    gap: 4px;
  }
  .has-submenu.open > .submenu { display: flex; }
  .submenu li a {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 14px !important;
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
  }
  .submenu li a::before { display: none !important; }
  .submenu li a:hover {
    background: rgba(19,185,129,0.1) !important;
    border-color: rgba(19,185,129,0.25) !important;
    color: #13b981 !important;
    padding-left: 18px !important;
  }
  .submenu li a i { color: #13b981; font-size: 0.75rem; }
  .submenu li.divider { height: 1px; background: rgba(255,255,255,0.06); margin: 4px 8px; }
  .submenu li.submenu-label {
    font-size: 0.58rem;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    padding: 6px 14px 2px;
    letter-spacing: 0.12em;
  }

  .cn-hamburger { display: block !important; background: transparent; border: none; color: #fff; font-size: 1.6rem; padding: 0 10px; cursor: pointer; }
  .cn-hamburger i { display: block; }

  .hcs-slide-badge { top: 3.5rem; }
}

@media (max-width: 768px) {
  :root { --navbar-h: 60px; }
  .hero-carousel-section { height: calc(100svh - var(--navbar-h)); }
  .hcs-heading { font-size: 1.8rem; }
  .hcs-slide-badge { top: 4.2rem; }
  .hero-carousel-section .hero-actions { flex-direction: column; align-items: flex-start; }
  /* Hide slide-specific text to prevent overlap with static hero content on narrow screens */
  .hcs-slide-badge, .hcs-caption { display: none !important; }
}

@media (max-width: 480px) {
  :root { --navbar-h: 60px; }
  .hcs-heading { font-size: 1.4rem; }
  .hcs-lead { font-size: .95rem; }
  .hero-carousel-section .hero-stats { display: none; }
  .hcs-slide-badge { top: 5rem; }
}

/* â”€â”€ Movement Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.movement-section { background: #ffffff; padding: 100px 0; }
.movement-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 1200px) { .movement-grid { grid-template-columns: repeat(4, 1fr) !important; } }

.movement-card {
  position: relative;
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 270px;
  background: #fff;
  z-index: 1;
}
/* Subtle dashed inner border */
.movement-card::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px; right: 8px; bottom: 8px;
  border: 1.5px dashed rgba(0, 0, 0, 0.18);
  border-radius: 14px;
  z-index: 0;
  pointer-events: none;
}
.movement-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.movement-card .icon-circle {
  width: 70px; height: 70px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 1.8rem;
  position: relative;
  transition: transform 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08), inset 0 -2px 5px rgba(0,0,0,0.05), inset 0 2px 5px rgba(255,255,255,0.5);
}
.movement-card:hover .icon-circle {
  transform: scale(1.08) translateY(-4px);
}

.movement-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.4;
  color: #1f2937;
}

.btn-movement {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff !important;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: auto;
}
.btn-movement:hover {
  transform: translateY(2px);
}
.btn-movement:active {
  transform: translateY(4px);
}

/* Theme: Blue */
.movement-card.blue { background: linear-gradient(160deg, #e0f2fe, #bae6fd); }
.movement-card.blue .icon-circle { background: rgba(255,255,255,0.4); color: #0284c7; }
.movement-card.blue h4 { color: #0369a1; }
.movement-card.blue .btn-movement { 
  background: #0284c7; 
  box-shadow: 0 5px 0 #075985, 0 10px 15px rgba(2, 132, 199, 0.3);
}
.movement-card.blue .btn-movement:hover { box-shadow: 0 3px 0 #075985, 0 6px 10px rgba(2, 132, 199, 0.3); }
.movement-card.blue .btn-movement:active { box-shadow: 0 0 0 #075985, 0 2px 4px rgba(2, 132, 199, 0.3); }

/* Theme: Green */
.movement-card.green { background: linear-gradient(160deg, #dcfce7, #a7f3d0); }
.movement-card.green .icon-circle { background: rgba(255,255,255,0.4); color: #059669; }
.movement-card.green h4 { color: #047857; }
.movement-card.green .btn-movement { 
  background: #059669; 
  box-shadow: 0 5px 0 #064e3b, 0 10px 15px rgba(5, 150, 105, 0.3);
}
.movement-card.green .btn-movement:hover { box-shadow: 0 3px 0 #064e3b, 0 6px 10px rgba(5, 150, 105, 0.3); }
.movement-card.green .btn-movement:active { box-shadow: 0 0 0 #064e3b, 0 2px 4px rgba(5, 150, 105, 0.3); }

/* Theme: Purple */
.movement-card.purple { background: linear-gradient(160deg, #f3e8ff, #ddd6fe); }
.movement-card.purple .icon-circle { background: rgba(255,255,255,0.4); color: #7c3aed; }
.movement-card.purple h4 { color: #5b21b6; }
.movement-card.purple .btn-movement { 
  background: #8b5cf6; 
  box-shadow: 0 5px 0 #4c1d95, 0 10px 15px rgba(139, 92, 246, 0.3);
}
.movement-card.purple .btn-movement:hover { box-shadow: 0 3px 0 #4c1d95, 0 6px 10px rgba(139, 92, 246, 0.3); }
.movement-card.purple .btn-movement:active { box-shadow: 0 0 0 #4c1d95, 0 2px 4px rgba(139, 92, 246, 0.3); }

/* Theme: Yellow/Warm-Cream */
.movement-card.yellow { background: linear-gradient(160deg, #fffbeb, #fef9c3); }
.movement-card.yellow .icon-circle { background: rgba(255,255,255,0.5); color: #b45309; }
.movement-card.yellow h4 { color: #92400e; }
.movement-card.yellow .btn-movement { 
  background: #b45309; 
  box-shadow: 0 5px 0 #78350f, 0 10px 15px rgba(180, 83, 9, 0.3);
}
.movement-card.yellow .btn-movement:hover { box-shadow: 0 3px 0 #78350f, 0 6px 10px rgba(180, 83, 9, 0.3); }
.movement-card.yellow .btn-movement:active { box-shadow: 0 0 0 #78350f, 0 2px 4px rgba(180, 83, 9, 0.3); }

/* â”€â”€ Welcome Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.welcome-section { padding: 100px 0; position: relative; background: #fff; overflow: hidden; }
.welcome-section::before { content: ''; position: absolute; top: 0; left: 0; width: 35%; height: 100%; background-color: #f8f6f0; z-index: 1; }
.welcome-grid { display: flex; align-items: center; gap: 5rem; position: relative; z-index: 2; }
.welcome-img-col { flex: 1; position: relative; }
.welcome-img-mask { border-radius: 0 160px 160px 160px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.12); aspect-ratio: 1/1; position: relative; z-index: 2; border: 5px solid transparent; background-clip: padding-box; outline: 5px solid transparent; }
.welcome-img-mask img { width: 100%; height: 100%; object-fit: cover; }
.welcome-badge-circle { position: absolute; bottom: 10%; right: 10%; transform: translate(40%, 40%); width: 120px; height: 120px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(14,164,114,0.18), 0 0 0 4px #d1fae5; border: 5px solid #0ea472; z-index: 10; }
.welcome-badge-circle img { max-width: 60%; max-height: 60%; object-fit: contain; }
.welcome-text-col { flex: 1.1; padding-right: 2rem; }
.welcome-tagline { color: #0ea472; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.5px; margin-bottom: 1.2rem; position: relative; display: inline-block; padding-bottom: 5px; text-transform: uppercase; }
.welcome-tagline::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: #0ea472; }
.welcome-title { font-size: 2.6rem; font-weight: 900; margin-bottom: 1.5rem; color: #333; line-height: 1.2; }
.welcome-desc p { font-size: 0.95rem; color: #111; line-height: 1.8; margin-bottom: 1rem; font-weight: 600; }
.welcome-desc p:first-child { font-weight: 500; }
.welcome-btn { display: inline-block; background: #0ea472; color: #fff !important; padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; text-decoration: none; margin-top: 15px; }
.welcome-btn:hover { background: #0b8059; transform: translateY(-2px); }

/* Decorative Elements */
.welcome-decor { position: absolute; z-index: 3; }
.welcome-decor-heart { top: 40%; left: 2%; color: #0ea472; font-size: 3rem; transform: rotate(-15deg); background: transparent; -webkit-text-stroke: 3px #0ea472; color: transparent; }
.welcome-decor-yellow { bottom: 45%; left: 48%; color: #fef08a; font-size: 2rem; transform: rotate(15deg); }
.welcome-decor-dots { bottom: 25%; left: 6%; width: 40px; height: 40px; background-image: radial-gradient(#333 20%, transparent 20%); background-size: 15px 15px; opacity: 0.8; }
.welcome-decor-circle { position: absolute; top: 10%; left: 8%; width: 25px; height: 25px; border: 2px solid #369c9b; border-radius: 50%; z-index: 3; }

/* Welcome Section Mobile Responsive */
@media (max-width: 991px) {
  .welcome-section { padding: 60px 0; }
  .welcome-grid { flex-direction: column; gap: 4rem; }
  .welcome-section::before { width: 100%; height: 45%; }
  .welcome-img-col { width: 100%; max-width: 500px; margin: 0 auto; }
  .welcome-text-col { padding-right: 0; text-align: center; }
  .welcome-tagline::after { left: 50%; transform: translateX(-50%); }
  .welcome-title { font-size: 2.2rem; }
  .welcome-desc p { font-size: 0.95rem; }
  .welcome-decor-heart, .welcome-decor-yellow, .welcome-decor-dots, .welcome-decor-circle { display: none; }
  .welcome-badge-circle { width: 100px; height: 100px; bottom: 0; right: 0; transform: translate(20%, 20%); }
}

/* â”€â”€ Stories of Hope â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stories-section { padding: 80px 0 100px; background: #f8fafc; overflow: hidden; position: relative; }

/* Outer wrapper: relative for arrows */
.stories-slider-container {
  position: relative;
}

/* Clip window */
.stories-track-wrapper {
  overflow: hidden;
  padding-top: 50px; /* room for overhanging avatar */
  padding-bottom: 30px; /* room for card drop-shadows */
}

/* Flex track */
.stories-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Individual card â€” each takes exactly half the container */
.story-card {
  flex: 0 0 calc(50% - 1rem);
  min-width: 0;
  background: #fff;
  border: 2px solid #0ea472;
  border-radius: 16px;
  padding: 0 0 1.8rem;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 45px rgba(0,0,0,0.1);
}

/* Header row: avatar | name pill | quote icon (space-between) */
.story-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem 0 0;
  margin-top: -40px; /* pull up so avatar overhangs */
  margin-bottom: 1.4rem;
}

/* Avatar â€” circular, overhangs the top */
.story-avatar {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 4px solid #fff;
  outline: 2.5px solid #0ea472;
  overflow: hidden;
  margin-left: 1.5rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.story-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* Name pill â€” dark rounded capsule */
.story-name-pill {
  flex: 1;
  background: #1a2a2a;
  border-radius: 50px;
  padding: 0.55rem 1.4rem;
  display: flex;
  flex-direction: column;
}
.story-name-pill strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: block;
  line-height: 1.3;
}
.story-name-pill span {
  color: #0ea472;
  font-size: 0.78rem;
  font-style: italic;
  display: block;
  line-height: 1.3;
}

/* Quote icon â€” teal filled circle, top-right */
.story-quote-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0ea472;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1rem;
  margin-top: 40px; /* align back to normal since header is pulled up */
}

/* Body text */
.story-body {
  padding: 0 1.8rem;
}
.story-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #374151;
  text-align: center;
  margin: 0;
}

/* Nav arrows â€” stacked vertically, right edge */
.stories-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.story-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #d1d5db;
  background: #fff;
  color: #374151;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.story-nav-btn:hover {
  border-color: #0ea472;
  color: #0ea472;
  background: #f0fdf8;
}



/* ——— Footer ———————————————————————————————————————————————————————— */
.cn-footer { background-color: #061121; color: rgba(255,255,255,.7); padding: 100px 0 0; position: relative; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 3rem; padding: 1.2rem 0; display: flex; justify-content: space-between; align-items: center; font-size: .82rem; }

/* ——— Branch Stats ———————————————————————————————————————————————— */
.branch-stat-card { display: flex; align-items: center; padding: 15px 25px; border-radius: 20px; background: #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.branch-stat-icon { width: 60px; height: 60px; border-radius: 15px; display: flex; align-items: center; justify-content:center; font-size: 1.8rem; color: #fff; margin-right: 20px; }
.branch-stat-info h3 { margin: 0; font-size: 2.2rem; font-weight: 800; }

.stat-purple { background-color: #a855f7; }
.stat-blue { background-color: #3b82f6; }
.stat-orange { background-color: #f59e0b; }
.stat-red { background-color: #ef4444; }
.stat-teal { background-color: #14b8a6; }

/* ——— Animations ———————————————————————————————————————————————— */
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
@keyframes fadeInUp  { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.animate-fadeInUp { animation: fadeInUp .7s ease forwards; }

.cart-badge {
  position: absolute; top: -8px; right: -8px; background: var(--orange); color: #fff; font-size: 0.65rem; font-weight: 800; min-width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 2px; box-shadow: 0 2px 5px rgba(0,0,0,0.2); border: 1.5px solid #0f9d78; z-index: 5; pointer-events: none;
}
.position-relative { position: relative !important; }

/* --- Our Branches Section (Appended) --- */
.branches-section { padding: 80px 0; background-color: #fcfcfc; }
.branch-stats-grid { display: flex; flex-direction: column; gap: 20px; }
.branch-stat-card { display: flex; align-items: center; padding: 15px 25px; border-radius: 20px; background: #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.branch-stat-card:hover { transform: translateX(10px); }
.branch-stat-icon { width: 60px; height: 60px; border-radius: 15px; display: flex; align-items: center; justify-content:center; font-size: 1.8rem; color: #fff; margin-right: 20px; }
.branch-stat-info h3 { margin: 0; font-size: 2.2rem; font-weight: 800; line-height: 1; }
.branch-stat-info .label { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; color: #333; letter-spacing: 0.5px; }
.branch-stat-info .sub-label { font-size: 0.7rem; text-transform: uppercase; color: #777; font-weight: 600; letter-spacing: 1px; }
.card-purple { background-color: #f3e8ff; border: 1px solid #e9d5ff; }
.card-blue { background-color: #dbeafe; border: 1px solid #bfdbfe; }
.card-orange { background-color: #ffedd5; border: 1px solid #fed7aa; }
.card-red { background-color: #fee2e2; border: 1px solid #fecaca; }
.card-teal { background-color: #ccfbf1; border: 1px solid #99f6e4; }
.branch-map-container { position: relative; height: 100%; min-height: 550px; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); background: #fff; border: 1px solid #eee; }
#map { position: relative; height: 100%; width: 100%; z-index: 1; overflow: hidden; }

/* -- Rights Cards Grid ---------------------------------------- */
/* â”€â”€ Rights Grid v1 (kept for backward compat) â”€â”€ */
.rights-grid { display: none; }

/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   RIGHTS CARDS v2 â€” Vertical pill cards with large icon circles
   (Inspired by reference screenshot)
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
.rights-grid-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 4rem;
  position: relative;
  z-index: 5;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
.rcv-connector {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.rcv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  flex-shrink: 0;
  margin: 0 4px;
}
.rcv-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none !important;
  border-radius: 22px;
  padding: 1.6rem 1.2rem 1.4rem;
  width: 150px;
  min-height: 190px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  gap: 0.9rem;
  border: 2px solid transparent;
}
.rcv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.13);
  text-decoration: none !important;
}
.rcv-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.rcv-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transition: transform 0.3s ease;
}
.rcv-card:hover .rcv-icon-circle { transform: scale(1.08); }
.rcv-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Active / first card â€” elevated white card with shadow */
.rcv-card.rcv-active {
  background: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
  transform: translateY(-6px);
}

/* Theme colours -- card background, distinct vivid borders */
.rcv-card.rcv-blue   { background: #eff6ff; border-color: #3b82f6; border-width: 2px; }
.rcv-card.rcv-green  { background: #ecfdf5; border-color: #10b981; border-width: 2px; }
.rcv-card.rcv-orange { background: #fffbeb; border-color: #f59e0b; border-width: 2px; }
.rcv-card.rcv-purple { background: #f5f3ff; border-color: #8b5cf6; border-width: 2px; }
.rcv-card.rcv-pink   { background: #fdf2f8; border-color: #ec4899; border-width: 2px; }
.rcv-card.rcv-red    { background: #fef2f2; border-color: #ef4444; border-width: 2px; }

/* Active card with top accent border + colored shadow */
.rcv-card.rcv-active.rcv-blue   { background: #fff; border-top-width: 4px; box-shadow: 0 16px 40px rgba(59,130,246,0.2); }
.rcv-card.rcv-active.rcv-green  { background: #fff; border-top-width: 4px; box-shadow: 0 16px 40px rgba(16,185,129,0.2); }
.rcv-card.rcv-active.rcv-orange { background: #fff; border-top-width: 4px; box-shadow: 0 16px 40px rgba(245,158,11,0.2); }
.rcv-card.rcv-active.rcv-purple { background: #fff; border-top-width: 4px; box-shadow: 0 16px 40px rgba(139,92,246,0.2); }
.rcv-card.rcv-active.rcv-pink   { background: #fff; border-top-width: 4px; box-shadow: 0 16px 40px rgba(236,72,153,0.2); }
.rcv-card.rcv-active.rcv-red    { background: #fff; border-top-width: 4px; box-shadow: 0 16px 40px rgba(239,68,68,0.2); }

/* Icon circles with matching color + glow ring */
.rcv-card.rcv-blue   .rcv-icon-circle { background: #3b82f6; box-shadow: 0 8px 20px rgba(59,130,246,0.35), 0 0 0 5px #dbeafe; }
.rcv-card.rcv-green  .rcv-icon-circle { background: #10b981; box-shadow: 0 8px 20px rgba(16,185,129,0.35), 0 0 0 5px #d1fae5; }
.rcv-card.rcv-orange .rcv-icon-circle { background: #f59e0b; box-shadow: 0 8px 20px rgba(245,158,11,0.35), 0 0 0 5px #fef3c7; }
.rcv-card.rcv-purple .rcv-icon-circle { background: #8b5cf6; box-shadow: 0 8px 20px rgba(139,92,246,0.35), 0 0 0 5px #ede9fe; }
.rcv-card.rcv-pink   .rcv-icon-circle { background: #ec4899; box-shadow: 0 8px 20px rgba(236,72,153,0.35), 0 0 0 5px #fce7f3; }
.rcv-card.rcv-red    .rcv-icon-circle { background: #ef4444; box-shadow: 0 8px 20px rgba(239,68,68,0.35), 0 0 0 5px #fee2e2; }

/* Label text color per theme */
.rcv-card.rcv-blue   .rcv-label { color: #2563eb; font-weight: 800; }
.rcv-card.rcv-green  .rcv-label { color: #059669; font-weight: 800; }
.rcv-card.rcv-orange .rcv-label { color: #d97706; font-weight: 800; }
.rcv-card.rcv-purple .rcv-label { color: #7c3aed; font-weight: 800; }
.rcv-card.rcv-pink   .rcv-label { color: #db2777; font-weight: 800; }
.rcv-card.rcv-red    .rcv-label { color: #dc2626; font-weight: 800; }

/* Hover glow per theme */
.rcv-card.rcv-blue:hover   { box-shadow: 0 20px 40px rgba(59,130,246,0.22); }
.rcv-card.rcv-green:hover  { box-shadow: 0 20px 40px rgba(16,185,129,0.22); }
.rcv-card.rcv-orange:hover { box-shadow: 0 20px 40px rgba(245,158,11,0.22); }
.rcv-card.rcv-purple:hover { box-shadow: 0 20px 40px rgba(139,92,246,0.22); }
.rcv-card.rcv-pink:hover   { box-shadow: 0 20px 40px rgba(236,72,153,0.22); }
  .movement-section { padding: 60px 0; }
  .movement-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Stories of Hope */
  .stories-section { padding: 60px 0 80px; }
  .story-card { flex: 0 0 calc(50% - 1rem); }

  /* Branches section ï¿½ stack map below stats */
  .branches-section .row { flex-direction: column; }
  .branches-section .col-lg-5,
  .branches-section .col-lg-7 { flex: 0 0 100%; max-width: 100%; }
  .branch-map-container { min-height: 350px; margin-top: 2rem; }
  .branch-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* FAQ */
  .faq-section { padding: 60px 0; }
  .faq-title { font-size: 2rem; }

  /* Featured Projects ï¿½ 2 per row */
  .card-cn { margin-bottom: 1.5rem; }

  /* Footer */
  .cn-footer { padding: 60px 0 0; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* -- Mobile-L (<=768px) --------------------------------------- */
@media (max-width: 768px) {
  /* General */
  .section { padding: 48px 0; }
  h2 { font-size: 1.6rem; }

  /* Stats section ï¿½ 2 per row */
  #statsSection .col-md-3 { flex: 0 0 50%; max-width: 50%; }

  /* Impact Banner ï¿½ 2-col grid */
  .impact-banner { padding: 1.5rem; margin-top: -30px; border-radius: 16px; }
  .impact-banner-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .impact-banner-num { font-size: 1.8rem; }
  .impact-banner-label { font-size: 0.82rem; }

  /* Welcome section ï¿½ already handled but tighten padding */
  .welcome-section { padding: 48px 0; }
  .welcome-title { font-size: 2rem; }

  /* Rights grid ï¿½ 2 per row */
  
  

  /* Movement cards ï¿½ 2 per row */
  .movement-card { padding: 1.4rem 1rem; }
  .movement-card .icon-circle { width: 55px; height: 55px; font-size: 1.4rem; }

  /* Stories */
  .story-card { width: calc(100vw - 3rem); }
  .story-name-pill { padding: 10px 20px; }

  /* Announcement section */
  .announcement-section .row { flex-direction: column; gap: 1.5rem; }
  
  /* Branch stats ï¿½ stack back to single column */
  .branch-stats-grid { grid-template-columns: 1fr; }
  .branch-stat-card { padding: 12px 18px; }
  .branch-stat-icon { width: 50px; height: 50px; font-size: 1.4rem; }
  .branch-stat-info h3 { font-size: 1.8rem; }
  .branch-map-container { min-height: 280px; }

  /* FAQ */
  .faq-title { font-size: 1.8rem; }
  .faq-question { font-size: 0.95rem; }
  .faq-header { gap: 1rem; padding: 1rem; }
  .faq-content { padding: 0 1rem 0 4rem; }
  .faq-item.active .faq-content { padding-bottom: 1.2rem; }
  .faq-icon-box { width: 36px; height: 36px; font-size: 0.95rem; }

  /* Newsletter */
  .section-sm .d-flex { flex-direction: column; align-items: stretch !important; }

  /* Footer */
  .cn-footer .col-lg-4, .cn-footer .col-lg-3, .cn-footer .col-lg-2 { margin-bottom: 2rem; }

  /* Projects grid ï¿½ 1 col on mobile */
  .projects-grid .col-md-4 { flex: 0 0 100%; max-width: 100%; }
}

/* -- Mobile (<=575px) ----------------------------------------- */
@media (max-width: 575px) {
    .header-top-inner {
        gap: 12px !important;
    }
    .announcement-ticker-wrap {
  /* Featured projects ï¿½ full width */
  .featured-projects .col-md-4 { flex: 0 0 100%; max-width: 100%; }

  /* Join movement cards */
  .movement-section .row > [class*="col-"] { flex: 0 0 100%; max-width: 100%; }

  /* Branch stats */
  .branch-stats-grid { grid-template-columns: 1fr; }
  .branch-map-container { min-height: 250px; }

  /* FAQ */
  .faq-title { font-size: 1.6rem; }
  .faq-header { gap: 0.8rem; padding: 0.9rem 1rem; }
  .faq-content { padding: 0 0.8rem 0 3.5rem; }
  .faq-icon-box { width: 32px; height: 32px; font-size: 0.85rem; border-radius: 8px; }
  .faq-section { padding: 48px 0; }
  .faq-section .text-center.mb-5::before,
  .faq-section .text-center.mb-5::after { display: none; }

  /* Newsletter */
  .section-sm { padding: 2rem 0; }
  .section-sm .btn { width: 100%; justify-content: center; }
}

/* -- Extra small (<=400px) ------------------------------------ */
@media (max-width: 400px) {
  .welcome-title { font-size: 1.6rem; }
  .impact-banner-grid { grid-template-columns: 1fr; }
  .impact-banner-num { font-size: 1.5rem; }
  
  .faq-title { font-size: 1.4rem; }
  .hero-actions { flex-direction: column; gap: 0.5rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}


/* -- Hero Floating Stat Cards --------------------------------- */
.hcs-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  color: #fff;
  z-index: 6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  min-width: 150px;
  pointer-events: none;
}
.hcs-float-card .label {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}
.hcs-float-card .value {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.1;
}
.hcs-float-bl { bottom: 60px; left: 30px; }
.hcs-float-tr { top: 120px; right: 30px; }

/* Hide float cards on mobile to prevent overlap */
@media (max-width: 991px) {
  .hcs-float-card { display: none; }
}

/* -- Hero actions flex wrap on small screens ------------------- */
@media (max-width: 768px) {
  .hero-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
  .hero-actions .btn { flex: 1 1 auto; min-width: 140px; font-size: 0.82rem; padding: 0.65rem 1rem; }
  .hcs-content { max-width: 100%; padding: 0 0.5rem; }
  .hcs-heading { font-size: clamp(1.4rem, 5vw, 2rem) !important; }
  .hcs-lead { font-size: 0.9rem; margin-bottom: 1rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-carousel-section .hero-stats { display: none; }
  .hcs-heading { font-size: 1.4rem !important; }
  .hcs-lead { font-size: 0.88rem; }
  .hero-badge { font-size: 0.75rem; }
}


/* -- Hero slide badge ï¿½ hide on mobile to remove heading overlap --- */

    .header-top-inner {
        gap: 12px !important;
    }
    .announcement-ticker-wrap {
        height: 32px !important;
        min-width: 260px !important;
    }
    .header-search {
        max-width: 100% !important;
    }
    :root { 
        --navbar-h: 170px !important; 
    }
}
  .hcs-caption { font-size: 0.78rem; padding: 0.6rem 1rem; }
  .hcs-content-wrap { align-items: flex-start; padding-top: calc(var(--navbar-h) + 2rem); }
}


/* -- Hero ticker and badge cleanup on tablet/mobile ----------- */
@media (max-width: 991px) {
  /* Prevent ticker bar showing on tablet */
  
  /* Move slide badge to below navbar properly */
  .hcs-slide-badge { top: 1rem; right: 1rem; font-size: 0.72rem; padding: 0.25rem 0.7rem; }
  /* Hero content ï¿½ give more vertical padding to avoid nav overlap */
  .hcs-content-wrap { align-items: center; padding-top: calc(var(--navbar-h) + 1rem); padding-bottom: 1rem; }
  .hcs-content { max-width: 100%; }
  .hcs-heading { font-size: clamp(1.5rem, 5vw, 2.2rem) !important; margin-bottom: 0.6rem; }
  .hcs-lead { font-size: 0.88rem; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .hero-actions .btn { font-size: 0.8rem; padding: 0.55rem 1rem; }
  .hero-carousel-section .hero-stats { gap: 1rem; margin-top: 1rem; }
  .hero-carousel-section .hero-stat strong { font-size: 1.3rem; }
  .hero-carousel-section .hero-stat span { font-size: 0.75rem; }
}


    .header-top-inner {
        gap: 12px !important;
    }
    .announcement-ticker-wrap {
        height: 32px !important;
        min-width: 260px !important;
    }
    .header-search {
        max-width: 100% !important;
    }
    :root { 
        --navbar-h: 170px !important; 
    }
}
  .hero-carousel-section .hero-stats { gap: 0.8rem; }
  .hero-carousel-section .hero-stat strong { font-size: 1.2rem; }
}

/* -- Rights grid ? force 1 col on mobile ----------------------- */
@media (max-width: 480px) {
  
}

/* -- Welcome text alignment on very small screens --------------- */
@media (max-width: 480px) {
  .welcome-text-col { text-align: left; }
  .welcome-tagline::after { left: 0; transform: none; }
  .welcome-btn { width: auto; }
}


/* -- Hero ? stronger overlay on mobile so bg image text doesn't bleed -- */
@media (max-width: 768px) {
  .hcs-overlay {
    background: linear-gradient(
      160deg,
      rgba(10, 18, 40, 0.88) 0%,
      rgba(10, 18, 40, 0.65) 55%,
      rgba(10, 18, 40, 0.35) 100%
    ) !important;
  }
}


/* -- Branch Map ? explicit heights so Leaflet renders on mobile --- */
/* Leaflet REQUIRES the #map element to have a resolved pixel height.  */
/* 'height: 100%' only works when the parent has an explicit px height. */
.branch-map-container {
  height: 550px !important;
  min-height: 300px;
  position: relative;
}
#map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  z-index: 1;
}

@media (max-width: 1200px) {
  .branch-map-container { height: 480px !important; }
}
@media (max-width: 991px) {
  .branch-map-container { height: 380px !important; margin-top: 2rem; }
}
@media (max-width: 768px) {
  .branch-map-container { height: 320px !important; }
}
@media (max-width: 575px) {
  .branch-map-container { height: 280px !important; border-radius: 12px; }
}
@media (max-width: 400px) {
  .branch-map-container { height: 240px !important; }
}



/* ================================================================
   FINAL SCREENSHOT-BASED HEADER RESTORATION (PRECISION UPDATE)
   Matches the exact secondary menu layout and typography.
   ================================================================ */

/* ── Tablet & Mobile (≤1199px): Show Yellow Bar, Show Teal Nav Only ── */
@media (max-width: 768px) {
    .header-top { display: block !important; }
    .header-top-center, .header-top-right { display: block !important; }
    .header-top-left { max-width: 100% !important; }
}

@media (max-width: 1199px) {

    /* ── 1. Show the yellow action bar for notifications ── */
    .header-top {
        display: block !important;
    }
}

:root {
    --navbar-h: 112px;
}

/* â”€â”€ Premium Modern Header Top (Yellow Bar) â”€â”€ */
.header-top {
    background-color: #f1b317 !important;
    padding: clamp(8px, 1vw, 12px) 0 !important;
    width: 100% !important;
    position: relative !important;
    z-index: 1050 !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
    overflow-x: hidden !important;
}

.header-top-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 clamp(10px, 1.5vw, 20px) !important;
    gap: clamp(8px, 1vw, 15px) !important;
    flex-wrap: nowrap !important;
}

.header-top-left {
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(8px) !important;
    border-radius: 8px !important;
    padding: 2px !important;
    max-width: clamp(200px, 20vw, 280px) !important;
}

.header-top-center {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 200px !important;
    max-width: 400px !important;
}

.header-top-right {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
}

.header-search {
    width: 100% !important;
    margin: 0 auto !important;
}

.header-search input {
    width: 100% !important;
    padding: 8px 15px !important;
    font-size: clamp(12px, 1vw, 14px) !important;
}

/* Modern Action Buttons */
.header-top-actions {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: clamp(4px, 0.5vw, 8px) !important;
    justify-content: flex-end !important;
}

.ht-btn {
    color: #fff !important;
    font-size: clamp(10px, 0.75vw, 12px) !important;
    font-weight: 600 !important;
    padding: clamp(4px, 0.5vw, 6px) clamp(6px, 0.7vw, 12px) !important;
    border-radius: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(3px, 0.4vw, 6px) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08) !important;
}

.ht-btn i {
    font-size: clamp(11px, 0.8vw, 13px) !important;
}

.ht-btn:hover {
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15) !important;
    filter: brightness(1.1) !important;
}

.ht-teal { background: #0ea472 !important; }
.ht-blue { background: #3b82f6 !important; }
.ht-purple { background: #8b5cf6 !important; }
.ht-red { background: #ef4444 !important; }
.ht-cyan { background: #06b6d4 !important; }
.ht-darkblue { background: #1e3a8a !important; }

/* Secondary Menu (Teal Bar) - PRECISION FIX */
.header-bottom {
    background: #369c9b !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
}

.header-bottom-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    height: 100% !important;
}

.header-logo-box {
    background: #fff !important;
    height: 100% !important;
    padding: 0 25px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.header-nav {
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
    padding: 0 10px !important;
    position: static !important;
    left: auto !important;
    height: 100% !important;
    width: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    z-index: 1000 !important;
}

.header-nav-links {
    list-style: none !important;
    display: flex !important;
    flex-direction: row !important;
    gap: clamp(10px, 1.5vw, 25px) !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center !important;
    width: auto !important;
}

.header-nav-links li {
    padding: 0 !important;
    margin: 0 !important;
}

.header-nav-links li a {
    color: #fff !important;
    font-size: clamp(0.68rem, 0.8vw, 0.88rem) !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
    padding: 10px 4px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    position: static !important;
}

.header-nav-links li a::before {
    display: none !important;
}

.nav-arrow {
    display: inline-block !important;
    background: transparent !important;
    color: inherit !important;
    width: auto !important;
    height: auto !important;
    margin-left: 6px !important;
    font-size: 0.65rem !important;
    opacity: 0.85 !important;
}

.header-join {
    padding-right: 20px !important;
    flex-shrink: 0 !important;
}

.btn-join {
    background: #ffca28 !important;
    color: #000 !important;
    font-weight: 800 !important;
    font-size: clamp(0.64rem, 0.7vw, 0.8rem) !important;
    padding: 8px 18px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    display: inline-block !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
}

/* Ensure submenus are professional */
.has-submenu { position: relative !important; }
.has-submenu:hover > .submenu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.submenu {
    display: none;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #fff !important;
    min-width: 220px !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
    border-radius: 0 0 8px 8px !important;
    padding: 10px 0 !important;
    z-index: 2000 !important;
}

.submenu li a {
    color: #333 !important;
    padding: 10px 20px !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    width: 100% !important;
}

.submenu li a:hover {
    background: #f0f7f6 !important;
    color: #369c9b !important;
}

/* Legacy mobile overrides removed to allow flexible header layout */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE BREAKPOINTS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
   â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */

/* â”€â”€ Tablet & Mobile (â‰¤1199px): Hide Yellow Bar, Show Teal Nav Only â”€â”€ */
@media (max-width: 1199px) {

    /* â”€â”€ 1. Hide the entire yellow action bar â”€â”€ */
    .header-top {
        display: block !important;
    }

    /* â”€â”€ 2. Teal bar becomes the sole header â€” fix it to top â”€â”€ */
    .header-bottom {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1049 !important;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18) !important;
    }

    /* â”€â”€ 3. Reset navbar height to just the teal bar â”€â”€ */
    :root {
        --navbar-h: 65px !important;
    }

    /* â”€â”€ 4. Hero section adjusts below teal bar â”€â”€ */
    .hero-carousel-section {
        height: calc(100svh - 65px) !important;
    }
    .hcs-content-wrap {
        padding-top: 65px !important;
    }

    /* â”€â”€ 5. Hamburger visible, nav links off-canvas â”€â”€ */
    .cn-hamburger {
        display: block !important;
    }

    .header-nav {
        position: fixed !important;
        top: 0 !important;
        left: -320px !important;
        width: 300px !important;
        max-width: 85vw !important;
        height: 100vh !important;
        background: #1e2634 !important;
        padding: 0 !important;
        transition: left 0.3s ease-in-out !important;
        z-index: 1050 !important;
        display: block !important;
        overflow-y: auto !important;
    }

    .header-nav.open {
        left: 0 !important;
    }

    .header-nav-links {
        flex-direction: column !important;
        gap: 10px !important;
        align-items: stretch !important;
        padding: 0 20px 30px !important;
    }

    .header-nav-links li a {
        background: #1e2634 !important;
        color: #fff !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        justify-content: space-between !important;
        padding: 13px 16px !important;
        border-radius: 10px !important;
        font-size: clamp(0.85rem, 2vw, 0.95rem) !important;
    }

    /* â”€â”€ 6. Teal bar inner layout: logo left, join+hamburger right â”€â”€ */
    .header-bottom-inner {
        padding: 0 16px !important;
        height: 65px !important;
    }

    .header-logo-box .cn-logo-text {
        font-size: 1.15rem !important;
    }

    .cn-logo img {
        height: 36px !important;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TABLET NAV REFLOW â€” Show nav inline in teal bar (769pxâ€“1199px)
   This block appears AFTER the offcanvas block above, so its
   !important rules win the cascade for the overlapping range.
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (min-width: 769px) and (max-width: 1199px) {

  /* â”€â”€ Restore header-nav to normal inline position â”€â”€ */
  .header-nav {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
    padding: 0 !important;
    z-index: auto !important;
    transition: none !important;
    display: flex !important;
    flex: 1 !important;
    justify-content: center !important;
  }

  /* Hide offcanvas chrome â€” not needed when nav is inline */
  .offcanvas-header  { display: none !important; }
  .offcanvas-overlay { display: none !important; }
  .cn-hamburger      { display: none !important; }

  /* â”€â”€ Yellow top bar: show again on tablet â”€â”€ */
  .header-top { display: block !important; }

  /* â”€â”€ header-bottom: auto height so it grows when nav wraps â”€â”€ */
  .header-bottom {
    position: relative !important;
    height: auto !important;
    min-height: 50px !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    box-shadow: none !important;
  }
  .header-bottom-inner {
    align-items: stretch !important;
    padding: 0 16px !important;
    height: auto !important;
  }
  .header-logo-box {
    height: auto !important;
    min-height: 50px !important;
    align-self: stretch !important;
  }

  /* â”€â”€ Nav links: horizontal wrapping row â”€â”€ */
  .header-nav-links {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2px 6px !important;
    padding: 5px 6px !important;
    margin: 0 !important;
  }

  /* â”€â”€ Link style: white on teal â”€â”€ */
  .header-nav-links li a {
    display: inline-flex !important;
    align-items: center !important;
    background: transparent !important;
    color: #fff !important;
    font-size: clamp(0.62rem, 0.9vw, 0.8rem) !important;
    font-weight: 600 !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    border: none !important;
    white-space: nowrap !important;
    opacity: 1 !important;
    transition: opacity 0.2s, background 0.2s !important;
    position: static !important;
    justify-content: flex-start !important;
  }
  .header-nav-links li a:hover {
    opacity: 0.85 !important;
    background: rgba(255,255,255,0.12) !important;
  }
  .header-nav-links li a::before { display: none !important; }

  /* â”€â”€ Nav arrow â”€â”€ */
  .nav-arrow {
    background: transparent !important;
    color: rgba(255,255,255,0.9) !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    font-size: 0.65rem !important;
    display: inline-flex !important;
    margin-left: 2px !important;
  }

  /* â”€â”€ Submenus: dropdown (click-toggled via existing JS) â”€â”€ */
  .has-submenu { position: relative !important; }
  .submenu {
    position: absolute !important;
    top: calc(100% + 2px) !important;
    left: 0 !important;
    background: #fff !important;
    min-width: 210px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
    border-radius: 8px !important;
    padding: 8px 0 !important;
    z-index: 1200 !important;
    margin: 0 !important;
    flex-direction: column !important;
    border-top: 3px solid var(--green) !important;
    display: none !important;
    gap: 0 !important;
    width: auto !important;
  }
  .has-submenu.open > .submenu { display: flex !important; }
  .submenu li { width: 100% !important; }
  .submenu li a {
    display: block !important;
    padding: 8px 16px !important;
    color: #333 !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    white-space: normal !important;
    transition: background 0.2s, color 0.2s !important;
    justify-content: flex-start !important;
  }
  .submenu li a::before   { display: none !important; }
  .submenu li a:hover     { background: #f0f7f6 !important; color: var(--green) !important; }
  .submenu li.divider     { height: 1px !important; background: rgba(0,0,0,.06) !important; margin: 4px 12px !important; }
  .submenu li.submenu-label {
    font-size: .65rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    color: var(--muted) !important;
    padding: 8px 16px 4px !important;
    letter-spacing: .05em !important;
    background: transparent !important;
  }
  .submenu li.submenu-label::before { display: none !important; }

  /* â”€â”€ Adjust --navbar-h: header-top (wrapped, ~120px) + nav bar (~70px) â”€â”€ */
  :root          { --navbar-h: 200px !important; }
  .hero-carousel-section { height: calc(100svh - 200px) !important; }
  .hcs-content-wrap      { padding-top: 200px !important; }
}


/* â”€â”€ Small Mobile (â‰¤575px) â”€â”€ */
@media (max-width: 575px) {
    :root {
        --navbar-h: 60px !important;
    }

    .hero-carousel-section {
        height: calc(100svh - 60px) !important;
    }

    .hcs-content-wrap {
        padding-top: 60px !important;
    }

    .header-bottom-inner {
        height: 60px !important;
        padding: 0 12px !important;
    }

    .cn-logo img {
        height: 30px !important;
    }

    .cn-logo-text {
        font-size: 1rem !important;
    }
}

 
 . c i r c u l a r - l o g o   {   b o r d e r - r a d i u s :   5 0 %   ! i m p o r t a n t ;   a s p e c t - r a t i o :   1 / 1   ! i m p o r t a n t ;   o b j e c t - f i t :   c o v e r   ! i m p o r t a n t ;   } 
 
 

.circular-logo { border-radius: 50% !important; aspect-ratio: 1/1 !important; object-fit: cover !important; }

/* === MOBILE HEADER & LAYOUT FIX === */
@media (max-width: 991px) {
    /* Fix header overlap by ensuring search and actions are hidden on small screens */
    .header-top { display: block !important; }
    .header-top-center, .header-top-right { display: none !important; }
    .header-top-left { max-width: 100% !important; display: flex !important; justify-content: center !important; }
    .header-top-inner { flex-direction: column !important; padding: 4px 8px !important; }

    /* Force the navigation strictly off-canvas so it doesn't overlap, while allowing slide animations */
    .header-nav {
        position: fixed !important;
        top: 0 !important;
        left: -320px !important;
        width: 300px !important;
        height: 100vh !important;
        background: #1e2634 !important;
        display: block !important;
        transition: left 0.35s ease-in-out !important;
        z-index: 1050 !important;
    }
    .header-nav.open {
        left: 0 !important;
    }
    
    /* Restore vertical stacking and offcanvas components that tablet mode hides */
    .header-nav-links { flex-direction: column !important; align-items: stretch !important; padding: 0 16px 30px !important; }
    .offcanvas-header { display: flex !important; justify-content: space-between !important; padding: 20px 16px !important; }
    .offcanvas-overlay.show { display: block !important; }

    /* Professional Off-canvas Link Styling */
    .header-nav-links > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
        width: 100% !important;
    }
    .header-nav-links > li > a {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 14px 10px !important;
        color: #f1f5f9 !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 6px !important;
        transition: all 0.3s ease !important;
    }
    .header-nav-links > li > a:hover {
        background: rgba(255, 255, 255, 0.05) !important;
        color: #10b981 !important;
        transform: translateX(4px) !important;
    }
    
    /* Rotate arrow on open */
    .nav-arrow { transition: transform 0.3s ease !important; }
    .has-submenu.open > a .nav-arrow { transform: rotate(180deg) !important; }

    /* Submenu Accordion Styling (Fixes the white overlapping box) */
    .has-submenu .submenu {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        background: rgba(0, 0, 0, 0.2) !important;
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.1) !important;
        min-width: 100% !important;
        border-radius: 6px !important;
        padding: 6px 0 !important;
        margin: 4px 0 12px !important;
        border: 1px solid rgba(255, 255, 255, 0.03) !important;
    }
    .has-submenu.open > .submenu {
        display: flex !important;
        flex-direction: column !important;
    }
    .submenu li a {
        display: block !important;
        padding: 10px 16px 10px 24px !important;
        color: #cbd5e1 !important;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        background: transparent !important;
        border: none !important;
        border-left: 2px solid transparent !important;
        border-radius: 0 !important;
        transition: all 0.3s ease !important;
    }
    .submenu li a:hover {
        background: rgba(255, 255, 255, 0.05) !important;
        color: #34d399 !important;
        border-left: 2px solid #34d399 !important;
        padding-left: 28px !important;
    }
    
    /* Ensure the JOIN US and Hamburger buttons are clickable, but stay below the off-canvas menu */
    .header-join {
        position: relative !important;
        z-index: 1000 !important;
        pointer-events: auto !important;
    }

    /* Restore responsive layout rules */
    .welcome-grid { gap: 2.5rem; }
    .welcome-badge-circle { width: 80px; height: 80px; border-width: 5px; }
    .welcome-title { font-size: 1.8rem; }
    .welcome-btn { width: 100%; text-align: center; }
    #statsSection .col-md-3 { flex: 0 0 100%; max-width: 100%; }
    .impact-banner-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .impact-banner-num { font-size: 1.6rem; }
    .movement-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Floating Action Buttons
   ============================================================ */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1050;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-actions.is-scrolling {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.fab-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.fab-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.fab-whatsapp {
    background: #25D366; /* Official WhatsApp color */
}
.fab-whatsapp:hover {
    background: #1ebd5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.fab-totop {
    background: var(--dark);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}
.fab-totop.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.fab-totop:hover {
    background: var(--blue);
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.4);
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 80px; /* Above the mobile CTA */
        right: 20px;
    }
    .fab-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* ── Hero Section ──────────────────────────────────────────── */
.cf-hero-section {
  background: linear-gradient(135deg, #042f2e 0%, #0f766e 50%, #020617 100%);
  padding: 140px 0 80px; position: relative; overflow: hidden; margin-top: 104px;
}
.cf-blob { position: absolute; border-radius: 50%; pointer-events: none; opacity: 0.15; filter: blur(40px); }
.cf-blob-1 { width: 400px; height: 400px; top: -100px; left: -100px; background: #2dd4bf; }
.cf-blob-2 { width: 300px; height: 300px; bottom: -50px; right: 5%; background: #0ea5e9; }
.cf-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cf-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em; color: #5eead4; margin-bottom: 1rem;
}
.cf-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #5eead4;
  box-shadow: 0 0 10px rgba(94,234,212,0.6); animation: cfPulse 2s infinite;
}
@keyframes cfPulse { 0%{transform:scale(1);opacity:1;} 50%{transform:scale(1.5);opacity:0.5;} 100%{transform:scale(1);opacity:1;} }
.cf-hero-title { font-size: 3.5rem; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 1rem; }
.cf-hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 700px; margin-bottom: 2rem; line-height: 1.6; }
.cf-breadcrumb { display: flex; justify-content: center; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.6); }
.cf-breadcrumb a { color: rgba(255,255,255,0.9); text-decoration: none; transition: 0.2s; }
.cf-breadcrumb a:hover { color: #5eead4; }
.cf-bc-sep { font-size: 0.65rem; }
.cf-bc-current { color: #5eead4; }
.cf-hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.cf-hero-wave svg { width: 100%; height: 60px; display: block; }

/* ── Generic Card ──────────────────────────────────────────── */
.cf-card {
  background: #fff; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid #e2e8f0;
}
.cf-section-title { font-size: 2.2rem; font-weight: 800; color: #1e293b; margin-bottom: 0.5rem; }
.cf-section-divider { width: 60px; height: 4px; background: linear-gradient(90deg, #0f766e, #14b8a6); border-radius: 2px; margin-bottom: 1.5rem; }
.border-dashed { border-top: 1px dashed #cbd5e1 !important; margin-top: 20px; padding-top: 20px; }

/* ── Campaign Card ─────────────────────────────────────────── */
.cf-campaign-card {
    background: #fff; border-radius: 24px; position: relative; overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04); border: 1px solid #f1f5f9; padding: 35px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.cf-campaign-card:hover {
    transform: translateY(-5px); box-shadow: 0 25px 45px rgba(0,0,0,0.08);
}
.cf-card-top-border { height: 5px; width: 100%; position: absolute; top: 0; left: 0; }

.cf-badge-outline {
    padding: 6px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 800;
    text-transform: uppercase; border: 1.5px solid; background: transparent;
    display: inline-flex; align-items: center; white-space: nowrap;
}

/* ── Progress Bar ──────────────────────────────────────────── */
.cf-progress-bg {
    height: 12px; background: #f1f5f9; border-radius: 50px; overflow: hidden; position: relative;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}
.cf-progress-bar {
    height: 100%; border-radius: 50px; position: relative;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.cf-progress-glow {
    position: absolute; top: 0; right: 0; width: 10px; height: 100%;
    border-radius: 50%; box-shadow: 0 0 10px 4px rgba(255,255,255,0.4);
}

/* ── Buttons ───────────────────────────────────────────────── */
.cf-btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff !important; border: none; padding: 12px 28px; border-radius: 50px; 
  font-weight: 800; font-size: 0.95rem; text-decoration: none; transition: 0.3s;
}
.cf-btn-primary:hover { transform: translateY(-2px); filter: brightness(1.1); }
.cf-btn-icon {
  width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: #f8fafc; border: 2px solid #e2e8f0; color: #64748b; transition: 0.3s; cursor: pointer;
}
.cf-btn-icon:hover { background: #e2e8f0; color: #1e293b; border-color: #cbd5e1; }

/* ── Sidebar CTA ───────────────────────────────────────────── */
.cf-cta-card {
    background: linear-gradient(135deg, #0f766e, #064e3b); border-radius: 24px; padding: 40px 30px;
    text-align: center; position: relative; overflow: hidden; box-shadow: 0 15px 35px rgba(15,118,110,0.2);
}
.cf-cta-icon {
    width: 70px; height: 70px; border-radius: 50%; background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
    font-size: 2rem; color: #5eead4; border: 1px solid rgba(255,255,255,0.2);
}
.cf-btn-light {
    display: inline-block; background: #fff; color: #0f766e; padding: 14px 20px;
    border-radius: 50px; font-weight: 800; text-decoration: none; transition: 0.3s;
}
.cf-btn-light:hover { background: #5eead4; color: #064e3b; transform: translateY(-2px); }

/* Responsive */
@media (max-width: 767px) {
  .cf-hero-section { margin-top: 80px; }
  .cf-hero-title { font-size: 2.8rem; }
  .cf-campaign-card { padding: 25px; }
}
