/* ============================================================================
   RESET AND GLOBAL STYLES
   ========================================================================== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  line-height: inherit;
}

html {
  scroll-behavior: smooth;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}

*, ::before, ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

abbr:where([title]) {
  text-decoration: underline dotted;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: inherit;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp, pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button, select {
  text-transform: none;
}

button, input:where([type='button']), input:where([type='reset']), input:where([type='submit']) {
  -webkit-appearance: button;
  appearance: button;
  background-color: transparent;
  background-image: none;
}

:-moz-focusring {
  outline: auto;
}

:-moz-ui-invalid {
  box-shadow: none;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol, ul, menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

dialog {
  padding: 0;
}

textarea {
  resize: vertical;
}

input::placeholder, textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button, [role="button"] {
  cursor: pointer;
}

:disabled {
  cursor: default;
}

img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
}

img, video {
  max-width: 100%;
  height: auto;
}

[hidden] {
  display: none;
}


/* ============================================================================
   CSS VARIABLES - ROOT COLORS AND TYPOGRAPHY
   ========================================================================== */

:root {
  --gjs-t-color-primary: #004191;
  --gjs-t-color-secondary: #2D3748;
  --gjs-t-color-accent: #F27420;
  --gjs-t-color-success: #1F8A5B;
  --gjs-t-color-warning: #B7791F;
  --gjs-t-color-error: #C53030;
}


/* ============================================================================
   TYPOGRAPHY STYLES
   ========================================================================== */

.gjs-t-body {
  background-color: #FFFFFF;
  color: #2D3748;
  font-size: 16px;
  line-height: 1.75rem;
}

.gjs-t-h1 {
  color: #004191;
  font-size: 3.5rem;
  line-height: 1.1;
}

.gjs-t-h2 {
  color: #004191;
  font-size: 2.25rem;
  line-height: 1.2;
}

.gjs-t-button {
  background-color: #004191;
  color: #FFFFFF;
  border-radius: 4px;
}

.gjs-t-link {
  color: #004191;
  text-decoration: none;
}

.font-ui {
  font-family: 'Inter', sans-serif;
}

/* Eyebrow style for section headers */
.eyebrow {
  display: block;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: #F27420;
}


/* ============================================================================
   UTILITY STYLES
   ========================================================================== */

.gjs-t-border {
  border-radius: 4px;
  border-color: #D7E3F4;
}

.section-shell {
  border: 1px solid #D7E3F4;
  border-radius: 4px;
}

.soft-card {
  border: 1px solid #D7E3F4;
  border-radius: 4px;
  background: #FFFFFF;
}

.cls-x8yjr6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.text-primary {
  color: #004191 !important;
}

.text-muted {
  color: #6b7280;
}


/* ============================================================================
   BUTTON STYLES
   ========================================================================== */

.accent-button {
  background: #F27420;
  color: #FFFFFF;
  border: 1px solid #F27420;
  border-radius: 4px;
  padding: 0.875rem 1.5rem;
  font-size: 15px;
  font-weight: 600;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.accent-button:hover {
  background: #db651a;
  border-color: #db651a;
}

.primary-button {
  background: #004191;
  color: #FFFFFF;
  border: 1px solid #004191;
  border-radius: 4px;
  padding: 0.875rem 1.5rem;
  font-size: 15px;
  font-weight: 600;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.primary-button:hover {
  background: #003474;
  border-color: #003474;
}

.ghost-link {
  color: #004191;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.ghost-link:hover {
  color: #F27420;
}

.outline-hover:hover {
  outline: 2px solid #C9DCF8;
  outline-offset: 2px;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  font-size: 15px;
  font-weight: 600;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ICG Detail Button - used for service cards */
.btn-icg-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  background-color: transparent;
  color: #004191;
  border: 1.5px solid #004191;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: auto;
}

.btn-icg-detail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #004191;
  transition: all 1.0s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.btn-icg-detail:hover {
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 65, 145, 0.2);
}

.btn-icg-detail:hover::before {
  width: 100%;
}

.btn-icg-detail:hover .arrow-icon {
  transform: translateX(5px);
  stroke: #ffffff;
}

.arrow-icon {
  transition: transform 0.4s ease;
}


/* ============================================================================
   LAYOUT WRAPPER & PAGE STRUCTURE
   ========================================================================== */

.page-wrapper {
  min-height: 100vh;
  background-color: rgb(255 255 255 / 1);
  color: rgb(45 55 72 / 1);
}


/* ============================================================================
   NAVIGATION SECTION
   ========================================================================== */

.navbar-section {
  position: relative;
  width: 100%;
  border-bottom-width: 1px;
  border-color: rgb(215 227 244 / 1);
  background-color: rgb(230 240 255 / 1);
  padding: 0;
  margin: 0;
}

.navbar-container {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  max-width: 80rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo {
  height: auto;
  width: auto;
  max-width: 30%;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #004191;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 768px) {
  .navbar-logo {
    max-width: 120px;
  }
}

.logo-placeholder {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border-width: 1px;
  border-color: rgb(215 227 244 / 1);
  background-color: rgb(230 240 255 / 1);
  font-size: 18px;
  font-weight: 700;
  color: rgb(0 65 145 / 1);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25rem;
  color: rgb(0 65 145 / 1);
}

.brand-subtitle {
  font-size: 12px;
  line-height: 1rem;
  color: rgb(91 107 131 / 1);
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navigation-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 15px;
  font-weight: 500;
}

.nav-link {
  border-radius: 4px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  color: rgb(45 55 72 / 1);
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.nav-link:hover {
  color: rgb(0 65 145 / 1);
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}


/* ============================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  width: 100%;
  background-color: rgb(255 255 255 / 1);
}

.hero-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero-panel {
  overflow: visible;
}

.hero-overlay {
  background: linear-gradient(135deg, #0a2448 0%, #004191 55%, #0b3d85 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 1px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-text-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: rgb(247 176 122 / 1);
}

.hero-title {
  max-width: 42rem;
  font-weight: 600;
  color: rgb(255 255 255 / 1);
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.5;
  color: #4a5568;
  max-width: 90%;
  margin-bottom: 2rem;
  word-wrap: break-word;
  white-space: normal;
  overflow: hidden;
  border-right: 3px solid #004191;
  display: inline-block;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.primary-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  font-size: 15px;
  font-weight: 600;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.secondary-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border-width: 1px;
  border-color: rgb(255 255 255 / 0.3);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  font-size: 15px;
  font-weight: 500;
  color: rgb(255 255 255 / 1);
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.secondary-action-link:hover {
  border-color: rgb(242 116 32 / 1);
  color: rgb(247 176 122 / 1);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1rem;
}

.metric-card {
  border-radius: 4px;
  border-width: 1px;
  border-color: rgb(255 255 255 / 0.15);
  background-color: rgb(255 255 255 / 0.05);
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.metric-value {
  font-size: 24px;
  font-weight: 600;
  color: rgb(255 255 255 / 1);
}

.metric-label {
  font-size: 13px;
  line-height: 1.5rem;
  color: rgb(221 231 246 / 1);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0px;
  background-image: linear-gradient(to top, rgb(6 27 55 / 0.7), rgb(6 27 55 / 0.2), transparent);
}

.hero-floating-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  border-radius: 4px;
  border-width: 1px;
  border-color: rgb(255 255 255 / 0.2);
  background-color: rgb(255 255 255 / 0.95);
  padding: 1.5rem;
  color: rgb(45 55 72 / 1);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.floating-card-header {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.floating-card-icon {
  height: 1.25rem;
  width: 1.25rem;
}

.floating-card-title {
  font-size: 15px;
  font-weight: 600;
  color: rgb(0 65 145 / 1);
}

.floating-card-text {
  font-size: 14px;
  line-height: 1.75rem;
  color: rgb(74 85 104 / 1);
}


/* ============================================================================
   SERVICES SECTION
   ========================================================================== */

.services-carousel-section {
  background: linear-gradient(135deg, #004191 0%, #002b60 100%);
  min-height: 500px;
  display: flex;
  align-items: center;
  color: white;
  padding: 4rem 2rem;
}

.services-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  width: 100%;
}

/* Service card styling */
.service-card {
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.icon-wrapper {
  height: 70px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.transition-icon {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.service-card:hover .transition-icon {
  transform: scale(1.15) rotate(8deg);
  filter: brightness(1.1);
}


/* ============================================================================
   INDUSTRIES SECTION
   ========================================================================== */

.industries-section {
  width: 100%;
  background-color: rgb(230 240 255 / 1);
}

.industries-container {
  margin-left: auto;
  margin-right: auto;
  display: grid;
  max-width: 80rem;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.industries-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.industries-eyebrow {
  font-size: 30px;
  font-weight: 600;
  color: rgb(242 116 32 / 1);
}

.industries-title {
  font-weight: 600;
}

.industries-description {
  font-size: 17px;
  line-height: 2rem;
  color: rgb(81 96 116 / 1);
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.industry-tag {
  border-radius: 4px;
  border-width: 1px;
  border-color: rgb(200 217 242 / 1);
  background-color: rgb(255 255 255 / 1);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 14px;
  font-weight: 500;
  color: rgb(0 65 145 / 1);
}

.industries-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.75rem;
}

.industries-panel-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom-width: 1px;
  border-color: rgb(226 234 245 / 1);
  padding-bottom: 1rem;
}

.industries-panel-icon {
  height: 1.25rem;
  width: 1.25rem;
}

.industries-panel-title {
  font-size: 20px;
  font-weight: 600;
  color: rgb(0 65 145 / 1);
}

.industries-checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist-item {
  display: flex;
  gap: 0.75rem;
}

.checklist-bullet {
  margin-top: 0.25rem;
  height: 0.625rem;
  width: 0.625rem;
  border-radius: 9999px;
  background-color: rgb(242 116 32 / 1);
  flex-shrink: 0;
}

.checklist-text {
  font-size: 15px;
  line-height: 2rem;
  color: rgb(81 96 116 / 1);
}


/* ============================================================================
   INSIGHTS SECTION
   ========================================================================== */

.insights-section {
  width: 100%;
  background-color: rgb(255 255 255 / 1);
}

.insights-container {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  max-width: 80rem;
  flex-direction: column;
  gap: 2.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.insights-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.insights-intro-left {
  display: flex;
  max-width: 48rem;
  flex-direction: column;
  gap: 1rem;
}

.insights-eyebrow {
  font-size: 30px;
  font-weight: 600;
  color: rgb(242 116 32 / 1);
}

.insights-title {
  font-weight: 600;
}

.insights-description {
  font-size: 17px;
  line-height: 2rem;
  color: rgb(81 96 116 / 1);
}

.insights-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 4px;
  border-width: 1px;
  border-color: rgb(215 227 244 / 1);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 14px;
  font-weight: 600;
  color: rgb(0 65 145 / 1);
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.insights-all-link:hover {
  border-color: rgb(242 116 32 / 1);
  color: rgb(242 116 32 / 1);
}

.insights-all-icon {
  height: 1rem;
  width: 1rem;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.insight-card {
  overflow: hidden;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.insight-image {
  height: 14rem;
  width: 100%;
  object-fit: cover;
}

.insight-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

.insight-category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgb(242 116 32 / 1);
}

.insight-title {
  font-size: 21px;
  font-weight: 600;
  line-height: 2rem;
  color: rgb(0 65 145 / 1);
}

.insight-excerpt {
  font-size: 15px;
  line-height: 2rem;
  color: rgb(90 103 122 / 1);
}

.insight-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  font-weight: 600;
  color: rgb(0 65 145 / 1);
}

.insight-link-icon {
  height: 1rem;
  width: 1rem;
}


/* ============================================================================
   TEAM SECTION
   ========================================================================== */

.team-section-wrap {
  gap: 2rem;
}

.team-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #D7E3F4;
}

.team-header-copy {
  display: flex;
  max-width: 44rem;
  flex-direction: column;
  gap: 1rem;
}

.team-kicker {
  font-size: 30px;
  font-weight: 600;
  color: var(--gjs-t-color-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-title {
  font-weight: 600;
  color: var(--gjs-t-color-primary);
}

.team-description {
  font-size: 17px;
  line-height: 2rem;
  color: rgb(81 96 116 / 1);
}

.team-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.team-control-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid #D7E3F4;
  border-radius: 4px;
  background: #fff;
  transition: all 0.15s ease;
  color: var(--gjs-t-color-primary);
}

.team-control-btn:hover {
  border-color: var(--gjs-t-color-accent);
  color: var(--gjs-t-color-accent);
  outline: 2px solid #C9DCF8;
  outline-offset: 2px;
}

.team-carousel {
  overflow: hidden;
  border: 1px solid #D7E3F4;
  border-radius: 4px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.team-carousel-shell {
  position: relative;
}

.team-track {
  display: flex;
  transition: transform 2s ease;
  will-change: transform;
}

.team-slide {
  min-width: 100%;
  padding: 2rem;
}

.team-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.team-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #D7E3F4;
  background: #E6F0FF;
  min-height: 420px;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  background: rgba(10, 36, 72, 0.78);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.team-photo-badge-icon {
  width: 1rem;
  height: 1rem;
}

.team-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.team-role {
  display: inline-flex;
  width: max-content;
  padding: 0.4rem 0.75rem;
  border: 1px solid #D7E3F4;
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gjs-t-color-primary);
}

.team-name {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--gjs-t-color-primary);
}

.team-bio {
  font-size: 16px;
  line-height: 1.9rem;
  color: #516074;
  max-width: 40rem;
}

.team-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 0.5rem;
}

.team-meta-card {
  padding: 1rem;
  border: 1px solid #D7E3F4;
  border-radius: 4px;
  background: #fff;
}

.team-meta-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gjs-t-color-accent);
}

.team-meta-text {
  margin-top: 0.35rem;
  font-size: 14px;
  line-height: 1.7rem;
  color: #516074;
}

.team-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0 0 1.5rem;
}

.team-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  border: 1px solid #bfd0e8;
  background: #fff;
  transition: all 0.15s ease;
}

.team-dot.is-active {
  background: var(--gjs-t-color-accent);
  border-color: var(--gjs-t-color-accent);
}

.team-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.25rem;
  font-size: 14px;
  font-weight: 600;
  color: var(--gjs-t-color-primary);
}

.team-cta-icon {
  width: 1rem;
  height: 1rem;
}

.team-dots-clean {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0 0 1.5rem;
  border-top: 1px solid #E6EEF8;
  margin-top: 1rem;
}

.team-dot-clean {
  width: 2.5rem;
  height: 0.42rem;
  border-radius: 999px;
  border: 1px solid #D7E3F4;
  background: #FFFFFF;
  opacity: 0.9;
  transition: all 0.2s ease;
  box-shadow: inset 0 0 0 1px rgba(0, 65, 145, 0.02);
}

.team-dot-clean:hover {
  border-color: var(--gjs-t-color-accent);
  background: #FFF4EC;
  outline: 2px solid #C9DCF8;
  outline-offset: 2px;
}

.team-dot-clean.is-active {
  width: 3.25rem;
  background: linear-gradient(90deg, var(--gjs-t-color-primary) 0%, var(--gjs-t-color-accent) 100%);
  border-color: transparent;
  box-shadow: 0 4px 10px rgba(0, 65, 145, 0.12);
}


/* ============================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-section {
  width: 100%;
  background-color: rgb(230 240 255 / 1);
}

.contact-container {
  margin-left: auto;
  margin-right: auto;
  display: grid;
  max-width: 80rem;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-eyebrow {
  font-size: 30px;
  font-weight: 600;
  color: rgb(242 116 32 / 1);
}

.contact-title {
  font-weight: 600;
}

.contact-description {
  max-width: 42rem;
  font-size: 17px;
  line-height: 2rem;
  color: rgb(81 96 116 / 1);
}

.contact-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

/* Highlight card styling - used in service cards and contact section */
.highlight-card {
  padding: 1.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-color: #e5e7eb;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 65, 145, 0.08), transparent);
  transition: 0.6s;
}

.highlight-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.15) !important;
  border-color: #004191;
}

.highlight-card:hover::before {
  left: 100%;
}

.highlight-card:hover .transition-icon {
  transform: scale(1.15) rotate(8deg);
  filter: brightness(1.1);
}

.highlight-title {
  margin-bottom: 0.5rem;
  font-size: 16px;
  font-weight: 600;
  color: rgb(0 65 145 / 1);
}

.highlight-text {
  font-size: 14px;
  line-height: 1.75rem;
  color: rgb(90 103 122 / 1);
}

.contact-form-card {
  padding: 1.75rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-title {
  font-size: 22px;
  font-weight: 600;
  color: rgb(0 65 145 / 1);
}

.form-subtitle {
  font-size: 14px;
  line-height: 1.75rem;
  color: rgb(90 103 122 / 1);
}

.form-field-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: rgb(45 55 72 / 1);
}

/* Form Input Styles */
.text-input,
.email-input,
.phone-input,
.textarea-input {
  border-radius: 4px;
  border-width: 1px;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 15px;
  color: rgb(45 55 72 / 1);
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.text-input::placeholder,
.email-input::placeholder,
.phone-input::placeholder,
.textarea-input::placeholder {
  color: rgb(138 148 166 / 1);
}

.text-input:focus,
.email-input:focus,
.phone-input:focus,
.textarea-input:focus {
  border-color: rgb(0 65 145 / 1);
  box-shadow: 0 0 0 0px #fff, 0 0 0 calc(2px + 0px) rgb(201 220 248 / 1), 0 0 #0000;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 4px;
  border-width: 1px;
  border-color: rgb(226 234 245 / 1);
  padding: 1rem;
}

.checkbox-input {
  margin-top: 0.25rem;
  height: 1rem;
  width: 1rem;
  border-radius: 0.25rem;
  border-color: rgb(191 208 232 / 1);
  color: rgb(0 65 145 / 1);
}

.checkbox-text {
  font-size: 13px;
  line-height: 1.75rem;
  color: rgb(90 103 122 / 1);
}


/* ============================================================================
   FOOTER SECTION
   ========================================================================== */

.footer-section {
  width: 100%;
  border-top-width: 1px;
  border-color: rgb(215 227 244 / 1);
  background-color: rgb(255 255 255 / 1);
}

.footer-container {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  max-width: 80rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand-name {
  font-size: 15px;
  font-weight: 600;
  color: rgb(0 65 145 / 1);
}

.footer-text {
  font-size: 14px;
  line-height: 1.75rem;
  color: rgb(90 103 122 / 1);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 14px;
}

.footer-link {
  color: rgb(45 55 72 / 1);
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover {
  color: rgb(0 65 145 / 1);
}


/* ============================================================================
   ANIMATIONS
   ========================================================================== */

/* Typing effect animation */
.typing-animation {
  display: inline-block;
  overflow: hidden;
  border-right: 3px solid #F27420;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 0.15em;
  animation: typing 4.5s steps(40, end), blink-caret .75s step-end infinite;
  max-width: fit-content;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #F27420; }
}

@keyframes fadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}


/* ============================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablet breakpoint (max-width: 992px) */
@media (max-width: 992px) {
  .gjs-t-h1 {
    font-size: 2.7rem;
    line-height: 1.15;
  }

  .gjs-t-h2 {
    font-size: 1.9rem;
    line-height: 1.25;
  }

  .navbar-container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .navbar-right {
    gap: 1.25rem;
  }

  .navigation-menu {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }

  .hero-content {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    min-width: 0;
  }

  .hero-visual {
    min-height: 420px;
  }

  .services-container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .services-carousel-section {
    padding: 3rem 1.25rem;
  }

  .industries-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .insights-container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .insights-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .insights-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .contact-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .team-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .team-photo-wrap {
    min-height: 360px;
  }

  .team-meta {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* Mobile breakpoint (max-width: 480px) */
@media (max-width: 480px) {
  .gjs-t-h1 {
    font-size: 2.1rem;
    line-height: 1.2;
  }

  .gjs-t-h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .navbar-container {
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar-right {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(230, 240, 255, 0.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1rem;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
  }

  .navbar-right.active {
    display: flex;
  }

  .navigation-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
  }

  .nav-link {
    width: 100%;
    display: inline-flex;
    padding: 0.75rem 0.75rem;
  }

  .contact-button {
    width: 100%;
    justify-content: center;
  }

  .navbar-logo {
    max-width: 120px;
  }

  .hero-container {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .hero-content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-metrics {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-floating-card {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1rem;
  }

  .services-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .services-carousel-section {
    padding: 2.5rem 1rem;
  }

  .industries-container {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .insights-container {
    gap: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .contact-container {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .contact-highlights {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .contact-form-card {
    padding: 1.25rem;
  }

  .form-field-group {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .footer-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .team-slide {
    padding: 1rem;
  }

  .team-photo-wrap {
    min-height: 280px;
  }

  .team-name {
    font-size: 1.6rem;
  }

  .team-controls {
    width: 100%;
    justify-content: flex-start;
  }

  /* Mobile typing animation adjustments */
  .typing-animation {
    white-space: normal;
    border-right: none;
    animation: fadeIn 4s ease-in;
  }

  .hero-description {
    max-width: 100%;
    font-size: 1.05rem;
  }
}
