/* ================================================================
   STEAMH — Premium Design System v2.0
   Color Brand: Vivid Violet #7C3AED · Electric Cyan #06B6D4
   NGO | Research Institute | Training Organization | Foundation
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

/* ================================================================
   1. DESIGN TOKENS
   ================================================================ */
:root {
  /* ── Primary: Vivid Violet ── */
  --v:        #7C3AED;
  --v-dark:   #5B21B6;
  --v-darker: #3B0764;
  --v-light:  #EDE9FE;
  --v-50:     #F5F3FF;

  /* ── Accent: Electric Cyan ── */
  --c:        #06B6D4;
  --c-dark:   #0891B2;
  --c-darker: #164E63;
  --c-light:  #CFFAFE;
  --c-50:     #ECFEFF;

  /* ── Neutral Dark Scale ── */
  --ink-900:  #030B1A;   /* ultra dark bg */
  --ink-800:  #0A0F1E;   /* dark section bg */
  --ink-700:  #0F172A;   /* cards on dark */
  --ink-600:  #1E293B;   /* border on dark */
  --ink-500:  #334155;   /* body text dark */
  --ink-400:  #475569;   /* muted */
  --ink-300:  #64748B;   /* placeholder */
  --ink-200:  #94A3B8;   /* light text */
  --ink-100:  #CBD5E1;   /* dividers */
  --ink-50:   #F1F5F9;   /* light bg */

  /* ── White ── */
  --white:    #FFFFFF;
  --off-white:#FAFBFF;

  /* ── Semantic ── */
  --green:   #10B981;
  --amber:   #F59E0B;
  --rose:    #F43F5E;

  /* ── Gradients ── */
  --g-primary:  linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
  --g-accent:   linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
  --g-mixed:    linear-gradient(135deg, #7C3AED 0%, #06B6D4 100%);
  --g-mixed-r:  linear-gradient(135deg, #06B6D4 0%, #7C3AED 100%);
  --g-dark:     linear-gradient(135deg, #030B1A 0%, #0A0F1E 60%, #0F172A 100%);
  --g-hero:     radial-gradient(ellipse 70% 70% at 70% 50%, rgba(124,58,237,0.15) 0%, transparent 70%),
                radial-gradient(ellipse 50% 60% at 20% 80%, rgba(6,182,212,0.12) 0%, transparent 70%),
                linear-gradient(180deg, #030B1A 0%, #0A0F1E 100%);
  --g-card-border: linear-gradient(135deg, rgba(124,58,237,0.5), rgba(6,182,212,0.5));
  --g-light:    linear-gradient(135deg, #F5F3FF 0%, #ECFEFF 100%);
  --g-text:     linear-gradient(135deg, #7C3AED 0%, #06B6D4 100%);

  /* ── Glow Effects ── */
  --glow-v:   0 0 40px rgba(124,58,237,0.35);
  --glow-c:   0 0 40px rgba(6,182,212,0.35);
  --glow-mixed: 0 0 60px rgba(124,58,237,0.2), 0 0 60px rgba(6,182,212,0.15);

  /* ── Shadows ── */
  --sh-xs: 0 1px 3px rgba(3,11,26,0.12);
  --sh-sm: 0 4px 16px rgba(3,11,26,0.10);
  --sh-md: 0 8px 32px rgba(3,11,26,0.12);
  --sh-lg: 0 20px 60px rgba(3,11,26,0.15);
  --sh-xl: 0 30px 90px rgba(3,11,26,0.20);
  --sh-card:   0 2px 24px rgba(124,58,237,0.08);
  --sh-hover:  0 16px 48px rgba(124,58,237,0.20);
  --sh-glass:  0 8px 32px rgba(3,11,26,0.30);

  /* ── Glass ── */
  --glass-bg:     rgba(255,255,255,0.06);
  --glass-bg-2:   rgba(255,255,255,0.10);
  --glass-border: rgba(255,255,255,0.12);
  --glass-border-2: rgba(255,255,255,0.20);

  /* ── Radius ── */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-2xl:  40px;
  --r-pill: 9999px;

  /* ── Spacing ── */
  --py-section: 100px;
  --py-section-sm: 70px;

  /* ── Typography ── */
  --font-head: 'Space Grotesk', 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  /* ── Transition ── */
  --t: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --t-spring: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ================================================================
   2. BASE RESET
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body) !important;
  color: var(--ink-500) !important;
  background: var(--white) !important;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head) !important;
  color: var(--ink-900) !important;
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 700;
}
a { color: var(--v); text-decoration: none; transition: var(--t); }
a:hover { color: var(--v-dark); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.fix { overflow: hidden; }

/* ================================================================
   3. TYPOGRAPHY UTILITIES
   ================================================================ */
.sh-text-gradient {
  background: var(--g-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sh-text-gradient-c {
  background: var(--g-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sh-h1 { font-size: clamp(38px, 5.5vw, 80px); font-weight: 800; line-height: 1.05; letter-spacing: -0.04em; }
.sh-h2 { font-size: clamp(28px, 4vw, 52px); font-weight: 700; }
.sh-h3 { font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; }
.sh-h4 { font-size: 20px; font-weight: 700; }
.sh-lead { font-size: clamp(16px, 1.5vw, 18px); line-height: 1.75; color: var(--ink-300); }
.sh-lead-dark { font-size: clamp(16px, 1.5vw, 18px); line-height: 1.75; color: var(--ink-400); }

/* ================================================================
   4. LAYOUT UTILITIES
   ================================================================ */
.sh-section { padding: var(--py-section) 0; }
.sh-section-sm { padding: var(--py-section-sm) 0; }
.sh-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* Section header */
.sh-sec-hd { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.sh-sec-hd h2 { font-size: clamp(28px, 3.8vw, 48px) !important; font-weight: 800 !important; color: var(--ink-900) !important; margin-bottom: 16px !important; }
.sh-sec-hd p { font-size: 17px; color: var(--ink-300); line-height: 1.75; }
.sh-sec-hd-left { text-align: left; max-width: 100%; margin-bottom: 52px; }

/* Badge / pill */
.sh-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 18px; border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.sh-badge-v    { background: var(--v-light); color: var(--v-dark); }
.sh-badge-c    { background: var(--c-light); color: var(--c-darker); }
.sh-badge-g    { background: var(--g-mixed); color: #fff; box-shadow: 0 4px 14px rgba(124,58,237,0.3); }
.sh-badge-dark { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px); }
.sh-badge-gn   { background: rgba(16,185,129,0.12); color: #059669; }

/* Gradient divider */
.sh-divider {
  width: 56px; height: 4px;
  background: var(--g-mixed); border-radius: var(--r-pill);
  margin: 16px 0 28px;
}
.sh-divider-c { margin: 16px auto 28px; }

/* ================================================================
   5. BUTTONS
   ================================================================ */
.sh-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-size: 15px; font-weight: 600;
  padding: 14px 30px; border-radius: var(--r-pill);
  border: 2px solid transparent; cursor: pointer;
  transition: var(--t-spring); text-decoration: none; white-space: nowrap;
  position: relative; overflow: hidden;
}
.sh-btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0; transition: opacity 0.2s;
}
.sh-btn:hover::after { opacity: 1; }

/* Gradient primary */
.sh-btn-grad {
  background: var(--g-mixed); color: #fff; border-color: transparent;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}
.sh-btn-grad:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 30px rgba(124,58,237,0.55); color: #fff; }

/* Solid violet */
.sh-btn-v {
  background: var(--v); color: #fff; border-color: var(--v);
  box-shadow: 0 4px 16px rgba(124,58,237,0.35);
}
.sh-btn-v:hover { background: var(--v-dark); border-color: var(--v-dark); transform: translateY(-3px); color: #fff; box-shadow: 0 8px 24px rgba(124,58,237,0.5); }

/* Solid cyan */
.sh-btn-c {
  background: var(--c); color: #fff; border-color: var(--c);
  box-shadow: 0 4px 16px rgba(6,182,212,0.35);
}
.sh-btn-c:hover { background: var(--c-dark); border-color: var(--c-dark); transform: translateY(-3px); color: #fff; box-shadow: 0 8px 24px rgba(6,182,212,0.5); }

/* Glass / outline white (for dark sections) */
.sh-btn-glass {
  background: rgba(255,255,255,0.08); color: #fff;
  border-color: rgba(255,255,255,0.25); backdrop-filter: blur(12px);
}
.sh-btn-glass:hover {
  background: rgba(255,255,255,0.16); color: #fff;
  border-color: rgba(255,255,255,0.45); transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* Outline violet */
.sh-btn-outline-v {
  background: transparent; color: var(--v); border-color: var(--v);
}
.sh-btn-outline-v:hover { background: var(--v); color: #fff; transform: translateY(-3px); }

/* Sizes */
.sh-btn-sm { padding: 10px 22px; font-size: 13px; }
.sh-btn-lg { padding: 17px 38px; font-size: 17px; }
.sh-btn-xl { padding: 20px 48px; font-size: 18px; font-weight: 700; }

/* Icon wrapper */
.sh-btn-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ================================================================
   6. CARDS & GLASSMORPHISM
   ================================================================ */

/* Standard card */
.sh-card {
  background: var(--white); border-radius: var(--r-xl);
  border: 1px solid rgba(124,58,237,0.08);
  transition: var(--t-slow); position: relative; overflow: hidden;
}
.sh-card:hover { transform: translateY(-8px); box-shadow: var(--sh-hover); border-color: rgba(124,58,237,0.2); }

/* Gradient border card */
.sh-card-gb {
  background: var(--white); border-radius: var(--r-xl); position: relative;
  transition: var(--t-slow);
}
.sh-card-gb::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  padding: 2px;
  background: var(--g-card-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0.3; transition: opacity 0.3s;
}
.sh-card-gb:hover::before { opacity: 1; }
.sh-card-gb:hover { transform: translateY(-8px); box-shadow: var(--sh-hover); }

/* Glass card (for dark sections) */
.sh-glass {
  background: var(--glass-bg); backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border); border-radius: var(--r-xl);
  transition: var(--t);
}
.sh-glass:hover { background: var(--glass-bg-2); border-color: var(--glass-border-2); }

/* ================================================================
   7. ICON CONTAINERS
   ================================================================ */
.sh-icon {
  border-radius: var(--r-md); display: inline-flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.sh-icon-sm  { width: 40px; height: 40px; font-size: 18px; }
.sh-icon-md  { width: 56px; height: 56px; font-size: 24px; }
.sh-icon-lg  { width: 72px; height: 72px; font-size: 32px; }
.sh-icon-xl  { width: 88px; height: 88px; font-size: 40px; }
.sh-icon-v   { background: var(--v-light); color: var(--v); }
.sh-icon-c   { background: var(--c-light); color: var(--c-dark); }
.sh-icon-grd { background: var(--g-mixed); color: #fff; box-shadow: 0 8px 20px rgba(124,58,237,0.3); }
.sh-icon-dark { background: rgba(124,58,237,0.2); color: #a78bfa; }
.sh-icon-round { border-radius: 50%; }

/* ================================================================
   8. PRELOADER
   ================================================================ */
.sh-preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink-900);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.sh-preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.sh-pre-logo {
  font-family: var(--font-head); font-size: 42px; font-weight: 800;
  background: var(--g-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -2px;
}
.sh-pre-dots {
  display: flex; gap: 8px;
}
.sh-pre-dot {
  width: 10px; height: 10px; border-radius: 50%;
  animation: preloader-bounce 1.4s ease-in-out infinite;
}
.sh-pre-dot:nth-child(1) { background: var(--v); animation-delay: 0s; }
.sh-pre-dot:nth-child(2) { background: linear-gradient(135deg, var(--v), var(--c)); animation-delay: 0.16s; }
.sh-pre-dot:nth-child(3) { background: var(--c); animation-delay: 0.32s; }
@keyframes preloader-bounce {
  0%,80%,100% { transform: scale(0.6); opacity: 0.4; }
  40%          { transform: scale(1.2); opacity: 1; }
}

/* ================================================================
   9. SCROLL TO TOP
   ================================================================ */
.sh-back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 99;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--g-mixed); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--t-spring);
}
.sh-back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.sh-back-to-top:hover { transform: translateY(-4px) scale(1.08); box-shadow: var(--glow-v); color: #fff; }

/* ================================================================
   10. HEADER / NAVIGATION
   ================================================================ */
.sh-header-top {
  background: var(--ink-900);
  color: rgba(255,255,255,0.7); font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sh-header-top a { color: rgba(255,255,255,0.7); }
.sh-header-top a:hover { color: #fff; }
.sh-header-top .sep { color: rgba(255,255,255,0.2); margin: 0 8px; }

.sh-navbar {
  background: rgba(255,255,255,0.96); backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(124,58,237,0.08);
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.sh-navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 30px rgba(124,58,237,0.12);
}
.sh-navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 24px;
}

/* Logo */
.sh-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.sh-logo-mark {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--g-mixed); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 20px; font-weight: 800;
  box-shadow: 0 4px 16px rgba(124,58,237,0.4);
  position: relative; overflow: hidden;
}
.sh-logo-mark::after {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
}
.sh-logo-text .name {
  display: block; font-family: var(--font-head); font-size: 21px;
  font-weight: 800; color: var(--ink-900); letter-spacing: -0.5px;
  line-height: 1;
}
.sh-logo-text .tagline {
  display: block; font-size: 9.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-300); margin-top: 3px;
}

/* Nav menu */
.sh-nav { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; gap: 2px; }
.sh-nav > li > a {
  display: block; padding: 9px 16px;
  font-family: var(--font-head); font-size: 14px; font-weight: 500;
  color: var(--ink-500); border-radius: var(--r-sm); transition: var(--t);
  white-space: nowrap;
}
.sh-nav > li > a:hover, .sh-nav > li.active > a {
  color: var(--v); background: var(--v-light);
}

/* Dropdown */
.sh-nav .has-dd { position: relative; }
.sh-dd {
  position: absolute; top: calc(100% + 10px); left: 0; z-index: 200;
  min-width: 230px; background: var(--white); border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(3,11,26,0.15); border: 1px solid rgba(124,58,237,0.1);
  padding: 8px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--t);
}
.sh-nav .has-dd:hover .sh-dd { opacity: 1; visibility: visible; transform: translateY(0); }
.sh-dd li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--r-sm); font-size: 14px;
  font-weight: 500; color: var(--ink-500); transition: var(--t);
}
.sh-dd li a:hover { color: var(--v); background: var(--v-50); }
.sh-dd li a .dd-icon {
  width: 30px; height: 30px; border-radius: 7px;
  background: var(--v-light); color: var(--v);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}

/* Header actions */
.sh-nav-actions { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.sh-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 42px; height: 42px; align-items: center; justify-content: center;
  background: var(--v-light); border: none; border-radius: var(--r-sm);
  cursor: pointer; transition: var(--t);
}
.sh-hamburger:hover { background: var(--v); }
.sh-hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--v); border-radius: 2px; transition: var(--t);
}
.sh-hamburger:hover span { background: #fff; }

/* Drawer */
.sh-drawer {
  position: fixed; top: 0; left: 0; width: min(320px, 90vw); height: 100vh;
  background: var(--ink-900); z-index: 999; padding: 0;
  transform: translateX(-100%); transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto; display: flex; flex-direction: column;
}
.sh-drawer.open { transform: translateX(0); }
.sh-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sh-drawer-close {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08);
  border: none; color: rgba(255,255,255,0.7); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: var(--t);
}
.sh-drawer-close:hover { background: rgba(255,255,255,0.16); color: #fff; }
.sh-drawer-nav { padding: 16px; flex: 1; }
.sh-drawer-nav li { list-style: none; }
.sh-drawer-nav li a {
  display: block; padding: 12px 16px; border-radius: var(--r-sm);
  font-family: var(--font-head); font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.75); transition: var(--t);
  text-decoration: none;
}
.sh-drawer-nav li a:hover { color: #fff; background: rgba(124,58,237,0.2); }
.sh-drawer-foot {
  padding: 24px; border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; gap: 12px;
}
.sh-drawer-socials { display: flex; gap: 10px; }
.sh-drawer-socials a {
  width: 36px; height: 36px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--t);
}
.sh-drawer-socials a:hover { background: var(--v); border-color: var(--v); color: #fff; }
.sh-drawer-backdrop {
  position: fixed; inset: 0; background: rgba(3,11,26,0.7);
  z-index: 998; backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: var(--t);
}
.sh-drawer-backdrop.open { opacity: 1; visibility: visible; }

/* Override Apexa header elements */
.tg-header__area { background: transparent !important; border: none !important; box-shadow: none !important; }
.tg-header__top  { display: none !important; }

/* ================================================================
   11. HERO SECTION
   ================================================================ */
.sh-hero {
  position: relative; min-height: 100vh;
  background: var(--g-hero);
  overflow: hidden; display: flex; align-items: center;
}

/* Mesh / noise texture */
.sh-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(255,255,255,0.025) 1px, transparent 0);
  background-size: 40px 40px;
}

/* Glowing orbs */
.sh-orb {
  position: absolute; border-radius: 50%; filter: blur(100px);
  pointer-events: none; z-index: 0;
  animation: orb-float 8s ease-in-out infinite;
}
.sh-orb-1 { width: 700px; height: 700px; background: rgba(124,58,237,0.18); top: -200px; right: -100px; animation-duration: 10s; }
.sh-orb-2 { width: 500px; height: 500px; background: rgba(6,182,212,0.14); bottom: -150px; left: -50px; animation-duration: 13s; animation-delay: -3s; }
.sh-orb-3 { width: 300px; height: 300px; background: rgba(124,58,237,0.10); top: 40%; right: 25%; animation-duration: 9s; animation-delay: -6s; }

@keyframes orb-float {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-30px) scale(1.08); }
  66%      { transform: translate(-20px,20px) scale(0.95); }
}

.sh-hero-inner { position: relative; z-index: 1; width: 100%; padding: 140px 0 90px; }

/* Hero tag */
.sh-hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.3);
  color: #c4b5fd; font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 9px 20px; border-radius: var(--r-pill); margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.sh-hero-tag .live-dot {
  width: 8px; height: 8px; background: #4ade80; border-radius: 50%;
  box-shadow: 0 0 8px #4ade80; animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(0.7);} }

/* Hero heading */
.sh-hero-h1 {
  font-family: var(--font-head) !important; font-size: clamp(40px, 6vw, 82px) !important;
  font-weight: 800 !important; line-height: 1.04 !important; letter-spacing: -0.04em !important;
  color: #fff !important; margin-bottom: 28px !important;
}
.sh-hero-h1 .accent {
  background: linear-gradient(135deg, #a78bfa, #22d3ee);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Hero subtitle */
.sh-hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,0.65); line-height: 1.75;
  max-width: 560px; margin-bottom: 44px;
}

/* Hero CTA row */
.sh-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 60px; }

/* Hero stats inline */
.sh-hero-stats {
  display: flex; gap: 0; flex-wrap: wrap;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg); backdrop-filter: blur(16px);
  overflow: hidden; width: fit-content;
}
.sh-hero-stat {
  padding: 20px 28px; border-right: 1px solid rgba(255,255,255,0.06);
  transition: var(--t);
}
.sh-hero-stat:last-child { border-right: none; }
.sh-hero-stat:hover { background: rgba(124,58,237,0.15); }
.sh-hero-stat .num {
  font-family: var(--font-head); font-size: 30px; font-weight: 800;
  color: #fff; line-height: 1; display: block;
}
.sh-hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; display: block; font-weight: 500; }

/* Hero visual */
.sh-hero-visual { position: relative; height: 560px; }

.sh-hero-img-main {
  position: absolute; top: 0; right: 0;
  width: 88%; height: 400px; border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(3,11,26,0.5), 0 0 0 1px rgba(255,255,255,0.08);
}
.sh-hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.sh-hero-img-main::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.2) 0%, transparent 60%);
}

.sh-hero-img-2 {
  position: absolute; bottom: 0; left: 0;
  width: 52%; height: 200px; border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(3,11,26,0.4), 0 0 0 1px rgba(255,255,255,0.08);
}
.sh-hero-img-2 img { width: 100%; height: 100%; object-fit: cover; }

/* Floating stat cards */
.sh-float-card {
  position: absolute; backdrop-filter: blur(24px);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg); padding: 18px 22px;
  animation: float-card 5s ease-in-out infinite;
}
.sh-float-card-1 { top: 48px; left: -28px; animation-delay: 0s; }
.sh-float-card-2 { bottom: 50px; right: -12px; animation-delay: 2.5s; }
.sh-float-card .fc-num { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: #fff; line-height: 1; }
.sh-float-card .fc-lbl { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 3px; }
@keyframes float-card { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-14px);} }

/* Hero icon badges */
.sh-float-icon {
  position: absolute; width: 54px; height: 54px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  animation: float-card 6s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.sh-float-icon-1 { background: var(--g-accent); color: #fff; top: 90px; right: 36px; animation-delay: 1s; }
.sh-float-icon-2 { background: var(--g-primary); color: #fff; bottom: 100px; left: 24px; animation-delay: 3s; }

/* ================================================================
   12. PARTNERS STRIP
   ================================================================ */
.sh-strip {
  background: var(--white); padding: 18px 0;
  border-top: 1px solid rgba(124,58,237,0.06);
  border-bottom: 1px solid rgba(124,58,237,0.06);
  overflow: hidden;
}
.sh-strip-track {
  display: flex; gap: 40px; animation: marquee 32s linear infinite; width: max-content;
}
.sh-strip-track:hover { animation-play-state: paused; }
.sh-strip-wrap { position: relative; }
.sh-strip-wrap::before, .sh-strip-wrap::after {
  content: ''; position: absolute; top:0; bottom:0; width: 100px; z-index: 2;
}
.sh-strip-wrap::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.sh-strip-wrap::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }

.sh-partner-pill {
  display: flex; align-items: center; gap: 9px; white-space: nowrap;
  font-family: var(--font-head); font-size: 14px; font-weight: 600;
  color: var(--ink-300); padding: 8px 18px; border-radius: var(--r-pill);
  transition: var(--t); cursor: default;
}
.sh-partner-pill:hover { color: var(--v); background: var(--v-50); }
.sh-partner-pip {
  width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 13px; color: #fff;
}
@keyframes marquee { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

/* ================================================================
   13. ABOUT SECTION
   ================================================================ */
.sh-about { padding: var(--py-section) 0; background: var(--white); }

.sh-about-imgs {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 14px;
}
.sh-about-img { border-radius: var(--r-xl); overflow: hidden; }
.sh-about-img img { width:100%; height:100%; object-fit:cover; display:block; transition: transform 0.6s ease; }
.sh-about-img:hover img { transform: scale(1.04); }
.sh-about-img-main { grid-row: 1/3; height: 460px; }
.sh-about-img-sm  { height: 220px; }

/* Experience badge */
.sh-exp-badge {
  position: absolute; bottom: 24px; right: 24px;
  background: var(--white); border-radius: var(--r-lg);
  padding: 22px 26px; box-shadow: 0 20px 60px rgba(124,58,237,0.2);
  border: 1px solid rgba(124,58,237,0.12); text-align: center;
  animation: float-card 4s ease-in-out infinite;
}
.sh-exp-badge .num { display:block; font-family:var(--font-head); font-size:52px; font-weight:800; line-height:1; background:var(--g-text); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.sh-exp-badge .lbl { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color:var(--ink-300); margin-top:4px; }

/* About content */
.sh-about-c { padding-left: 12px; }

.sh-feature-tags { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:32px; }
.sh-tag {
  display:flex; align-items:center; gap:7px;
  background:var(--v-50); border:1px solid rgba(124,58,237,0.12);
  border-radius:var(--r-pill); padding:7px 16px;
  font-size:13px; font-weight:500; color:var(--ink-500); transition:var(--t);
}
.sh-tag:hover { background:var(--v-light); border-color:rgba(124,58,237,0.25); }
.sh-tag i { color:var(--v); }

.sh-check-list { list-style:none; padding:0; margin:0 0 36px; display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.sh-check-list li {
  display:flex; align-items:center; gap:10px;
  font-size:14px; font-weight:500; color:var(--ink-500);
}
.sh-check-icon {
  width:22px; height:22px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg,rgba(124,58,237,0.15),rgba(6,182,212,0.15));
  display:flex; align-items:center; justify-content:center;
  font-size:11px; color:var(--v);
}

/* ================================================================
   14. STEAMH PILLARS
   ================================================================ */
.sh-pillars { padding:var(--py-section) 0; background:var(--off-white); }

.sh-pillar-grid {
  display:grid; grid-template-columns:repeat(6,1fr); gap:14px;
}

.sh-pillar {
  background:var(--white); border-radius:var(--r-lg);
  padding:30px 18px 28px; text-align:center;
  position:relative; overflow:hidden;
  border:1px solid rgba(124,58,237,0.06);
  transition:var(--t-slow); cursor:default;
}
.sh-pillar::before { /* top accent bar */
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:var(--pillar-g); transition:height 0.4s ease;
}
.sh-pillar::after { /* BG fill on hover */
  content:''; position:absolute; inset:0;
  background:var(--pillar-g); opacity:0; transition:opacity 0.4s ease;
  z-index:0;
}
.sh-pillar:hover::before { height:100%; }
.sh-pillar:hover::after  { opacity:1; }
.sh-pillar:hover { border-color:transparent; transform:translateY(-6px); box-shadow:0 20px 50px rgba(0,0,0,0.15); }

.sh-pillar > * { position:relative; z-index:1; transition:color 0.4s ease; }

.sh-pillar-big {
  font-family:var(--font-head); font-size:56px; font-weight:900;
  line-height:1; color:var(--pillar-c); opacity:0.08; margin-bottom:4px;
  transition:opacity 0.4s ease, transform 0.4s ease;
}
.sh-pillar:hover .sh-pillar-big { opacity:0.2; transform:scale(1.1); color:#fff; }

.sh-pillar-ico {
  width:60px; height:60px; border-radius:var(--r-md);
  background:color-mix(in srgb, var(--pillar-c) 12%, white);
  display:flex; align-items:center; justify-content:center;
  font-size:26px; color:var(--pillar-c);
  margin:0 auto 16px;
  transition:var(--t);
}
.sh-pillar:hover .sh-pillar-ico { background:rgba(255,255,255,0.2); color:#fff; }

.sh-pillar-name {
  font-family:var(--font-head); font-size:17px; font-weight:700;
  color:var(--ink-900); margin-bottom:4px; display:block;
}
.sh-pillar:hover .sh-pillar-name { color:#fff !important; }

.sh-pillar-word {
  font-size:10.5px; font-weight:700; letter-spacing:0.1em;
  text-transform:uppercase; color:var(--pillar-c);
  display:block; margin-bottom:12px;
}
.sh-pillar:hover .sh-pillar-word { color:rgba(255,255,255,0.75); }

.sh-pillar-desc { font-size:12.5px; color:var(--ink-300); line-height:1.6; }
.sh-pillar:hover .sh-pillar-desc { color:rgba(255,255,255,0.75); }

/* Pillar color overrides */
.p-s { --pillar-c:#7C3AED; --pillar-g:linear-gradient(135deg,#7C3AED,#5B21B6); }
.p-t { --pillar-c:#06B6D4; --pillar-g:linear-gradient(135deg,#06B6D4,#0891B2); }
.p-e { --pillar-c:#10B981; --pillar-g:linear-gradient(135deg,#10B981,#059669); }
.p-a { --pillar-c:#F59E0B; --pillar-g:linear-gradient(135deg,#F59E0B,#D97706); }
.p-m { --pillar-c:#EF4444; --pillar-g:linear-gradient(135deg,#EF4444,#DC2626); }
.p-h { --pillar-c:#EC4899; --pillar-g:linear-gradient(135deg,#EC4899,#DB2777); }

/* ================================================================
   15. STATISTICS
   ================================================================ */
.sh-stats { background: var(--g-dark); padding: 90px 0; position:relative; overflow:hidden; }
.sh-stats::before {
  content:''; position:absolute; inset:0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size:48px 48px;
}
.sh-stats::after {
  content:''; position:absolute;
  top:-200px; left:50%; transform:translateX(-50%);
  width:800px; height:400px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.12) 0%, transparent 70%);
  pointer-events:none;
}

.sh-stats-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  position:relative; z-index:1; gap:0;
}
.sh-stat-it {
  text-align:center; padding:44px 24px;
  border-right:1px solid rgba(255,255,255,0.06);
  transition:var(--t);
}
.sh-stat-it:last-child { border-right:none; }
.sh-stat-it:hover { background:rgba(124,58,237,0.08); }

.sh-stat-ico {
  width:70px; height:70px; border-radius:var(--r-lg); margin:0 auto 22px;
  display:flex; align-items:center; justify-content:center; font-size:30px;
  background: rgba(124,58,237,0.12); color:#a78bfa;
  transition:var(--t); position:relative;
}
.sh-stat-ico::before {
  content:''; position:absolute; inset:0; border-radius:inherit;
  background:var(--g-mixed); opacity:0; transition:opacity 0.3s;
}
.sh-stat-it:hover .sh-stat-ico { color:#fff; }
.sh-stat-it:hover .sh-stat-ico::before { opacity:1; }
.sh-stat-ico > * { position:relative; z-index:1; }

.sh-stat-num {
  display:block; font-family:var(--font-head);
  font-size:clamp(38px,4vw,58px); font-weight:800;
  background:linear-gradient(135deg,#c4b5fd,#67e8f9);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text; line-height:1; margin-bottom:10px;
}
.sh-stat-lbl { font-size:14px; color:rgba(255,255,255,0.5); font-weight:500; line-height:1.4; }

/* ================================================================
   16. VISION & MISSION
   ================================================================ */
.sh-vm { padding:var(--py-section) 0; background:var(--white); }
.sh-vm-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }

.sh-vm-v {
  background:var(--g-mixed); border-radius:var(--r-2xl);
  padding:52px 44px; color:#fff; position:relative; overflow:hidden;
}
.sh-vm-v::before {
  content:''; position:absolute; top:-100px; right:-100px;
  width:350px; height:350px; border-radius:50%;
  background:rgba(255,255,255,0.06);
}
.sh-vm-v::after {
  content:''; position:absolute; bottom:-80px; left:-60px;
  width:250px; height:250px; border-radius:50%;
  background:rgba(255,255,255,0.04);
}
.sh-vm-m {
  background:var(--off-white); border-radius:var(--r-2xl);
  padding:52px 44px; border:1px solid rgba(124,58,237,0.10);
  transition:var(--t-slow);
}
.sh-vm-m:hover { border-color:rgba(124,58,237,0.3); box-shadow:0 20px 60px rgba(124,58,237,0.1); }

.sh-vm-ico {
  width:72px; height:72px; border-radius:var(--r-md); margin-bottom:30px;
  display:flex; align-items:center; justify-content:center; font-size:32px;
}
.sh-vm-v .sh-vm-ico { background:rgba(255,255,255,0.18); color:#fff; }
.sh-vm-m .sh-vm-ico { background:var(--g-mixed); color:#fff; }

.sh-vm-v h3 { font-size:28px !important; font-weight:700 !important; color:#fff !important; margin-bottom:18px !important; position:relative; z-index:1; }
.sh-vm-m h3 { font-size:28px !important; font-weight:700 !important; color:var(--ink-900) !important; margin-bottom:18px !important; }

.sh-vm-v p { color:rgba(255,255,255,0.82); line-height:1.8; font-size:15px; position:relative; z-index:1; }
.sh-vm-m p { color:var(--ink-400); line-height:1.8; font-size:15px; }

.sh-vm-list { list-style:none; padding:0; margin:22px 0 0; display:flex; flex-direction:column; gap:2px; }
.sh-vm-list li {
  display:flex; align-items:flex-start; gap:10px;
  padding:10px 0; font-size:14px;
  border-bottom:1px solid;
}
.sh-vm-v .sh-vm-list li { border-color:rgba(255,255,255,0.10); color:rgba(255,255,255,0.82); position:relative; z-index:1; }
.sh-vm-m .sh-vm-list li { border-color:rgba(124,58,237,0.08); color:var(--ink-500); }
.sh-vm-list li:last-child { border-bottom:none; }
.sh-vm-v .sh-vm-list li i  { color:rgba(255,255,255,0.7); flex-shrink:0; margin-top:3px; }
.sh-vm-m .sh-vm-list li i  { color:var(--v); flex-shrink:0; margin-top:3px; }

/* ================================================================
   17. PROGRAMS
   ================================================================ */
.sh-programs { padding:var(--py-section) 0; background:var(--off-white); }

.sh-prog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }

.sh-prog-card {
  background:var(--white); border-radius:var(--r-xl); overflow:hidden;
  border:1px solid rgba(124,58,237,0.07);
  display:flex; flex-direction:column; transition:var(--t-slow);
}
.sh-prog-card:hover { transform:translateY(-10px); box-shadow:0 24px 60px rgba(124,58,237,0.15); border-color:rgba(124,58,237,0.2); }

.sh-prog-img { height:210px; position:relative; overflow:hidden; }
.sh-prog-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease; }
.sh-prog-card:hover .sh-prog-img img { transform:scale(1.07); }
.sh-prog-img::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to bottom, transparent 40%, rgba(3,11,26,0.55));
}

.sh-prog-cat {
  position:absolute; top:16px; left:16px; z-index:1;
  font-size:10.5px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase;
  padding:5px 13px; border-radius:var(--r-pill); color:#fff;
  backdrop-filter:blur(12px);
}

.sh-prog-body { padding:28px; flex:1; display:flex; flex-direction:column; }

.sh-prog-top { display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:16px; }
.sh-prog-ico { width:50px; height:50px; border-radius:var(--r-md); display:flex; align-items:center; justify-content:center; font-size:22px; flex-shrink:0; }

.sh-prog-card h3 { font-size:18px !important; font-weight:700 !important; color:var(--ink-900) !important; margin-bottom:10px !important; line-height:1.3 !important; }
.sh-prog-card p  { font-size:13.5px; color:var(--ink-300); line-height:1.7; margin-bottom:20px; flex:1; }

.sh-prog-foot {
  display:flex; align-items:center; justify-content:space-between;
  padding-top:18px; border-top:1px solid rgba(124,58,237,0.07);
  margin-top:auto;
}
.sh-prog-meta-item { display:flex; align-items:center; gap:5px; font-size:12px; color:var(--ink-300); font-weight:500; }
.sh-prog-meta-item i { color:var(--v); font-size:11px; }

/* ================================================================
   18. PROJECTS
   ================================================================ */
.sh-projects { padding:var(--py-section) 0; background:var(--white); }
.sh-proj-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.sh-proj-card {
  border-radius:var(--r-xl); overflow:hidden; position:relative;
  transition:var(--t-slow); cursor:pointer;
}
.sh-proj-card-lg { grid-column:span 2; }
.sh-proj-card img { width:100%; height:100%; object-fit:cover; transition:transform 0.7s ease; display:block; }
.sh-proj-card:hover img { transform:scale(1.06); }
.sh-proj-card-h { height:330px; }
.sh-proj-card-lg .sh-proj-card-h { height:420px; }
.sh-proj-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(3,11,26,0.92) 0%, rgba(3,11,26,0.35) 55%, transparent 100%);
  display:flex; flex-direction:column; justify-content:flex-end; padding:32px;
  transition:var(--t);
}
.sh-proj-card:hover .sh-proj-overlay {
  background:linear-gradient(to top, rgba(3,11,26,0.95) 0%, rgba(91,33,182,0.5) 60%, rgba(3,11,26,0.2) 100%);
}
.sh-proj-cat { font-size:11px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:#a78bfa; margin-bottom:7px; display:flex; align-items:center; gap:6px; }
.sh-proj-title { font-family:var(--font-head); font-size:20px; font-weight:700; color:#fff; line-height:1.3; margin-bottom:12px; }
.sh-proj-card-lg .sh-proj-title { font-size:26px; }
.sh-proj-arrow { display:inline-flex; align-items:center; gap:7px; font-size:13px; font-weight:600; color:rgba(255,255,255,0.6); transform:translateY(10px); opacity:0; transition:var(--t); }
.sh-proj-card:hover .sh-proj-arrow { opacity:1; transform:translateY(0); color:#fff; }

/* ================================================================
   19. RESEARCH & PUBLICATIONS
   ================================================================ */
.sh-research { padding:var(--py-section) 0; background:var(--off-white); }

.sh-res-img { border-radius:var(--r-2xl); overflow:hidden; height:520px; position:relative; }
.sh-res-img img { width:100%; height:100%; object-fit:cover; }
.sh-res-img::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to bottom, transparent 40%, rgba(91,33,182,0.5));
}
.sh-res-badge {
  position:absolute; bottom:24px; left:24px; right:24px;
  background:rgba(255,255,255,0.95); backdrop-filter:blur(20px);
  border-radius:var(--r-lg); padding:18px 22px;
  display:flex; gap:14px; align-items:center;
  box-shadow:0 8px 32px rgba(124,58,237,0.2);
}
.sh-res-badge .ico { width:46px; height:46px; border-radius:var(--r-sm); background:var(--g-mixed); color:#fff; display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.sh-res-badge .num { display:block; font-family:var(--font-head); font-size:22px; font-weight:800; color:var(--ink-900); line-height:1; background:var(--g-text); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.sh-res-badge .lbl { font-size:12px; color:var(--ink-300); }

.sh-pub-list { display:flex; flex-direction:column; gap:14px; }
.sh-pub {
  background:var(--white); border-radius:var(--r-md); padding:20px 22px;
  border:1px solid rgba(124,58,237,0.07); display:flex; gap:15px;
  transition:var(--t-slow);
}
.sh-pub:hover { border-color:rgba(124,58,237,0.25); box-shadow:0 8px 30px rgba(124,58,237,0.1); transform:translateX(5px); }
.sh-pub-ico { width:46px; height:46px; border-radius:var(--r-sm); display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.sh-pub h4 { font-size:14.5px !important; font-weight:600 !important; color:var(--ink-900) !important; margin-bottom:5px !important; line-height:1.4 !important; }
.sh-pub p  { font-size:12.5px; color:var(--ink-300); margin:0; }
.sh-pub-chips { display:flex; gap:8px; margin-top:8px; align-items:center; }
.sh-chip {
  font-size:11px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase;
  padding:3px 10px; border-radius:var(--r-pill);
}
.sh-chip-v { background:var(--v-light); color:var(--v-dark); }
.sh-chip-c { background:var(--c-light); color:var(--c-darker); }
.sh-chip-g { background:rgba(16,185,129,0.12); color:#059669; }
.sh-chip-a { background:rgba(245,158,11,0.12); color:#D97706; }

/* ================================================================
   20. TEAM
   ================================================================ */
.sh-team { padding:var(--py-section) 0; background:var(--white); }
.sh-team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }

.sh-team-card {
  background:var(--white); border-radius:var(--r-xl); overflow:hidden;
  border:1px solid rgba(124,58,237,0.07); text-align:center; transition:var(--t-slow);
}
.sh-team-card:hover { transform:translateY(-10px); box-shadow:0 24px 60px rgba(124,58,237,0.15); border-color:rgba(124,58,237,0.2); }

.sh-team-photo { height:230px; position:relative; overflow:hidden; }
.sh-team-photo img { width:100%; height:100%; object-fit:cover; object-position:top; transition:transform 0.6s ease; }
.sh-team-card:hover .sh-team-photo img { transform:scale(1.06); }
.sh-team-photo::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to bottom, transparent 50%, rgba(91,33,182,0.3));
  opacity:0; transition:opacity 0.4s;
}
.sh-team-card:hover .sh-team-photo::after { opacity:1; }

.sh-team-socials {
  position:absolute; bottom:-52px; left:50%; transform:translateX(-50%);
  display:flex; gap:7px; background:var(--white); padding:9px 15px;
  border-radius:var(--r-pill); box-shadow:0 8px 24px rgba(124,58,237,0.2);
  transition:var(--t-spring); white-space:nowrap;
}
.sh-team-card:hover .sh-team-socials { bottom:14px; }
.sh-team-socials a {
  width:30px; height:30px; border-radius:50%;
  background:var(--v-light); color:var(--v); font-size:12px;
  display:flex; align-items:center; justify-content:center; transition:var(--t);
}
.sh-team-socials a:hover { background:var(--g-mixed); color:#fff; }

.sh-team-body { padding:24px 18px; }
.sh-team-name { font-size:17px !important; font-weight:700 !important; color:var(--ink-900) !important; margin-bottom:5px !important; }
.sh-team-role { display:block; font-size:12px; font-weight:700; letter-spacing:0.07em; text-transform:uppercase; margin-bottom:10px; background:var(--g-text); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.sh-team-bio { font-size:13px; color:var(--ink-300); line-height:1.65; }

/* ================================================================
   21. TESTIMONIALS
   ================================================================ */
.sh-testimonials { padding:var(--py-section) 0; background:var(--g-light); }
.sh-testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }

.sh-testi {
  background:var(--white); border-radius:var(--r-xl); padding:36px 30px;
  border:1px solid rgba(124,58,237,0.08); transition:var(--t-slow); position:relative;
}
.sh-testi:hover { transform:translateY(-8px); box-shadow:0 24px 60px rgba(124,58,237,0.15); border-color:rgba(124,58,237,0.25); }
.sh-testi.featured {
  background:var(--g-mixed); border-color:transparent;
  box-shadow:0 20px 60px rgba(124,58,237,0.3);
}
.sh-testi.featured:hover { transform:translateY(-8px) scale(1.01); box-shadow:0 30px 70px rgba(124,58,237,0.4); }

.sh-quote { font-family:Georgia,serif; font-size:64px; line-height:0.7; color:var(--v-light); margin-bottom:20px; }
.sh-testi.featured .sh-quote { color:rgba(255,255,255,0.2); }

.sh-stars { display:flex; gap:3px; margin-bottom:16px; }
.sh-stars i { font-size:13px; color:#F59E0B; }
.sh-testi.featured .sh-stars i { color:rgba(255,200,50,0.9); }

.sh-testi-text { font-size:15px; line-height:1.82; color:var(--ink-400); font-style:italic; margin-bottom:28px; }
.sh-testi.featured .sh-testi-text { color:rgba(255,255,255,0.88); }

.sh-testi-author { display:flex; align-items:center; gap:13px; }
.sh-testi-author img { width:48px; height:48px; border-radius:50%; object-fit:cover; border:2px solid rgba(124,58,237,0.2); }
.sh-testi.featured .sh-testi-author img { border-color:rgba(255,255,255,0.35); }
.sh-author-name { display:block; font-weight:700; font-size:14px; color:var(--ink-900); font-family:var(--font-head); }
.sh-testi.featured .sh-author-name { color:#fff; }
.sh-author-role { display:block; font-size:12px; color:var(--ink-300); }
.sh-testi.featured .sh-author-role { color:rgba(255,255,255,0.65); }

/* ================================================================
   22. EVENTS
   ================================================================ */
.sh-events { padding:var(--py-section) 0; background:var(--white); }
.sh-evt-grid { display:grid; grid-template-columns:1.6fr 1fr; gap:24px; }

.sh-evt-card {
  background:var(--white); border-radius:var(--r-xl); overflow:hidden;
  border:1px solid rgba(124,58,237,0.07); transition:var(--t-slow); display:flex; flex-direction:column;
}
.sh-evt-card:hover { transform:translateY(-6px); box-shadow:0 20px 50px rgba(124,58,237,0.13); border-color:rgba(124,58,237,0.2); }

.sh-evt-img { height:230px; position:relative; overflow:hidden; }
.sh-evt-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease; }
.sh-evt-card:hover .sh-evt-img img { transform:scale(1.05); }

.sh-evt-date {
  position:absolute; top:16px; left:16px;
  background:var(--g-mixed); color:#fff; border-radius:var(--r-md);
  padding:11px 15px; text-align:center; min-width:56px;
  box-shadow:0 4px 14px rgba(124,58,237,0.4);
}
.sh-evt-date .d { display:block; font-size:24px; font-weight:800; line-height:1; font-family:var(--font-head); }
.sh-evt-date .m { display:block; font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; margin-top:2px; }

.sh-evt-body { padding:26px; flex:1; display:flex; flex-direction:column; }
.sh-evt-type { font-size:11px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--v); margin-bottom:10px; display:flex; align-items:center; gap:6px; }
.sh-evt-title { font-size:18px !important; font-weight:700 !important; color:var(--ink-900) !important; margin-bottom:10px !important; line-height:1.35 !important; }
.sh-evt-desc { font-size:13.5px; color:var(--ink-300); line-height:1.7; margin-bottom:0; flex:1; }
.sh-evt-meta { display:flex; flex-wrap:wrap; gap:14px; margin-top:20px; padding-top:18px; border-top:1px solid rgba(124,58,237,0.06); }
.sh-evt-meta span { display:flex; align-items:center; gap:5px; font-size:12px; color:var(--ink-300); font-weight:500; }
.sh-evt-meta i { color:var(--v); }

/* Events list sidebar */
.sh-evt-list { display:flex; flex-direction:column; gap:14px; }
.sh-evt-list-item {
  display:flex; gap:13px; padding:16px;
  background:var(--off-white); border-radius:var(--r-md);
  border:1px solid rgba(124,58,237,0.06); transition:var(--t);
}
.sh-evt-list-item:hover { background:var(--white); border-color:rgba(124,58,237,0.2); box-shadow:0 4px 16px rgba(124,58,237,0.08); }
.sh-evt-list-date {
  background:var(--v-light); color:var(--v); border-radius:var(--r-sm);
  padding:10px 12px; text-align:center; min-width:50px; flex-shrink:0;
}
.sh-evt-list-date .d { display:block; font-size:20px; font-weight:800; font-family:var(--font-head); line-height:1; }
.sh-evt-list-date .m { display:block; font-size:9.5px; font-weight:700; text-transform:uppercase; letter-spacing:0.05em; margin-top:2px; }
.sh-evt-list-content h4 { font-size:13.5px !important; font-weight:600 !important; color:var(--ink-900) !important; margin-bottom:5px !important; line-height:1.4 !important; }
.sh-evt-list-content p  { font-size:12px; color:var(--ink-300); margin:0; }

/* ================================================================
   23. NEWS / BLOG
   ================================================================ */
.sh-news { padding:var(--py-section) 0; background:var(--off-white); }
.sh-news-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }

.sh-news-card {
  background:var(--white); border-radius:var(--r-xl); overflow:hidden;
  border:1px solid rgba(124,58,237,0.07); display:flex; flex-direction:column; transition:var(--t-slow);
}
.sh-news-card:hover { transform:translateY(-8px); box-shadow:0 24px 60px rgba(124,58,237,0.15); border-color:rgba(124,58,237,0.2); }

.sh-news-img { height:214px; position:relative; overflow:hidden; }
.sh-news-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease; }
.sh-news-card:hover .sh-news-img img { transform:scale(1.06); }

.sh-news-cat {
  position:absolute; bottom:14px; left:14px;
  background:var(--g-mixed); color:#fff;
  font-size:10.5px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase;
  padding:4px 12px; border-radius:var(--r-pill);
  box-shadow:0 4px 12px rgba(124,58,237,0.35);
}

.sh-news-body { padding:24px; flex:1; display:flex; flex-direction:column; }
.sh-news-meta { display:flex; gap:12px; margin-bottom:13px; flex-wrap:wrap; }
.sh-news-meta span { display:flex; align-items:center; gap:5px; font-size:12px; color:var(--ink-300); font-weight:500; }
.sh-news-meta i { color:var(--v); font-size:11px; }

.sh-news-title { font-size:16.5px !important; font-weight:700 !important; color:var(--ink-900) !important; margin-bottom:10px !important; line-height:1.4 !important; }
.sh-news-title a { color:inherit !important; }
.sh-news-title a:hover { color:var(--v) !important; }
.sh-news-exc { font-size:13.5px; color:var(--ink-300); line-height:1.72; margin-bottom:20px; flex:1; }

.sh-news-foot {
  display:flex; align-items:center; justify-content:space-between;
  padding-top:16px; border-top:1px solid rgba(124,58,237,0.07); margin-top:auto;
}
.sh-news-author { display:flex; align-items:center; gap:8px; }
.sh-news-author img { width:28px; height:28px; border-radius:50%; object-fit:cover; }
.sh-news-author-name { font-size:12.5px; font-weight:600; color:var(--ink-500); }
.sh-read { display:flex; align-items:center; gap:5px; font-size:13px; font-weight:600; color:var(--v); }
.sh-read i { transition:transform 0.2s; }
.sh-read:hover { color:var(--v-dark); }
.sh-read:hover i { transform:translateX(4px); }

/* ================================================================
   24. DONATE / CTA
   ================================================================ */
.sh-donate {
  position:relative; padding:110px 0; overflow:hidden;
  background:var(--ink-900);
}
.sh-donate::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(124,58,237,0.22) 0%, transparent 60%),
              radial-gradient(ellipse 50% 70% at 80% 50%, rgba(6,182,212,0.18) 0%, transparent 60%);
}
.sh-donate::after {
  content:''; position:absolute; inset:0;
  background-image: radial-gradient(circle at 1.5px 1.5px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size:36px 36px;
}
.sh-donate-in { position:relative; z-index:1; text-align:center; }
.sh-donate-in h2 { font-size:clamp(34px,5.5vw,64px) !important; font-weight:800 !important; color:#fff !important; margin-bottom:20px !important; line-height:1.1 !important; letter-spacing:-0.03em !important; }
.sh-donate-in p { font-size:17px; color:rgba(255,255,255,0.7); max-width:600px; margin:0 auto 44px; line-height:1.75; }

.sh-donate-amounts { display:flex; justify-content:center; flex-wrap:wrap; gap:10px; margin-bottom:36px; }
.sh-da {
  background:rgba(255,255,255,0.07); border:1.5px solid rgba(255,255,255,0.18);
  color:rgba(255,255,255,0.85); font-family:var(--font-head); font-size:17px; font-weight:700;
  padding:13px 28px; border-radius:var(--r-pill); cursor:pointer; transition:var(--t-spring);
  backdrop-filter:blur(8px);
}
.sh-da:hover, .sh-da.active {
  background:var(--g-mixed); border-color:transparent; color:#fff;
  box-shadow:0 8px 24px rgba(124,58,237,0.4); transform:scale(1.05);
}

.sh-donate-cta { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }
.sh-donate-note { color:rgba(255,255,255,0.4); font-size:12.5px; margin-top:24px; }

/* ================================================================
   25. PARTNERS LOGOS
   ================================================================ */
.sh-partners { padding:var(--py-section-sm) 0; background:var(--white); }
.sh-partners-grid {
  display:grid; grid-template-columns:repeat(6,1fr); gap:0;
  border:1px solid rgba(124,58,237,0.08); border-radius:var(--r-xl); overflow:hidden;
}
.sh-partner-logo {
  padding:30px 20px; display:flex; align-items:center; justify-content:center;
  border-right:1px solid rgba(124,58,237,0.08);
  border-bottom:1px solid rgba(124,58,237,0.08);
  transition:var(--t); cursor:default;
}
.sh-partner-logo:nth-child(6n)   { border-right:none; }
.sh-partner-logo:nth-child(n+7)  { border-bottom:none; }
.sh-partner-logo:hover { background:var(--g-light); }
.sh-partner-logo-name {
  font-family:var(--font-head); font-size:12.5px; font-weight:700;
  color:var(--ink-100); text-transform:uppercase; letter-spacing:0.08em;
  text-align:center; transition:var(--t);
}
.sh-partner-logo:hover .sh-partner-logo-name { color:var(--v); }

/* ================================================================
   26. CONTACT SECTION
   ================================================================ */
.sh-contact { padding:var(--py-section) 0; background:var(--off-white); }

.sh-contact-form {
  background:var(--white); border-radius:var(--r-2xl); padding:40px;
  border:1px solid rgba(124,58,237,0.08);
  box-shadow:0 20px 60px rgba(124,58,237,0.08);
}

.sh-input {
  width:100%; padding:13px 18px; border-radius:var(--r-md); font-size:14px;
  font-family:var(--font-body); color:var(--ink-900);
  border:1.5px solid rgba(124,58,237,0.12); background:var(--white);
  outline:none; transition:var(--t); margin-bottom:14px;
}
.sh-input:focus { border-color:var(--v); box-shadow:0 0 0 3px rgba(124,58,237,0.1); }
.sh-input::placeholder { color:var(--ink-200); }

select.sh-input { color:var(--ink-300); cursor:pointer; }
textarea.sh-input { resize:none; }

.sh-info-card {
  display:flex; gap:16px; align-items:flex-start;
  padding:20px; background:var(--white); border-radius:var(--r-lg);
  border:1px solid rgba(124,58,237,0.07); height:100%; transition:var(--t);
}
.sh-info-card:hover { border-color:rgba(124,58,237,0.25); box-shadow:0 8px 24px rgba(124,58,237,0.1); }
.sh-info-ico {
  width:48px; height:48px; border-radius:var(--r-md); flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:20px;
}
.sh-info-lbl { font-family:var(--font-head); font-size:13px; font-weight:700; color:var(--ink-900); margin-bottom:4px; }
.sh-info-val { font-size:13px; color:var(--ink-300); line-height:1.6; }

/* ================================================================
   27. FOOTER
   ================================================================ */
.sh-footer { background:var(--ink-900) !important; padding-top:88px; }
.sh-footer-top-bar {
  height:3px; background:var(--g-mixed);
  margin-bottom:0; display:block;
}
.sh-footer-body { padding-bottom:64px; border-bottom:1px solid rgba(255,255,255,0.06); }

/* Footer logo */
.sh-foot-logo { display:flex; align-items:center; gap:12px; text-decoration:none; margin-bottom:20px; }
.sh-foot-logo-mark {
  width:46px; height:46px; border-radius:12px;
  background:var(--g-mixed); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-head); font-size:20px; font-weight:800;
  box-shadow:0 4px 16px rgba(124,58,237,0.4); flex-shrink:0;
}
.sh-foot-logo-name { font-family:var(--font-head); font-size:22px; font-weight:800; color:#fff; letter-spacing:-0.5px; }
.sh-foot-desc { font-size:14px; color:rgba(255,255,255,0.55); line-height:1.82; max-width:300px; margin-bottom:24px; }
.sh-foot-social { display:flex; gap:9px; }
.sh-foot-social a {
  width:38px; height:38px; border-radius:var(--r-sm);
  background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.6); font-size:14px; transition:var(--t);
}
.sh-foot-social a:hover { background:var(--g-mixed); border-color:transparent; color:#fff; box-shadow:0 4px 12px rgba(124,58,237,0.35); }

/* Footer column */
.sh-foot-col-title {
  font-family:var(--font-head); font-size:13.5px; font-weight:700; color:#fff;
  margin-bottom:22px; padding-bottom:12px; display:inline-block;
  border-bottom:2px solid; border-image:var(--g-mixed) 1;
}
.sh-foot-links { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.sh-foot-links a {
  display:flex; align-items:center; gap:8px;
  font-size:13.5px; color:rgba(255,255,255,0.55); transition:var(--t);
}
.sh-foot-links a:hover { color:#fff; padding-left:5px; }
.sh-foot-links a i { font-size:9px; color:var(--v); transition:var(--t); }
.sh-foot-links a:hover i { color:var(--c); }

/* Contact items */
.sh-foot-contact { display:flex; flex-direction:column; gap:15px; }
.sh-foot-ci { display:flex; gap:12px; align-items:flex-start; }
.sh-foot-ci .ico {
  width:36px; height:36px; border-radius:var(--r-sm); flex-shrink:0;
  background:rgba(124,58,237,0.18); color:#a78bfa;
  display:flex; align-items:center; justify-content:center; font-size:14px; margin-top:2px;
}
.sh-foot-ci .txt strong { display:block; font-size:12.5px; font-weight:600; color:rgba(255,255,255,0.85); margin-bottom:2px; }
.sh-foot-ci .txt span  { font-size:12.5px; color:rgba(255,255,255,0.5); line-height:1.6; }

/* Newsletter */
.sh-foot-nl p { font-size:13.5px; color:rgba(255,255,255,0.55); margin-bottom:14px; line-height:1.65; }
.sh-foot-nl-form {
  display:flex; border-radius:var(--r-md); overflow:hidden;
  border:1px solid rgba(255,255,255,0.1);
  background:rgba(255,255,255,0.04);
}
.sh-foot-nl-form input {
  flex:1; background:transparent; border:none; outline:none;
  padding:13px 16px; font-size:13.5px; color:#fff; font-family:var(--font-body);
}
.sh-foot-nl-form input::placeholder { color:rgba(255,255,255,0.35); }
.sh-foot-nl-form button {
  background:var(--g-mixed); border:none; color:#fff;
  padding:13px 20px; cursor:pointer; font-size:15px; transition:var(--t);
  flex-shrink:0;
}
.sh-foot-nl-form button:hover { opacity:0.85; }

/* Accreditation chips */
.sh-foot-certs { display:flex; flex-wrap:wrap; gap:7px; margin-top:20px; }
.sh-cert { background:rgba(124,58,237,0.15); color:#a78bfa; border:1px solid rgba(124,58,237,0.25); font-size:10.5px; font-weight:700; padding:4px 11px; border-radius:var(--r-pill); letter-spacing:0.04em; }

/* Footer bottom */
.sh-footer-bottom { padding:24px 0; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px; }
.sh-footer-copy { font-size:13px; color:rgba(255,255,255,0.35); }
.sh-footer-copy strong { color:rgba(255,255,255,0.65); }
.sh-foot-bot-links { list-style:none; margin:0; padding:0; display:flex; gap:20px; }
.sh-foot-bot-links a { font-size:12.5px; color:rgba(255,255,255,0.35); transition:var(--t); }
.sh-foot-bot-links a:hover { color:rgba(255,255,255,0.75); }

/* Hide original footer */
#footer, footer, .footer-area { display:none !important; }

/* ================================================================
   28. REVEAL ANIMATIONS
   ================================================================ */
.sh-reveal { opacity:0; transform:translateY(28px); transition:opacity 0.65s ease, transform 0.65s ease; }
.sh-reveal.revealed { opacity:1; transform:translateY(0); }
.sh-reveal-left { opacity:0; transform:translateX(-28px); transition:opacity 0.65s ease, transform 0.65s ease; }
.sh-reveal-left.revealed { opacity:1; transform:translateX(0); }
.sh-reveal-scale { opacity:0; transform:scale(0.95); transition:opacity 0.65s ease, transform 0.65s ease; }
.sh-reveal-scale.revealed { opacity:1; transform:scale(1); }
.sh-d1 { transition-delay:0.10s; } .sh-d2 { transition-delay:0.20s; }
.sh-d3 { transition-delay:0.30s; } .sh-d4 { transition-delay:0.40s; }
.sh-d5 { transition-delay:0.50s; } .sh-d6 { transition-delay:0.60s; }

/* ================================================================
   29. BREADCRUMB PAGES
   ================================================================ */
.sh-crumb { background:var(--g-dark); padding:80px 0 56px; position:relative; overflow:hidden; }
.sh-crumb::before { content:''; position:absolute; inset:0; background-image:radial-gradient(circle at 2px 2px, rgba(255,255,255,0.025) 1px, transparent 0); background-size:40px 40px; }
.sh-crumb-inner { position:relative; z-index:1; }
.sh-crumb-title { font-size:38px !important; font-weight:800 !important; color:#fff !important; margin-bottom:14px !important; }
.sh-crumb-nav { display:flex; align-items:center; gap:9px; flex-wrap:wrap; font-size:14px; }
.sh-crumb-nav a { color:rgba(255,255,255,0.6); }
.sh-crumb-nav a:hover { color:#fff; }
.sh-crumb-nav .sep { color:rgba(255,255,255,0.25); }
.sh-crumb-nav .current { color:#a78bfa; }

/* ================================================================
   30. RESPONSIVE
   ================================================================ */
@media (max-width:1199px) {
  :root { --py-section:80px; }
  .sh-pillar-grid { grid-template-columns:repeat(3,1fr); }
  .sh-stats-grid { grid-template-columns:repeat(2,1fr); }
  .sh-stat-it:nth-child(2) { border-right:none; }
  .sh-stat-it { border-bottom:1px solid rgba(255,255,255,0.05); }
  .sh-stat-it:last-child, .sh-stat-it:nth-last-child(1), .sh-stat-it:nth-last-child(2) { border-bottom:none; }
  .sh-team-grid { grid-template-columns:repeat(2,1fr); }
  .sh-partners-grid { grid-template-columns:repeat(3,1fr); }
  .sh-partner-logo:nth-child(6n) { border-right:1px solid rgba(124,58,237,0.08); }
  .sh-partner-logo:nth-child(3n) { border-right:none; }
}
@media (max-width:991px) {
  :root { --py-section:70px; --py-section-sm:48px; }
  .sh-hamburger { display:flex; }
  .sh-nav, .sh-nav-actions .sh-btn { display:none; }
  .sh-hero-inner { padding:110px 0 70px; }
  .sh-hero-visual { height:320px; margin-top:44px; }
  .sh-hero-img-main { width:100%; height:290px; }
  .sh-float-card-1 { display:none; }
  .sh-about-c { padding-left:0; margin-top:40px; }
  .sh-pillar-grid { grid-template-columns:repeat(2,1fr); }
  .sh-vm-grid { grid-template-columns:1fr; }
  .sh-prog-grid { grid-template-columns:1fr 1fr; }
  .sh-testi-grid { grid-template-columns:1fr; }
  .sh-evt-grid { grid-template-columns:1fr; }
  .sh-news-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:767px) {
  :root { --py-section:60px; --py-section-sm:40px; }
  .sh-hero-h1 { font-size:34px !important; }
  .sh-hero-stats { flex-direction:column; width:100%; }
  .sh-hero-stat { border-right:none; border-bottom:1px solid rgba(255,255,255,0.06); }
  .sh-hero-stat:last-child { border-bottom:none; }
  .sh-about-imgs { grid-template-columns:1fr; }
  .sh-about-img-main { grid-row:auto; height:280px; }
  .sh-about-img-sm { display:none; }
  .sh-pillar-grid { grid-template-columns:1fr 1fr; }
  .sh-stats-grid { grid-template-columns:1fr 1fr; }
  .sh-prog-grid { grid-template-columns:1fr; }
  .sh-proj-grid { grid-template-columns:1fr; }
  .sh-proj-card-lg { grid-column:auto; }
  .sh-news-grid { grid-template-columns:1fr; }
  .sh-partners-grid { grid-template-columns:repeat(2,1fr); }
  .sh-partner-logo:nth-child(3n) { border-right:1px solid rgba(124,58,237,0.08); }
  .sh-partner-logo:nth-child(2n) { border-right:none; }
  .sh-vm-v, .sh-vm-m { padding:38px 28px; }
  .sh-footer-bottom { flex-direction:column; text-align:center; }
  .sh-foot-bot-links { justify-content:center; }
}
@media (max-width:480px) {
  .sh-hero-cta { flex-direction:column; }
  .sh-btn { width:100%; justify-content:center; }
  .sh-pillar-grid { grid-template-columns:1fr; }
  .sh-team-grid { grid-template-columns:1fr; }
  .sh-donate-amounts { gap:8px; }
  .sh-da { padding:11px 20px; font-size:15px; }
  .sh-contact-form { padding:24px 20px; }
}
/* ================================================================
   31. OVERRIDES FOR APEXA THEME
   ================================================================ */
.tg-header__top  { display:none !important; }
.tg-header__area { background:transparent !important; border:none !important; }
.navigation > li > a { font-family:var(--font-head) !important; font-weight:500 !important; font-size:14px !important; color:var(--ink-500) !important; padding:9px 15px !important; border-radius:var(--r-sm) !important; transition:var(--t) !important; }
.navigation > li > a:hover, .navigation > li.active > a { color:var(--v) !important; background:var(--v-50) !important; }
