:root,
[data-theme="light"] {
  --blue: #003DA1;
  --bg: #ffffff;
   --text: #0d0d0d;
  --toggle-track: #222222;
  --toggle-knob: #ffffff;
  --dropdown-bg: #ffffff;
  --dropdown-shadow: 0 16px 48px rgba(0,0,0,0.13);
  --nav-height: 65px;
}

[data-theme="dark"] {
  --blue: #0091E2;
  --bg: #0d0d0d;
  --text: #ffffff;
  --toggle-track: #ffffff;
  --toggle-knob: #0c0c0c;
  --dropdown-bg: #0d0d0d;
  --dropdown-shadow: 0 16px 48px rgba(0,0,0,0.55);
}

/* @font-face {
  font-family: 'NMR';
  src: url('../fonts/NeueMontreal/NeueMontreal-Regular.woff2') format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: 'NMB';
  src: url('../fonts/NeueMontreal/NeueMontreal-Bold.woff2') format('woff2');
  font-weight: 700;
} */


.theme-toggle {
  flex-shrink: 0;
  width: 54px;
  height: 30px;
  background: var(--toggle-track);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background .35s;
  margin-right: 36px;
  z-index: 1001;
  pointer-events: auto;
  display: block;
}

.theme-toggle::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--toggle-knob);
  transition: transform .3s cubic-bezier(.4,0,.2,1), background .35s;
}

[data-theme="dark"] .theme-toggle::after {
  transform: translateX(24px);
}

.theme-toggle:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.theme-toggle:active {
  transform: scale(0.98);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  transition: background 0.35s, color 0.35s;
  overflow-x: hidden;
}
ul { margin-bottom: 0; list-style-type: none; }
/* ─── NAVBAR ─── */
.site-nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  /* padding: 0 30px; */
  gap: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  max-width: 1500px;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 30px;
}
/* Toggle */
.theme-toggle {
  flex-shrink: 0;
  width: 54px;
  height: 30px;
  background: var(--toggle-track);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background .35s;
  margin-right: 36px;
}
.theme-toggle::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--toggle-knob);
  transition: transform .3s cubic-bezier(.4,0,.2,1), background .35s;
}
[data-theme="dark"] .theme-toggle::after { transform: translateX(24px); }
.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-link-item {
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  /* font-weight: 400; */
  letter-spacing: 0.065em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  padding: 9px 14px;
  display: flex;
  align-items: center; gap: 5px;
  position: relative;
  transition: color .2s;
  cursor: pointer;
  background: none;
  border: none;
  white-space: nowrap;
}
.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2.5px;
  background: #003DA1;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.nav-link-item:hover,
.nav-link-item.active { color: var(--text); }
.nav-link-item.active::after,
.nav-link-item:hover::after { transform: scaleX(1); }
.chevron {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s;
}
.nav-links > li.open .chevron { transform: rotate(180deg); }

.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--dropdown-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--dropdown-shadow);
  min-width: 220px;
  padding: 10px 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s, transform .22s cubic-bezier(.4,0,.2,1);
  list-style: none;
}

.nav-links > li.open .dropdown-panel {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.global-wrap { position: relative; }
.global-wrap.open .dropdown-panel {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.global-dropdown {
  left: auto;
  right: 0;
  transform: translateY(-10px);
}
.global-wrap.open .global-dropdown {
  transform: translateY(0);
}
.global-dropdown::before {
  left: auto;
  right: 18px;
  transform: none;
}

.dropdown-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-family: 'Arial', sans-serif;
  font-size: 13.5px;
  /* font-weight: 400; */
  text-decoration: none;
  border-radius: 10px;
  transition: background .15s, color .15s;
}
.dropdown-panel a:hover { 
  font-family: 'Arial', sans-serif;
  /* font-weight: 700; */
  background: #003DA1; 
  color: #fff; 
}
.dropdown-panel a.active-option:hover { 
  color: #fff; 
}
.dropdown-panel a.active-option { 
  color: #003DA1; 
  font-family: 'Arial', sans-serif;
  /* font-weight: 700; */
}

.nav-ctas {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}
.contact {
  font-family: 'Arial', sans-serif;
  font-size: 12.5px;
  /* font-weight: 700; */
  letter-spacing: 0.03em;
  background: #003DA1;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.contact:hover { 
  background: #003DA1; 
  transform: translateY(-1px);
 }
.explore {
  font-family: 'Arial', sans-serif;
  font-size: 12.5px;
  /* font-weight: 400; */
  letter-spacing: 0.03em;
  background: transparent;
  color: #000;
  border: 1px solid #000;
  padding: 9px 22px;
  border-radius: 38px;
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s;
  white-space: nowrap;
}
.explore:hover { transform: translateY(-1px); }

.global-btn {
  background: none;
  border: none;
  font-family: 'Arial', sans-serif;
  font-size: 12.5px;
  /* font-weight: 400; */
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 9px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.global-btn svg {
  transition: transform .25s;
}
.global-wrap.open .global-btn svg {
  transform: rotate(180deg);
}
.global-btn:hover { color: var(--text); }

/* ─── MOBILE NAV (ADDONS ONLY) ─── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background .2s;
}
.hamburger:hover { background: rgba(0,0,0,0.06); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s, width .3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--bg, #fff);
  border-bottom: 1px solid var(--border, #e5e5e5);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  z-index: 999;
  padding: 12px 0 20px;
  overflow-y: auto;
  max-height: calc(100vh - var(--nav-height));
}
.mobile-menu.open { display: block; }

.mobile-nav-links {
  list-style: none;
  padding: 0 16px;
  margin: 0 0 8px;
}
.mobile-nav-links li { border-bottom: 1px solid var(--border, #f0f0f0); }
.mobile-nav-links li:last-child { border-bottom: none; }

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 4px;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  /* font-weight: 400; */
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.mobile-nav-link:hover { color: #003DA1; }

.mobile-chevron {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s;
  flex-shrink: 0;
}
.mobile-services-li.open .mobile-chevron { transform: rotate(180deg); }

.mobile-dropdown {
  display: none;
  list-style: none;
  padding: 0 0 8px 12px;
  margin: 0;
  border-left: 2.5px solid #003DA1;
  margin-left: 4px;
  margin-bottom: 8px;
}
.mobile-services-li.open .mobile-dropdown { display: block; }
.mobile-dropdown li a {
  display: block;
  padding: 10px 10px;
  font-family: 'Arial', sans-serif;
  font-size: 13.5px;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.mobile-dropdown li a:hover {
  background: #003DA1;
  color: #fff;
  font-family: 'Arial', sans-serif;
}

.mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 16px 0;
}
.mobile-ctas .contact,
.mobile-ctas .explore {
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  font-size: 13.5px;
  padding: 13px 22px;
}


[data-theme="dark"] .hamburger span {
  background: #ffffff;
}

[data-theme="dark"] .mobile-menu {
  background: var(--bg);
  border-bottom-color: #2a2a2a;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}

[data-theme="dark"] .mobile-nav-links li {
  border-bottom-color: #2a2a2a;
}

[data-theme="dark"] .mobile-nav-link {
  color: #ffffff;
}

[data-theme="dark"] .mobile-nav-link:hover {
  color: var(--blue);
}

[data-theme="dark"] .mobile-dropdown li a {
  color: #cccccc;
}

[data-theme="dark"] .mobile-dropdown li a:hover {
  background: var(--blue);
  color: #fff;
}

[data-theme="dark"] .hamburger:hover {
  background: rgba(255,255,255,0.08);
}

[data-theme="dark"] .global-btn {
  color: #ffffff;
}

[data-theme="dark"] .mobile-ctas .explore {
  color: #ffffff;
  border-color: #ffffff;
}
/* ─── MEGA MENU ─── */
.mega-menu-parent { position: relative; }

.mega-menu {
    display: none;
    position: absolute;
    top: calc(100% + 13px);
    left: 0;
    background: var(--dropdown-bg);
    border: 1px solid var(--border, #e5e5e5);
    box-shadow: var(--dropdown-shadow);
    min-width: 680px;
    z-index: 9999;
    border-radius: 16px;
    overflow: hidden;
}

.mega-menu-parent.is-open .mega-menu { display: block; }

/* Tabs */
.mega-menu-tabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--border, #e5e5e5);
    background: var(--tab-bg, rgba(0,0,0,0.03));
    /* overflow-x: auto; */
}

.mega-tab {
    padding: 14px 20px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    /* font-weight: 400; */
    letter-spacing: 0.04em;
    color: var(--text-muted, #666);
    border-bottom: 2.5px solid transparent;
    margin-bottom: -1px;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
}

.mega-tab:hover { color: var(--text, #000); }

.mega-tab.active {
    color: #003DA1;
    border-bottom-color: #003DA1;
    font-family: 'Arial', sans-serif;
    /* font-weight: 700; */
    background: var(--dropdown-bg);
}

/* Panels */
.mega-menu-panels { padding: 16px 20px; }
.mega-panel { display: none; }
.mega-panel.active { display: block; }

/* Panel items (simple list) */
.panel-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.panel-items li {
    border-bottom: 1px solid var(--border, #eee);
}

.panel-items li:last-child { border-bottom: none; }

.panel-items li a {
    display: flex;
    justify-content: space-between;
    padding: 11px 10px;
    font-family: 'Arial', sans-serif;
    font-size: 13.5px;
    /* font-weight: 400; */
    color: var(--text, #000);
    text-decoration: none;
    text-transform: none;
    border-radius: 8px;
    transition: background .15s, color .15s, padding-left .2s;
}

.panel-items li a:hover {
    background: #003DA1;
    color: #fff;
    padding-left: 18px;
}

/* Accordion groups (Digital & Tech panel) */
.panel-group {
    border-bottom: 1px solid var(--border, #eee);
}

.panel-group:last-child { border-bottom: none; }

.zs-dt-accordion-toggle {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    font-family: 'Arial', sans-serif;
    font-size: 13.5px;
    /* font-weight: 400; */
    color: var(--text, #000);
    text-align: left;
    border-radius: 8px;
    transition: background .15s, color .15s;
}

.zs-dt-accordion-toggle:hover {
    background: rgba(0,61,161,0.06);
    color: #003DA1;
}

.zs-dt-accordion-toggle svg { transition: transform .3s ease; }
.zs-dt-accordion-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.panel-group-items {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0 0 8px 16px;
}

.panel-group-items.is-open { display: block; }

.panel-group-items li a {
    display: block;
    padding: 8px 10px;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: var(--text-muted, #555);
    text-decoration: none;
    text-transform: none;
    border-radius: 8px;
    transition: background .15s, color .15s, padding-left .2s;
}

.panel-group-items li a:hover {
    background: #003DA1;
    color: #fff;
    padding-left: 18px;
}

/* ─── DARK MODE: MEGA MENU ─── */
[data-theme="dark"] .mega-menu {
    background: var(--dropdown-bg);
    border-color: #2a2a2a;
}

[data-theme="dark"] .mega-menu-tabs {
    background: rgba(255,255,255,0.04);
    border-bottom-color: #2a2a2a;
}

[data-theme="dark"] .mega-tab {
    color: #aaa;
}

[data-theme="dark"] .mega-tab:hover { color: #fff; }

[data-theme="dark"] .mega-tab.active {
    color: var(--blue);
    border-bottom-color: var(--blue);
    background: var(--dropdown-bg);
}

[data-theme="dark"] .panel-items li {
    border-bottom-color: #2a2a2a;
}

[data-theme="dark"] .panel-items li a {
    color: #e0e0e0;
}

[data-theme="dark"] .panel-group {
    border-bottom-color: #2a2a2a;
}

[data-theme="dark"] .zs-dt-accordion-toggle {
    color: #e0e0e0;
}

[data-theme="dark"] .zs-dt-accordion-toggle:hover {
    background: rgba(0,145,226,0.1);
    color: var(--blue);
}

[data-theme="dark"] .panel-group-items li a {
    color: #aaa;
}

[data-theme="dark"] .panel-items li a:hover,
[data-theme="dark"] .panel-group-items li a:hover {
    background: var(--blue);
    color: #fff;
}
/* ─── MOBILE MEGA MENU ─── */
.mobile-mega-menu {
  display: none;
  flex-direction: column;
  margin: 0;
  padding: 0 0 8px 0;
}

.mobile-services-li.open .mobile-mega-menu {
  display: flex;
}

/* Level 1: main 4 tabs */
.mobile-mega-tab {
  border-bottom: 1px solid var(--border, #f0f0f0);
}

.mobile-mega-tab:last-child {
  border-bottom: none;
}

.mobile-mega-tab-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 4px 13px 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'NMB', sans-serif;
  font-size: 13px;
  /* font-weight: 700; */
  letter-spacing: 0.03em;
  color: #003DA1;
  text-align: left;
  transition: color .2s;
}

.mobile-mega-tab-btn:hover { color: #002f7e; }

.mobile-mega-chevron {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform .25s;
}

.mobile-mega-tab-btn[aria-expanded="true"] .mobile-mega-chevron {
  transform: rotate(180deg);
}

/* Level 1 panel */
.mobile-mega-panel {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 0 8px 0;
}

.mobile-mega-panel.open {
  display: block;
}

/* Direct links inside panel (panels 1, 3, 4) */
.mobile-mega-panel > li:not(.mobile-sub-group) > a {
  display: block;
  padding: 10px 12px 10px 20px;
  font-family: 'Arial', sans-serif;
  font-size: 13.5px;
  color: var(--text, #222);
  text-decoration: none;
  border-radius: 8px;
  transition: background .15s, color .15s;
}

.mobile-mega-panel > li:not(.mobile-sub-group) > a:hover {
  background: #003DA1;
  color: #fff;
}

/* Level 2: sub-accordions (Digital & Tech) */
.mobile-sub-group {
  border-top: 1px solid var(--border, #f0f0f0);
  list-style: none;
}

.mobile-sub-group:first-child { border-top: none; }

.mobile-sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 12px 11px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Arial', sans-serif;
  font-size: 13px;
  /* font-weight: 400; */
  color: var(--text, #333);
  text-align: left;
  transition: color .2s;
}

.mobile-sub-toggle:hover { color: #003DA1; }

.mobile-sub-chevron {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform .25s;
}

.mobile-sub-toggle[aria-expanded="true"] .mobile-sub-chevron {
  transform: rotate(180deg);
}

/* Level 2 panel */
.mobile-sub-panel {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 0 8px 12px;
  border-left: 2px solid #003DA1;
  margin-left: 20px;
  margin-bottom: 6px;
}

.mobile-sub-panel.open { display: block; }

.mobile-sub-panel li a {
  display: block;
  padding: 8px 10px;
  font-family: 'Arial', sans-serif;
  font-size: 13px;
  color: var(--text, #555);
  text-decoration: none;
  border-radius: 6px;
  transition: background .15s, color .15s;
}

.mobile-sub-panel li a:hover {
  background: #003DA1;
  color: #fff;
}

/* ─── DARK MODE ─── */
[data-theme="dark"] .mobile-mega-tab {
  border-bottom-color: #2a2a2a;
}

[data-theme="dark"] .mobile-mega-tab-btn {
  color: var(--blue);
}

[data-theme="dark"] .mobile-mega-panel > li:not(.mobile-sub-group) > a {
  color: #e0e0e0;
}

[data-theme="dark"] .mobile-sub-group {
  border-top-color: #2a2a2a;
}

[data-theme="dark"] .mobile-sub-toggle {
  color: #cccccc;
}

[data-theme="dark"] .mobile-sub-toggle:hover { color: var(--blue); }

[data-theme="dark"] .mobile-sub-panel li a {
  color: #aaaaaa;
}

[data-theme="dark"] .mobile-mega-panel > li:not(.mobile-sub-group) > a:hover,
[data-theme="dark"] .mobile-sub-panel li a:hover {
  background: var(--blue);
  color: #fff;
}
/* ─── HERO ─── */
.hero {
  display: flex;
  align-items: center;
  /* margin-top: 80px; */
  position: relative;
  width: 100%;
 min-height: 550px; /* absolute pixel floor */
  margin-top: var(--nav-height);
  overflow: hidden;
  max-width: 1500px;
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.42) 50%,
    rgba(0,0,0,0.06) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 90%;
  margin: 0 auto;
}
.hero-heading {
  display: flex;
  gap: 10px;
  width: 100% !important;
  font-family: 'Arial', sans-serif;
  font-size: 48px;
  /* font-weight: 700; */
  color: #ffffff;
  opacity: 0;
  animation: fadeUp .7s .5s ease forwards;
}
.hero-heading span { 
  color: #fff;
  width: 60%;
}
.word-cycler {
  display: inline-flex;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
  min-width: 180px;
  height: 1.1em;
}

.word-cycler {
  margin-bottom: -9px;
}
.word-cycler .word {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1), opacity 0.6s ease;
  margin-bottom: 0;
}
.word-cycler .word.active {
  transform: translateY(0%);
  opacity: 1;
}
.word-cycler .word.exit {
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1), opacity 0.6s ease;
}
/* .hero-para {
  font-family: 'NMR', sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: #ffffff;
  animation: fadeUp .7s .7s ease forwards;
  margin: 10px 0;
} */
.hero-btn-primary {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  /* font-weight: 700; */
  letter-spacing: 0.04em;
  background: #003DA1;
  color: #fff;
  border: none;
  padding: 14px 34px;
  border-radius: 38px;
  transition: background .2s, transform .15s;
  text-transform: uppercase;
  margin: 50px 0;
}
.hero-btn-primary:hover { 
  transform: translateY(-2px);
}
.hero-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #fff;
  width: 100%;
}
.hero-box .left-box {
  font-family: 'Arial', sans-serif;
  /* border-right: 2px solid; */
  /* border-left: 2px solid; */
  font-size: 20px;
  /* font-weight: 400; */
  text-align: justify;
  /* padding: 0 20px; */
  word-spacing: 1px !important;
}
.hero-box .right-box {
  font-family: 'Arial', sans-serif;
  text-align: center;
  font-size: 20px;
  /* font-weight: 400; */
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.about-us, .services, .awards {
  font-family: 'Arial', sans-serif;
  max-width: 1500px;
  margin: 0 auto;
}
/* Service Card */
.service-card {
    position: relative;
    height: 260px;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding: 16px;
    color: #fff;
    /* font-weight: 600; */
    font-size: 18px;
    background-size: cover;
    background-position: center;
     transition: transform 0.3s ease;
}

/* Dark overlay - UPDATED with gradient */
.service-card .overlay {
    position: absolute;
    inset: 0;
    background: #FFFFFF;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.325) 9.78%, rgba(0, 0, 0, 0.65) 66.06%);
}

/* All other styles remain unchanged */

.service-card:hover {
    transform: translateY(-6px) scale(1.02);
}
/* Text above overlay */
.service-card h3 {
    position: relative;
    z-index: 2;
}

  /* Gradient text */
  .heading-gradient {
    transition: opacity 0.3s ease;
    font-size:48px;
  }
  .heading-gradient:hover { opacity: 0.8; }

  /* Corner badge (desktop only) */
  .corner-badge {
  position: fixed;          /* 🔥 key change */
 right: max(0px, calc((99vw - 1500px) / 2));
  top: 50%;                 /* center vertically */
  transform: translateY(-50%) rotate(180deg);

  background: linear-gradient(0deg, #003DA1, #003DA1);
  writing-mode: vertical-rl;
  text-orientation: mixed;

  border-radius: 8px 0 0 8px;
  cursor: pointer;

  height: 164px;
  font-size: 10px;

  z-index: 9999;            /* ensure it's above all sections */
}
  .corner-badge:hover {
    background: linear-gradient(0deg, #002f7e, #002f7e);
    padding-left: 10px;
    padding-right: 10px;
    box-shadow: -4px 0 16px rgba(0, 61, 161, 0.35);
  }

  .sector-row {
    border-bottom: none; 
    transition: background 0.25s ease, padding-left 0.25s ease, padding-right 0.25s ease;
    cursor: pointer;
    position: relative;
  }
  
  .left-col .sector-row:not(:last-child)::after,
  .right-col .sector-row:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #e2e8f0;
    border-radius: 2px;
  }
  
  .left-col .sector-row:last-child::after,
  .right-col .sector-row:last-child::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #e2e8f0;
    border-radius: 2px;
  }
  
  .sectors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;  /* horizontal gap between columns = ensures left/right rows don't merge visually */
  }
  
  /* adjust hover effects keep padding consistency */
 .left-col .sector-row:hover {
    padding-left: 2rem;
}
.right-col .sector-row:hover {
    padding-left: 2rem;  /* Change from 2.5rem to 2rem */
}
  
  .icon-box {
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, background 0.3s ease;
    flex-shrink: 0;
    background-color: #003DA1;
    border-radius: 0.375rem; /* rounded-md */
    padding: 0.25rem;  /* p-1 equivalent */
    width: 2rem;
    height: 2rem;
    object-fit: contain;
  }
  
  .sector-row:hover .icon-box {
    transform: scale(1.18) rotate(-4deg);
    box-shadow: 0 4px 14px rgba(0, 61, 161, 0.35);
    background: #002f7e;
  }
  
  .sector-label {
    transition: color 0.25s ease, letter-spacing 0.25s ease, transform 0.25s ease;
    display: inline-block;
  }
  .sector-row:hover .sector-label {
    color: #003DA1;
    letter-spacing: 0.01em;
    transform: translateX(4px);
  }
  
  /* CTA button */
  .cta-btn {
    background: #003DA1;
    transition: background 0.3s ease, transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, letter-spacing 0.3s ease;
  }
  .cta-btn:hover {
    background: #002f7e;
    transform: scale(1.06);
    box-shadow: 0 8px 24px rgba(0, 61, 161, 0.35);
    letter-spacing: 0.04em;
  }
  .cta-btn:active { transform: scale(0.97); }
  
  /* Awards */
  .award-item {
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), filter 0.3s ease;
    cursor: pointer;
  }
  .award-item:hover {
    transform: translateY(-6px) scale(1.08);
    filter: drop-shadow(0 8px 16px rgba(0, 61, 161, 0.25));
  }
  .award-item img {
    transition: filter 0.3s ease;
  }
  .award-item:hover img {
    filter: brightness(1.05) saturate(1.1);
  }
  .award-divider {
    width: 1px;
    background: #e2e8f0;
    height: 60px;
    flex-shrink: 0;
    align-self: center;
    transition: background 0.3s ease, height 0.3s ease;
  }
  
  /* Section fade-in */
  section {
    animation: fadeUp 0.6s ease both;
  }
  section:nth-child(2) { animation-delay: 0.15s; }
  
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  
  /* Additional spacing for better readability on all devices */
  .sector-row {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  /* optional - to make icons show correctly (no broken images) */
  .icon-box[src=""], .icon-box:not([src]) {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24" stroke="white" stroke-width="1.5"><path stroke-linecap="round" stroke-linejoin="round" d="M3.75 3v11.25A2.25 2.25 0 006 16.5h2.25M3.75 3h-1.5m1.5 0h16.5m0 0h1.5m-1.5 0v11.25A2.25 2.25 0 0118 16.5h-2.25m-7.5 0h7.5m-7.5 0l-1 3m8.5-3l1 3m0 0l.5 1.5m-.5-1.5h-9.5m0 0l-1 3M9 7.5h6M9 10.5h3"/></svg>');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #003DA1;
  }
  /* fallback for right column icons same style */
  .right-col .icon-box[src=""],
  .right-col .icon-box:not([src]) {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24" stroke="white" stroke-width="1.5"><path stroke-linecap="round" stroke-linejoin="round" d="M3.75 3v11.25A2.25 2.25 0 006 16.5h2.25M3.75 3h-1.5m1.5 0h16.5m0 0h1.5m-1.5 0v11.25A2.25 2.25 0 0118 16.5h-2.25m-7.5 0h7.5m-7.5 0l-1 3m8.5-3l1 3m0 0l.5 1.5m-.5-1.5h-9.5m0 0l-1 3M9 7.5h6M9 10.5h3"/></svg>');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .award-item img {
    max-height: 5rem;
    width: auto;
  }
  .left-col .sector-row:last-child::after,
  .right-col .sector-row:last-child::after {
    background: #e2e8f0;
    height: 2px;
  }

  /* ----------------------------------- INSIGHTS SECTION ------------------------------------- */
  .insights-section {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1500px;
    background-image: url('../images/insights_bg.png');
    background-size: cover;
    background-position: center;
    padding-bottom: 160px !important;
    margin-top: 150px;
  }
  .insights-section .row {
    align-items: center;
  }
  
.insights-para {
  font-family: 'Arial', sans-serif;
  font-size: 45px;
  /* font-weight: 700; */
  /* width: 80%; */
}
.hidden-text {
  font-size: 32px;
  font-family: 'Arial', sans-serif;
  /* font-weight: 700; */
  color: #FFFFFF;
  display: none;
}

.btn.rounded-pill:hover {
  transform: translateY(-2px);
}
.cards-wrapper {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.card-column {
  flex: 1; /* equal width columns */
  max-width: 180px; /* prevents stretch */
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.4s ease;
}
.card-box {
  width: 190px;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center !important;
  padding: 0 !important;
}
.card-box::before {
  content: "";
  position: absolute;
  inset: 0;
  transition: all 0.4s ease;
  z-index: 1;
}
.card-box img:hover::before {
  backdrop-filter: blur(6px);
}
.card-box img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 190px !important;
  height: 190px !important;
  object-fit: cover !important;
  display: block;
  z-index: 0;
  max-width: none !important;
}
.card-content {
  position: absolute;
  top: 20px;
  left: 12px;
  z-index: 2;
  color: #fff;
}
.card-content h6 {
  font-family: 'Arial', sans-serif;
  font-size: 18px;
  /* font-weight: 700; */
  margin-bottom: 4px;
}
.card-content p {
  font-family: 'Arial', sans-serif;
  /* font-weight: 400; */
  font-size: 12px;
  width: 90%;
}
.card-box::after {
  font-family: 'Arial', sans-serif;
  /* font-weight: 400; */
  content: "Explore More";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: #003DA1;
  color: #fff;
  padding: 6px;
  border-radius: 20px;
  font-size: 12px;
  transition: 0.4s;
  z-index: 3;
}
.card-box:hover::after {
  bottom: 20px;
}

  /* ---------------------------------- INNOVATION SECTION ------------------------------------ */
.innovation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 1500px;
  margin: 0px auto;
  padding: 0 10px;
  background-image: url('../images/inno_bg.png');
  background-size: cover;
  background-position: center;
}

.innovation .top-section .right-grid,
.innovation .bottom-section .right-box {
  padding: 0;
}

.inno-para {
  font-family: 'Arial', sans-serif;
  font-size: 20px;
  color: var(--blue);
  /* font-weight: 400; */
  letter-spacing: 3px;
}

.inno-heading {
  line-height: 1.1;
  margin: 20px 0;
}

.innovation .bottom-section .inno-heading {
  width: 100%;
}

.inno-text {
  font-family: 'Arial', sans-serif;
  font-size: 20px;
  /* font-weight: 400; */
  line-height: 1.6;
  margin: 12px 0 0 0;
}


.innovation .right-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.innovation .right-grid .box {
  padding: 20px;
  text-align: center;
}

.innovation .right-grid .box .count {
  color: #003DA1;
}

.innovation .right-grid .box .texts {
  font-family: 'Arial', sans-serif;
  font-size: 20px;
  /* font-weight: 400; */
}
.innovation .bottom-section {
  display: flex;
  align-items: center;
  margin: 100px 0 0 0;
}
.innovation .bottom-section .left-box img {
  width: 100%;
  height: auto;
  display: block;
  margin-left: -35px;
}

/* ----------------------------------- TOUCH SECTION ------------------------------------- */
.touch {
  max-width: 1500px;
  padding-top: 40px;
  background-image: url('../images/footer-bg-1.png');
  background-size: cover;
  background-position: center;
}

.touch-row {
  display: flex;
  flex-wrap: wrap;
}

.touch-row .left-side {
  padding: 20px;
}

.touch-heading {
  text-align: center;
  margin: 0 0 30px 0;
}

.contact-form {
  background: #fff;
  border-radius: 21px;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 7px 400px 7px;
}

.contact-form label {
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}

.contact-form input {
  width: 100%;
  padding: 5px;
  outline: none;
  background: #F5F8FA;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
}

.touch-row .right-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 100px;
}

.tr-heading {
  font-family: 'Arial', sans-serif;
  font-size: 45px;
  /* font-weight: 700; */
  width: 50%;
}

.tr-text {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  /* font-weight: 400; */
  margin: 20px 0;
  width: 77%;
  line-height: 1.5;
}

.learn-more,
.submit-btn,
.join-us,
.btn.rounded-pill {
  font-family: 'Arial', sans-serif;
  border-radius: 38px;
  outline: none;
  border: none;
  font-size: 20px;
  /* font-weight: 700; */
  padding: 8px 10px;
  background: none;
  cursor: pointer;
  background: #003DA1;
  color: #fff;
  width: 140px;
}
.view-more {
  font-family: 'Arial', sans-serif;
  border-radius: 38px;
  outline: none;
  border: 1px solid #003DA1;
  font-size: 20px;
  /* font-weight: 400; */
  padding: 10px 20px;
  background: none;
  cursor: pointer;
  color: #000;
  width: fit-content;
  margin: 20px 0 0 0;
}
.view-more:hover, .learn-more:hover, .submit-btn:hover, .join-us:hover {
  transform: translateY(-2px);
}
  /* ---------------------------------- FOOTER SECTION ------------------------------------ */
.footer {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.footer .grid .space-y-2 p {
  font-size: 18px;
  /* font-weight: 400; */
  font-family: 'Arial', sans-serif;
  line-height: 1.8;
}
.footer-logo {
  margin-left: -12px;
}
.icon {
  font-size: 22px;
  transition: 0.3s ease;
}

.icon:hover {
  color: var(--blue);
  transform: scale(1.15);
}
.service-card h3 {
    position: relative;
    z-index: 2;
    color: white;
}

img {
    max-width: 100%;
    height: auto;
}

* {
    transition: background-color 0.35s ease, border-color 0.35s ease, color 0.2s ease;
}

h1 {
  background: linear-gradient(89.96deg, #000000 -51.28%, #003DA1 50.57%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 48px !important;
  font-family: 'Arial', sans-serif !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}
.subtext {
  font-family: 'Arial', sans-serif;
  font-size: 20px;
  /* font-weight: 400; */
  letter-spacing: 2.5px;
  color: #003DA1;
}
.paratext {
  color: #000000;
}
.icon {
  /* color: #fff; */
  font-size: 30px;
}
[data-theme="dark"] .explore {
  color: #fff;
  border: 1px solid #003DA1;
}
[data-theme="dark"] .innovation {
  background-image: url("../images/inno_bg_dark.png");
}
[data-theme="dark"] .nav-link-item {
  color: #fff;
}
[data-theme="dark"] .dropdown-panel a.active-option { color: #0091E2; }
[data-theme="dark"] .dropdown-panel a.active-option:hover { color: #fff; }
[data-theme="dark"] .subtext {
  color: #0091E2;
}
[data-theme="dark"] .paratext {
  color: #CACACA;
}
[data-theme="dark"] h1 {
  background: none;
  /* -webkit-background-clip: unset; */
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
}
[data-theme="dark"] .hidden-text {
  display: block;
}
[data-theme="dark"] .view-more {
  color: #fff;
}
[data-theme="dark"] .contact-form {
  background: #0C0C0C;
}