/* ================================================================
   SAHAM BRAND CSS — Verbatim replication of Pixel-Mate color theme
   Dark navy body | Electric blue #0F33FF | Mint green #0CE8A3
   ================================================================ */

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

:root {
  /* === Core Brand Colors (verbatim from pixel-mate.com) === */
  --primary:        #0F33FF;   /* Electric royal blue */
  --primary-hover:  #0820AC;
  --primary-100:    rgba(15, 51, 255, 0.08); /* light blue tint for badges */
  --primary-50:     rgba(15, 51, 255, 0.05);
  --secondary:      #0CE8A3;   /* Mint green */
  --secondary-hover:#09b881;
  --accent:         #FD4400;   /* Orange accent */

  /* === Background Colors === */
  --bg-body:        #06080F;   /* Very dark navy — the page base */
  --bg-section:     #0A0B14;   /* Slightly lighter dark for alternating sections */
  --bg-card:        #0E1120;   /* Card/tile backgrounds */
  --bg-primary-50:  #EEF1FF;   /* Very light blue tint (for light sections) */

  /* === Text === */
  --text-white:     #FFFFFF;
  --text-muted:     rgba(255, 255, 255, 0.6);
  --text-dark:      #0E0F12;   /* For text on light/blue backgrounds */

  /* === Borders === */
  --border:         rgba(255, 255, 255, 0.10);
  --border-subtle:  rgba(255, 255, 255, 0.06);

  /* === Typography === */
  --font-heading:   'Outfit', 'Inter', ui-sans-serif, sans-serif;
  --font-body:      'Inter', ui-sans-serif, sans-serif;
}

/* ================================================================ BODY */
body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================================================================ TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

p { color: rgba(255,255,255,0.75); }

/* Hero heading — large bold white title */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--text-white);
}

/* Outline stroke text (the rolling "marquee" title style from Pixel-Mate) */
.section-title-rolling-primary {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text-white);
  line-height: 1.1;
}
.section-title-rolling-secondary {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--secondary);
}
.section-title-rolling-custom {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  color: transparent;
}

/* ================================================================ LAYOUT */
.container {
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .container { padding-left: 3rem; padding-right: 3rem; }
}

/* ================================================================ SECTIONS */
/* Dark body section (default) */
section { background-color: var(--bg-body); }

/* Primary blue section — #0F33FF */
section.bg-primary,
.bg-primary {
  background-color: var(--primary) !important;
  color: var(--text-white) !important;
}
.bg-primary h1,.bg-primary h2,.bg-primary h3,.bg-primary h4,
.bg-primary h5,.bg-primary h6,.bg-primary p,.bg-primary a,
.bg-primary span,.bg-primary li {
  color: var(--text-white) !important;
}
.bg-primary .section-title-rolling-primary {
  -webkit-text-stroke-color: rgba(255,255,255,0.25) !important;
}

/* Light blue tint section */
.bg-primary-50, section.bg-primary-50 {
  background-color: var(--bg-primary-50) !important;
  color: var(--text-dark) !important;
}
.bg-primary-50 h1,.bg-primary-50 h2,.bg-primary-50 h3,.bg-primary-50 h4,
.bg-primary-50 p { color: var(--text-dark) !important; }
.bg-primary-50 .section-title-rolling-primary {
  -webkit-text-stroke-color: var(--primary) !important;
}

/* ================================================================ HEADER */
header.site-header,
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
  color: var(--text-white);
  background: transparent;
}
header.scrolled {
  background: rgba(6, 8, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.6rem 0;
}

/* ================================================================ LOGO SVG */
.logo-svg { height: 2rem; color: currentColor; }

/* ================================================================ NAVIGATION DRAWER */
#nav-drawer {
  position: fixed;
  inset: 0;
  background: #FFFFFF;
  color: var(--text-dark);
  z-index: 100;
  transition: opacity 0.3s, visibility 0.3s;
}
#nav-drawer.invisible {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#nav-drawer h1,#nav-drawer h2,#nav-drawer h3,#nav-drawer h4,
#nav-drawer p, #nav-drawer a, #nav-drawer button, #nav-drawer span,
#nav-drawer li, #nav-drawer div {
  color: var(--text-dark) !important;
}
#nav-drawer .text-primary, #nav-drawer a.text-primary { color: var(--primary) !important; }
#nav-drawer a:hover { color: var(--primary) !important; }

/* ================================================================ BUTTONS */
.btn, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  padding: 0.875rem 2rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary, .button.is-primary,
.bg-primary-100 { /* the header menu button style from source */
  background-color: var(--primary-100) !important;
  color: var(--primary) !important;
}
.rounded-pixel-full.bg-primary-100.text-primary {
  background-color: var(--primary-100) !important;
  color: var(--primary) !important;
}
.btn-primary:hover, .button.is-primary:hover {
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,51,255,0.35);
}
.button.is-primary-outline {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255,255,255,0.25);
}
.button.is-primary-outline:hover {
  background: var(--text-white);
  color: var(--text-dark);
  border-color: var(--text-white);
}
.button.is-default {
  background: var(--bg-card);
  color: var(--text-white);
  border-color: var(--border);
}
.button.is-default:hover {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
}

/* ================================================================ CARDS */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Project / Reference card */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  cursor: pointer;
  transition: transform 0.35s ease;
}
.project-card:hover { transform: scale(1.02); }
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,8,15,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

/* Achievement stats card */
.achievement-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: background 0.25s, border-color 0.25s;
}
.achievement-card:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.achievement-card:hover p { color: rgba(255,255,255,0.8) !important; }

/* ================================================================ FORM ELEMENTS */
input, textarea, select {
  background: var(--bg-card);
  color: var(--text-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.35); }
input:focus, textarea:focus { border-color: var(--primary); }
label { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 0.4rem; display: block; }

/* ================================================================ SCROLL ANIMATIONS */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================ ROUNDED */
.rounded-pixel-full { border-radius: 9999px; }
.rounded-pixel-lg   { border-radius: 24px; }
.rounded-pixel-md   { border-radius: 16px; }
.rounded-pixel-sm   { border-radius: 12px; }
.rounded-pixel-xs   { border-radius: 8px; }

/* ================================================================ SECTION SPACING */
.py-section  { padding-top: clamp(4rem, 8vw, 7rem); padding-bottom: clamp(4rem, 8vw, 7rem); }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-18 { padding-top: 4.5rem; padding-bottom: 4.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-8  { padding-top: 2rem; padding-bottom: 2rem; }
.py-4  { padding-top: 1rem; padding-bottom: 1rem; }
.py-3  { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-2  { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-6  { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-6\.5 { padding-top: 1.625rem; padding-bottom: 1.625rem; }
.pt-4  { padding-top: 1rem; }
.pt-6  { padding-top: 1.5rem; }
.pt-7  { padding-top: 1.75rem; }
.pt-12 { padding-top: 3rem; }
.pt-20 { padding-top: 5rem; }
.pt-28 { padding-top: 7rem; }
.pb-2  { padding-bottom: 0.5rem; }
.pb-6  { padding-bottom: 1.5rem; }
.pb-8  { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.px-5  { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6  { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8  { padding-left: 2rem; padding-right: 2rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.pl-8  { padding-left: 2rem; }
.p-6   { padding: 1.5rem; }
.p-8   { padding: 2rem; }
.p-10  { padding: 2.5rem; }
.p-1   { padding: 0.25rem; }

/* ================================================================ MARGINS */
.mb-2    { margin-bottom: 0.5rem; }
.mb-2\.5 { margin-bottom: 0.625rem; }
.mb-4    { margin-bottom: 1rem; }
.mb-6    { margin-bottom: 1.5rem; }
.mb-8    { margin-bottom: 2rem; }
.mb-10   { margin-bottom: 2.5rem; }
.mb-12   { margin-bottom: 3rem; }
.mb-16   { margin-bottom: 4rem; }
.mt-4    { margin-top: 1rem; }
.mt-6    { margin-top: 1.5rem; }
.mt-8    { margin-top: 2rem; }
.mt-10   { margin-top: 2.5rem; }
.mt-12   { margin-top: 3rem; }
.mt-16   { margin-top: 4rem; }
.mt-auto { margin-top: auto; }
.mt-2    { margin-top: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.-mt-1   { margin-top: -0.25rem; }
.-mt-2   { margin-top: -0.5rem; }
.mr-4    { margin-right: 1rem; }
.ml-6    { margin-left: 1.5rem; }
.pt-2    { padding-top: 0.5rem; }

/* ================================================================ FLEX */
.flex           { display: flex; }
.inline-flex    { display: inline-flex; }
.flex-col       { flex-direction: column; }
.flex-row       { flex-direction: row; }
.flex-wrap      { flex-wrap: wrap; }
.items-center   { align-items: center; }
.items-start    { align-items: flex-start; }
.items-end      { align-items: flex-end; }
.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end    { justify-content: flex-end; }
.self-start     { align-self: flex-start; }
.grow           { flex-grow: 1; }
.shrink-0       { flex-shrink: 0; }
.flex-grow      { flex-grow: 1; }
.gap-1   { gap: 0.25rem; }
.gap-1\.5{ gap: 0.375rem; }
.gap-2   { gap: 0.5rem; }
.gap-3   { gap: 0.75rem; }
.gap-4   { gap: 1rem; }
.gap-5   { gap: 1.25rem; }
.gap-6   { gap: 1.5rem; }
.gap-8   { gap: 2rem; }
.gap-10  { gap: 2.5rem; }
.gap-12  { gap: 3rem; }
.gap-16  { gap: 4rem; }
.gap-x-10 { column-gap: 2.5rem; }
.gap-y-6  { row-gap: 1.5rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-2\.5 > * + * { margin-top: 0.625rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* ================================================================ GRID */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0,1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

/* ================================================================ SIZING */
.w-full  { width: 100%; }
.w-4     { width: 1rem; }
.w-8     { width: 2rem; }
.w-12    { width: 3rem; }
.w-20    { width: 5rem; }
.h-full  { height: 100%; }
.h-7     { height: 1.75rem; }
.h-8     { height: 2rem; }
.h-20    { height: 5rem; }
.h-0     { height: 0; }
.min-h-0 { min-height: 0; }
.max-w-xs  { max-width: 20rem; }
.max-w-sm  { max-width: 24rem; }
.max-w-md  { max-width: 28rem; }
.max-w-lg  { max-width: 32rem; }
.max-w-xl  { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-none { max-width: none; }
.max-w-6xl { max-width: 72rem; }

/* ================================================================ POSITION */
.relative  { position: relative; }
.absolute  { position: absolute; }
.fixed     { position: fixed; }
.sticky    { position: sticky; }
.inset-0   { top:0;right:0;bottom:0;left:0; }
.top-0     { top: 0; }
.left-0    { left: 0; }
.right-0   { right: 0; }
.bottom-0  { bottom: 0; }
.-z-1      { z-index: -1; }
.z-10      { z-index: 10; }
.z-20      { z-index: 20; }
.z-30      { z-index: 30; }
.z-50      { z-index: 50; }
.z-\[999\] { z-index: 999; }

/* ================================================================ VISIBILITY / OPACITY */
.invisible      { visibility: hidden; }
.visible        { visibility: visible; }
.opacity-0      { opacity: 0; }
.opacity-100    { opacity: 1; }
.pointer-events-none { pointer-events: none; }
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.2s, background-color 0.2s; }
.transition-transform { transition: transform 0.3s ease; }
.transition-height { transition: height 0.3s ease; }
.transition-visibility { transition: opacity 0.3s, visibility 0.3s; }
.duration-300  { transition-duration: 300ms; }
.overflow-hidden { overflow: hidden; }
.overflow-auto  { overflow: auto; }
.overflow-x-auto { overflow-x: auto; }

/* ================================================================ TEXT UTILITIES */
.text-white  { color: #FFFFFF !important; }
.text-black  { color: var(--text-dark) !important; }
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-gray-300 { color: rgba(255,255,255,0.65) !important; }
.text-gray-400 { color: rgba(255,255,255,0.5) !important; }
.text-gray-500 { color: rgba(255,255,255,0.4) !important; }
.text-gray-600 { color: rgba(255,255,255,0.35) !important; }
.text-sm   { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg   { font-size: 1.125rem; }
.text-xl   { font-size: 1.25rem; }
.text-2xl  { font-size: 1.5rem; }
.text-3xl  { font-size: 1.875rem; }
.text-4xl  { font-size: 2.25rem; }
.text-5xl  { font-size: 3rem; }
.text-xs   { font-size: 0.75rem; }
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.uppercase   { text-transform: uppercase; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.tracking-widest { letter-spacing: 0.15em; }
.whitespace-normal { white-space: normal; }
.whitespace-nowrap { white-space: nowrap; }

/* ================================================================ FONT WEIGHTS */
.font-300 { font-weight: 300; }
.font-400 { font-weight: 400; }
.font-500 { font-weight: 500; }
.font-600 { font-weight: 600; }
.font-700 { font-weight: 700; }
.font-800 { font-weight: 800; }
.font-900 { font-weight: 900; }

/* ================================================================ BACKGROUND UTILS */
.bg-white  { background-color: #FFFFFF !important; }
.bg-black  { background-color: #000000 !important; }
.bg-gray   { background-color: var(--bg-section) !important; }
.bg-card   { background-color: var(--bg-card) !important; }

/* Dark section (repeated) */
.bg-\[\#0A0B0E\] { background-color: #0A0B14 !important; }
.bg-\[\#0A0B0E\] h1, .bg-\[\#0A0B0E\] h2, .bg-\[\#0A0B0E\] h3,
.bg-\[\#0A0B0E\] h4, .bg-\[\#0A0B0E\] p, .bg-\[\#0A0B0E\] a,
.bg-\[\#0A0B0E\] label, .bg-\[\#0A0B0E\] li, .bg-\[\#0A0B0E\] span {
  color: var(--text-white);
}

/* ================================================================ BORDER UTILS */
.border        { border: 1px solid var(--border); }
.border-b      { border-bottom: 1px solid var(--border); }
.border-t      { border-top: 1px solid var(--border); }
.border-gray-100\/10 { border-color: rgba(255,255,255,0.10) !important; }
.border-gray-100\/20 { border-color: rgba(255,255,255,0.20) !important; }
.border-gray-200      { border-color: rgba(255,255,255,0.15) !important; }
.border-gray-900      { border-color: rgba(255,255,255,0.08) !important; }
.border-gray-800      { border-color: rgba(255,255,255,0.10) !important; }
.border-primary-100\/20 { border-color: rgba(15,51,255,0.20) !important; }
.border-t-0    { border-top: none; }
.border-r-0    { border-right: none; }

/* ================================================================ GRADIENT UTILS */
.bg-gradient-to-r    { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-b    { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.from-primary\/30    { --tw-gradient-from: rgba(15,51,255,0.3); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.to-\[\#8A71AF\]\/30 { --tw-gradient-to: rgba(138,113,175,0.3); }

/* ================================================================ FILTER / BLUR */
.blur-sm    { filter: blur(4px); }
.blur-md    { filter: blur(8px); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.filter     { /* enable filter */ }
.bg-cover   { background-size: cover; }
.bg-center  { background-position: center; }
.object-cover { object-fit: cover; }

/* ================================================================ MISC DISPLAY */
.block        { display: block; }
.inline-block { display: inline-block; }
.hidden       { display: none; }
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.select-none  { user-select: none; }
.tabindex-\[-1\] { /* accessibility */ }
.aspect-\[16\/9\] { aspect-ratio: 16/9; }
.aspect-\[4\/3\]  { aspect-ratio: 4/3; }
.truncate     { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.text-ellipsis { text-overflow: ellipsis; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ================================================================ MISC SIZE CLASSES */
.min-h-screen  { min-height: 100vh; }
.h-screen      { height: 100vh; }
.mobile-vh     { height: 100vh; }
.w-16          { width: 4rem; }
.h-16          { height: 4rem; }
.h-4           { height: 1rem; }
.h-6           { height: 1.5rem; }
.w-6           { width: 1.5rem; }
.w-10          { width: 2.5rem; }
.h-10          { height: 2.5rem; }

/* ================================================================ TEXT SIZING SPECIFICS */
.text-\[2rem\]   { font-size: 2rem; }
.text-\[3rem\]   { font-size: 3rem; }
.text-\[4rem\]   { font-size: 4rem; }
.text-\[5rem\]   { font-size: 5rem; }
.text-\[3\.5rem\] { font-size: 3.5rem; }
.text-\[2\.5rem\] { font-size: 2.5rem; }

/* ================================================================ HEADER SCROLL CLASSES */
.bg-white\/90 {
  background-color: rgba(255,255,255,0.92) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.bg-black\/90 {
  background-color: rgba(6,8,15,0.92) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ================================================================ SHADOWS */
.shadow-lg { box-shadow: 0 10px 32px rgba(0,0,0,0.5); }
.shadow-xl { box-shadow: 0 20px 48px rgba(0,0,0,0.6); }
.shadow-primary { box-shadow: 0 8px 24px rgba(15,51,255,0.35); }

/* ================================================================ HOVER UTILITIES */
.hover\:text-white:hover    { color: #FFFFFF !important; }
.hover\:text-primary:hover  { color: var(--primary) !important; }
.hover\:bg-primary:hover    { background-color: var(--primary) !important; }
.hover\:bg-white:hover      { background-color: #FFFFFF !important; }
.hover\:text-black:hover    { color: var(--text-dark) !important; }
.hover\:scale-105:hover     { transform: scale(1.05); }
.hover\:translate-x-1:hover { transform: translateX(0.25rem); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.group:hover .group-hover\:text-white { color: #FFFFFF !important; }

/* ================================================================ FOCUS */
.focus\:left-0:focus { left: 0; }
.focus\:opacity-100:focus { opacity: 1; }

/* ================================================================ RESPONSIVE GRID HELPERS */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .sm\:flex-row    { flex-direction: row; }
  .sm\:pt-28       { padding-top: 7rem; }
  .sm\:py-18       { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .sm\:text-\[5rem\] { font-size: 5rem; }
  .sm\:w-12        { width: 3rem; }
  .sm\:-mt-2       { margin-top: -0.5rem; }
  .sm\:self-auto   { align-self: auto; }
}
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .md\:flex-row    { flex-direction: row; }
  .md\:mt-12       { margin-top: 3rem; }
  .md\:mt-16       { margin-top: 4rem; }
  .md\:text-xl     { font-size: 1.25rem; }
  .md\:text-2xl    { font-size: 1.5rem; }
  .md\:px-12       { padding-left: 3rem; padding-right: 3rem; }
  .md\:gap-12      { gap: 3rem; }
  .md\:rounded-pixel-lg { border-radius: 24px; }
  .md\:\!text-\[3rem\] { font-size: 3rem !important; }
  .md\:gap-6       { gap: 1.5rem; }
  .md\:gap-8       { gap: 2rem; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0,1fr)); }
  .lg\:text-\[4rem\] { font-size: 4rem; }
}
@media (min-width: 1280px) {
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
}

/* ================================================================ HERO SECTION — dark navy */
#hero {
  background-color: var(--bg-body) !important;
  color: var(--text-white) !important;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
#hero h1, #hero h2, #hero h3, #hero h4,
#hero p, #hero a, #hero span, #hero div {
  color: inherit;
}
#hero .text-secondary { color: var(--secondary) !important; }
#hero .text-gray-300  { color: rgba(255,255,255,0.65) !important; }

/* ================================================================ SCROLLBAR (subtle dark) */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-body); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.3); }

/* ================================================================ LEFT OFFSET SKIP NAV */
.-left-container-width { left: -9999px; }
.-left-\[41px\] { left: -41px; }
.top-1\.5 { top: 0.375rem; }

/* ================================================================ LOGO TICKER */
#logos-ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-section);
}
.ticker-track {
  display: flex;
  animation: ticker 25s linear infinite;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-track:hover { animation-play-state: paused; }

/* ================================================================ BLOG CARD */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* ================================================================ FAQ ACCORDION */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; font-size: 1.1rem;
  color: var(--text-white);
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  text-align: left;
  font-family: inherit;
  outline: none;
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem; line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 500px; padding-top: 1rem; }
.faq-arrow {
  width: 1.25rem; height: 1.25rem;
  transition: transform 0.3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ================================================================ HERO SECTION PADDING SPACER */
.h-\[var\(--topbar-height\)\] { height: 80px; }
