/* Cedoka Global local fallback stylesheet */
:root {
  --color-primary: #0F1F3D;
  --color-accent: #E8A020;
  --color-cta: #0D7377;
  --color-slate: #F4F6FA;
  --color-text: #1A1A2E;
  --color-muted: #4A5568;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: var(--color-text);
  background: #ffffff;
  overflow-x: hidden;
}
img, svg, picture { display: block; max-width: 100%; height: auto; }
a, button { transition: all 0.25s ease; }
main { display: block; }

/* Basic utility classes used throughout the site */
.hidden { display: none !important; }
.block { display: block !important; }
.inline-block { display: inline-block !important; }
.inline-flex { display: inline-flex !important; }
.flex { display: flex !important; }
.grid { display: grid !important; }
.flex-col { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.items-center { align-items: center !important; }
.items-start { align-items: flex-start !important; }
.items-end { align-items: flex-end !important; }
.justify-between { justify-content: space-between !important; }
.justify-center { justify-content: center !important; }
.justify-end { justify-content: flex-end !important; }
.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 0.75rem !important; }
.gap-4 { gap: 1rem !important; }
.gap-5 { gap: 1.25rem !important; }
.gap-6 { gap: 1.5rem !important; }
.gap-8 { gap: 2rem !important; }
.gap-10 { gap: 2.5rem !important; }
.gap-12 { gap: 3rem !important; }

.w-full { width: 100% !important; }
.w-auto { width: auto !important; }
.max-w-full { max-width: 100% !important; }
.max-w-5xl { max-width: 64rem !important; }
.max-w-2xl { max-width: 42rem !important; }
.max-w-\[1280px\] { max-width: 1280px !important; }
.min-w-\[220px\] { min-width: 220px !important; }
.min-w-\[240px\] { min-width: 240px !important; }
.min-h-\[100px\] { min-height: 100px !important; }
.min-h-\[80svh\] { min-height: 80svh !important; }
.min-h-\[260px\] { min-height: 260px !important; }
.min-h-\[300px\] { min-height: 300px !important; }
.h-full { height: 100% !important; }
.h-px { height: 1px !important; }
.h-7 { height: 1.75rem !important; }
.h-8 { height: 2rem !important; }
.h-9 { height: 2.25rem !important; }
.h-10 { height: 2.5rem !important; }
.h-11 { height: 2.75rem !important; }
.h-12 { height: 3rem !important; }
.h-14 { height: 3.5rem !important; }
.h-16 { height: 4rem !important; }
.w-7 { width: 1.75rem !important; }
.w-8 { width: 2rem !important; }
.w-9 { width: 2.25rem !important; }
.w-10 { width: 2.5rem !important; }
.w-11 { width: 2.75rem !important; }
.w-12 { width: 3rem !important; }
.w-14 { width: 3.5rem !important; }

.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-3 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-5 { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
.px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-1\.5 { padding-top: 0.375rem !important; padding-bottom: 0.375rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
.py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-8 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.py-14 { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
.py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.pt-16 { padding-top: 4rem !important; }
.pt-24 { padding-top: 6rem !important; }
.pt-28 { padding-top: 7rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-6 { padding-bottom: 1.5rem !important; }
.pb-12 { padding-bottom: 3rem !important; }
.pb-20 { padding-bottom: 5rem !important; }
.mt-3 { margin-top: 0.75rem !important; }
.mt-4 { margin-top: 1rem !important; }
.mt-5 { margin-top: 1.25rem !important; }
.mt-6 { margin-top: 1.5rem !important; }
.mt-8 { margin-top: 2rem !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-1\.5 { margin-bottom: 0.375rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-5 { margin-bottom: 1.25rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.mb-10 { margin-bottom: 2.5rem !important; }
.mb-12 { margin-bottom: 3rem !important; }
.mb-14 { margin-bottom: 3.5rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.-mx-4 { margin-left: -1rem !important; margin-right: -1rem !important; }
.-translate-x-1\/2 { transform: translateX(-50%) !important; }
.left-1\/2 { left: 50% !important; }
.top-0 { top: 0 !important; }
.top-28 { top: 7rem !important; }
.inset-0 { inset: 0 !important; }
.absolute { position: absolute !important; }
.fixed { position: fixed !important; }
.relative { position: relative !important; }
.sticky { position: sticky !important; }
.z-10 { z-index: 10 !important; }
.z-50 { z-index: 50 !important; }

.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-sm { font-size: 0.875rem !important; }
.text-xs { font-size: 0.75rem !important; }
.text-lg { font-size: 1.125rem !important; }
.text-xl { font-size: 1.25rem !important; }
.text-2xl { font-size: 1.5rem !important; }
.text-3xl { font-size: 1.875rem !important; }
.text-4xl { font-size: 2.25rem !important; }
.text-\[1\.75rem\] { font-size: 1.75rem !important; }
.text-\[1\.7rem\] { font-size: 1.7rem !important; }
.text-\[2\.5rem\] { font-size: 2.5rem !important; }
.text-\[3\.25rem\] { font-size: 3.25rem !important; }
.text-\[4rem\] { font-size: 4rem !important; }
.font-medium { font-weight: 500 !important; }
.font-semibold { font-weight: 600 !important; }
.font-bold { font-weight: 700 !important; }
.font-extrabold { font-weight: 800 !important; }
.font-black { font-weight: 900 !important; }
.leading-none { line-height: 1 !important; }
.leading-tight { line-height: 1.2 !important; }
.leading-relaxed { line-height: 1.7 !important; }
.uppercase { text-transform: uppercase !important; }
.tracking-wider { letter-spacing: 0.08em !important; }

.text-white { color: #ffffff !important; }
.text-white\/35 { color: rgba(255,255,255,0.35) !important; }
.text-white\/40 { color: rgba(255,255,255,0.4) !important; }
.text-white\/50 { color: rgba(255,255,255,0.5) !important; }
.text-white\/60 { color: rgba(255,255,255,0.6) !important; }
.text-white\/80 { color: rgba(255,255,255,0.8) !important; }
.text-\[\#0F1F3D\] { color: var(--color-primary) !important; }
.text-\[\#1A1A2E\] { color: var(--color-text) !important; }
.text-\[\#4A5568\] { color: var(--color-muted) !important; }
.text-\[\#E8A020\] { color: var(--color-accent) !important; }
.text-\[\#0D7377\] { color: var(--color-cta) !important; }

.bg-white { background-color: #ffffff !important; }
.bg-white\/5 { background-color: rgba(255,255,255,0.05) !important; }
.bg-white\/10 { background-color: rgba(255,255,255,0.1) !important; }
.bg-white\/20 { background-color: rgba(255,255,255,0.2) !important; }
.bg-\[\#0F1F3D\] { background-color: var(--color-primary) !important; }
.bg-\[\#F4F6FA\] { background-color: var(--color-slate) !important; }
.bg-\[\#E8A020\]\/10 { background-color: rgba(232,160,32,0.1) !important; }
.bg-\[\#0D7377\]\/10 { background-color: rgba(13,115,119,0.1) !important; }
.bg-\[\#10B981\]\/10 { background-color: rgba(16,185,129,0.1) !important; }
.bg-\[\#8B5CF6\]\/10 { background-color: rgba(139,92,246,0.1) !important; }
.bg-\[\#F59E0B\]\/10 { background-color: rgba(245,158,11,0.1) !important; }

.rounded-full { border-radius: 9999px !important; }
.rounded-xl { border-radius: 0.75rem !important; }
.rounded-2xl { border-radius: 1rem !important; }
.overflow-hidden { overflow: hidden !important; }
.overflow-x-auto { overflow-x: auto !important; }
.overflow-y-auto { overflow-y: auto !important; }
.border { border: 1px solid rgba(15,31,61,0.1) !important; }
.border-t { border-top: 1px solid rgba(255,255,255,0.05) !important; }
.border-b { border-bottom: 1px solid rgba(15,31,61,0.08) !important; }
.border-white\/5 { border-color: rgba(255,255,255,0.05) !important; }

.shadow-lg { box-shadow: 0 10px 30px rgba(0,0,0,0.12) !important; }

.shrink-0 { flex-shrink: 0 !important; }

.reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1 !important; transform: none !important; }
.reveal-visible { opacity: 1 !important; transform: none !important; }

/* Section / layout helpers */
.max-w-\[1280px\] { max-width: 1280px !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

/* Navigation / header */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; isolation: isolate; }
.glass-nav { background: rgba(15,31,61,0.96); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-link { position: relative; color: rgba(255,255,255,0.82); text-decoration: none; font-weight: 600; transition: color 0.2s ease; }
.nav-link:hover, .nav-link.nav-active { color: #ffffff; }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: -0.35rem; width: 0; height: 2px; background: var(--color-accent); transition: width 0.2s ease; }
.nav-link:hover::after, .nav-link.nav-active::after { width: 100%; }

/* Services dropdown nav */
.nav-dropdown { position: relative; z-index: 60; }
.nav-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  border-radius: 0.5rem;
  padding: 0.25rem 0.4rem;
  margin: -0.25rem -0.4rem;
  transition: background 0.2s ease;
}
.nav-dropdown-trigger:hover { background: rgba(255,255,255,0.08); }
.nav-dropdown-trigger.nav-active { color: #ffffff; }
.nav-dropdown-chevron {
  font-size: 1.125rem;
  transition: transform 0.25s ease;
  line-height: 1;
}
.nav-dropdown.open .nav-dropdown-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 18rem;
  max-height: 78vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 24px 60px -12px rgba(15, 31, 61, 0.28), 0 8px 24px -8px rgba(15, 31, 61, 0.18);
  border: 1px solid rgba(15, 31, 61, 0.06);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top left;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  pointer-events: none;
}
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  line-height: 1.3;
  border-radius: 0.65rem;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.nav-dropdown-menu a .nav-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 0.6rem;
  background: rgba(15, 31, 61, 0.05);
  color: var(--color-primary);
  font-size: 1.15rem;
  transition: background 0.18s ease, color 0.18s ease;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(232, 160, 32, 0.1);
  color: var(--color-primary);
  transform: translateX(2px);
}
.nav-dropdown-menu a:hover .nav-item-icon,
.nav-dropdown-menu a:focus-visible .nav-item-icon {
  background: var(--color-accent);
  color: #ffffff;
}
.nav-dropdown-menu a.nav-active { color: var(--color-accent); font-weight: 700; }
.nav-dropdown-menu a.nav-active .nav-item-icon { background: rgba(232,160,32,0.15); color: var(--color-accent); }
#mobile-services-submenu { display: none; }
#mobile-services-submenu.is-open { display: block; }
#mobile-services-toggle[aria-expanded="true"] .nav-dropdown-chevron { transform: rotate(180deg); }
/* Mobile slide-down menu — explicit states so it never depends on ambiguous utility classes */
#mobile-menu {
  display: none;
  visibility: visible;
  opacity: 1;
  max-height: none;
  overflow-y: auto;
}
#mobile-menu.is-open {
  display: block;
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  height: calc(100vh - 5rem);
  max-height: calc(100vh - 5rem);
  z-index: 999;
  background: #0F1F3D;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto !important;
  overflow-y: auto;
}
.service-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1.25rem 0.85rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(15, 31, 61, 0.08);
  background: #ffffff;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  min-height: 120px;
}
.service-tile:hover {
  border-color: rgba(232, 160, 32, 0.35);
  box-shadow: 0 12px 32px rgba(15, 31, 61, 0.08);
  transform: translateY(-3px);
}
.service-tile-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-tile-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--color-primary);
  line-height: 1.25;
}
@media (min-width: 640px) {
  .service-tile-title { font-size: 0.875rem; }
}
.service-grid-8 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .service-grid-8 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
}
@media (min-width: 1024px) {
  .nav-dropdown-menu { width: 18rem; }
}

/* Hero / cards */
.hero-gradient { background: linear-gradient(135deg, var(--color-primary) 0%, #162A50 50%, var(--color-primary) 100%); }
.hero-pattern { background-image: radial-gradient(rgba(232,160,32,.08) 1px, transparent 1px); background-size: 32px 32px; }
.pillar-card, .card, .service-detail-panel { border: 1px solid rgba(15,31,61,0.08); border-radius: 24px; background: #ffffff; box-shadow: 0 18px 45px rgba(15,31,42,0.08); }
.pillar-card { background: linear-gradient(135deg, rgba(15,31,61,0.95) 0%, rgba(22,42,80,0.95) 100%); color: #ffffff; }
.hero-card-glow { position: absolute; inset: -8px; border-radius: 30px; background: linear-gradient(135deg, rgba(232,160,32,0.35), rgba(13,115,119,0.35)); filter: blur(18px); z-index: -1; opacity: 0.9; }
.pillar-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem 0.8rem; border-radius: 14px; background: rgba(255,255,255,0.04); }
.pillar-dot { display: inline-block; width: 0.6rem; height: 0.6rem; border-radius: 999px; flex-shrink: 0; }
.section-badge { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.45rem 0.9rem; background: rgba(232,160,32,0.12); color: var(--color-accent); font-weight: 700; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; margin-bottom: 1rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.4rem; border-radius: 0.8rem; text-decoration: none; font-weight: 700; line-height: 1.2; border: 1px solid transparent; cursor: pointer; }
.btn-primary { background: var(--color-accent); color: var(--color-primary); }
.btn-secondary { background: transparent; color: #ffffff; border-color: rgba(255,255,255,0.2); }
.btn-secondary.dark { color: var(--color-primary); border-color: rgba(15,31,61,0.12); }
.btn-accent { background: var(--color-cta); color: #ffffff; }
.btn:hover { transform: translateY(-1px); }

/* Service cards */
.service-card-h, .service-tab { border: 1px solid rgba(15,31,61,0.08); border-radius: 1.2rem; padding: 1rem; background: #ffffff; cursor: pointer; box-shadow: 0 10px 24px rgba(15,31,61,0.05); }
.service-card-h.active, .service-tab.active { border-color: rgba(232,160,32,0.35); box-shadow: 0 12px 28px rgba(232,160,32,0.14); }
.service-detail-panel { display: none; }
.service-detail-panel.open { display: block; }

/* Footer */
footer, .footer { background: var(--color-primary); color: rgba(255,255,255,0.75); }
.footer-heading { color: #ffffff; font-weight: 700; margin-bottom: 1rem; }
.footer a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer a:hover { color: #ffffff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 0; margin-top: 2rem; }

/* Responsive helpers */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row !important; }
  .sm\:w-auto { width: auto !important; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
  .sm\:px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .sm\:px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
  .sm\:pb-20 { padding-bottom: 5rem !important; }
  .sm\:gap-3 { gap: 0.75rem !important; }
  .sm\:gap-4 { gap: 1rem !important; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex !important; }
  .lg\:hidden { display: none !important; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .lg\:min-h-screen { min-height: 100vh !important; }
  .lg\:pt-28 { padding-top: 7rem !important; }
}

@media (max-width: 639px) {
  .sm\:hidden { display: none !important; }
  .card-grid { display: grid !important; grid-template-columns: 1fr !important; }
}
