*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #000028;
  --navy-mid: #000038;
  --sky-blue: #00017E;
  --orange: #f97316;
  --cream: #F6F2EE;
  --lavender: #F2F2F8;
  --lavender-mid: #e5e5ff;
  --container-width: 1440px;
  --container-padding: 24px;
  
  /* Text color */
  --text-body-light: rgba(255, 255, 255, 0.65);
  --text-body-dark: rgba(0, 0, 40, 0.7);

  /* Typography */
  --h1: 64px;
  --h2: 40px;
  --h3: 24px;
  --h4: 18px;
  --body: 18px;
  --small: 15px;
  --xs: 13px;
  --tiny: 11px;

}

.section {
  width: 100%;
}

.container {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: var(--lavender);
  color: #000;
  overflow-x: hidden;
}

.navbar-top {
  display: flex;
  justify-content: space-between;
}

.logo-power-up {
  height: 3rem;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.emergency-contact {
  font-size: var(--body);
  color: white;
  padding: 5px 10px;
  border: 1px dashed var(--orange);
  text-decoration: none;
}

.btn-orange {
  background: var(--orange);
  color: white;
  font-size: var(--body);
  padding: 10px 10px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
  font-weight: 700;
}
.btn-orange:hover { opacity: 0.88; }

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: white;
  font-size: var(--body);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }

/* ── SERVICES DROPDOWN ── */
.nav-services-wrap {
  position: relative;
}

.nav-services-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  font-size: var(--body);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.nav-services-btn:hover { color: var(--orange); }
.nav-services-btn:hover .chevron-icon { stroke: var(--orange); }
.nav-services-btn.open .chevron-icon {
  transform: rotate(180deg);
  stroke: var(--orange);
}

.chevron-icon {
  stroke: white;
  transition: transform 0.25s ease, stroke 0.2s;
  flex-shrink: 0;
}

/* Sticky navbar bar — sits on top of everything */
.header-section {
  background: var(--navy);
  z-index: 200;
  position: fixed;
}

.sticky-navbar {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.0); /* hidden by default */
  transition: border-color 0.2s;
}

/* White divider shown only when dropdown is open */
.sticky-navbar.dropdown-open {
  border-bottom-color: rgba(255,255,255,0.15);
}

/* Backdrop — covers page BELOW the navbar */
.dropdown-backdrop {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 20, 0.6);
  backdrop-filter: blur(3px);
  z-index: 90;
}
.dropdown-backdrop.open { display: block; }

/* Dropdown panel — anchored just below sticky navbar */
.services-dropdown {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 150;
  width: 100%;
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  padding: 48px 250px 52px;
  animation: dropdownSlide 0.28s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.services-dropdown.open { display: block; }

@keyframes dropdownSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2px;
  max-width: 1040px;
}

/* Left: service list */
.dropdown-services-list {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding-right: 2px;
}

.dropdown-service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: var(--body);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  border-left: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  gap: 12px;
}

.dropdown-service-item:hover {
  background: rgba(255,255,255,0.07);
  color: white;
  border-left-color: var(--orange);
}
.dropdown-service-item.active {
  background: rgba(255,255,255,0.12);
  color: white;
  border-left-color: var(--orange);
}

.dropdown-service-item .svc-arrow {
  opacity: 0;
  transition: opacity 0.15s, transform 0.15s;
  flex-shrink: 0;
}

.dropdown-service-item:hover .svc-arrow,
.dropdown-service-item.active .svc-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* Right: preview panel */
.dropdown-preview {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
}

.dropdown-preview-img {
  width: 100%;
  height: 220px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.dropdown-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dropdown-preview-tag {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}

.dropdown-preview-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  margin-top: 2px;
}

.dropdown-preview-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 520px;
}

.dropdown-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 2px;
  width: fit-content;
  transition: gap 0.2s, color 0.2s;
}
.dropdown-learn-more:hover { gap: 12px; color: var(--orange); }


/* ── NAVBAR & HERO ── */
.hero-section {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
  min-height: 100vh;
}

.hero-content {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 700px;
  width: 100%;
}

.hero-section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 10%, rgba(0, 0, 40, 0.03) 100%);
  z-index: 1;
}

.video-wrapper {
  position: absolute;
  inset: 50px 0 0 0;
  overflow: hidden;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  backdrop-filter: blur(4px);

}

.hero-overlay-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  z-index: 2; /* above the overlay */
  position: relative;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.hero-headline {
  font-weight: 300;
  font-size: var(--h1);
  color: white;
  line-height: 1.05;
  text-align: left;
  letter-spacing: -1.5px;
}

.hero-headline strong {
  font-weight: 700;
  color: var(--orange);
}

.hero-sub {
  font-size: var(--body);
  color: var(--text-body-light);
  line-height: 1.8;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,0.6);
  transition: background 0.2s;
}
.play-btn:hover { background: rgba(255,255,255,0.28); }

.play-btn svg { margin-left: 4px; }

/* ── PROBLEMS ── */
.problems-section {
  background: var(--lavender);
}

.problems-container {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section-header {
  display: grid;
  grid-template-columns: 17rem 1fr;
}

.section-header-intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  font-size: var(--h2);
  font-weight: 300;
  color: var(--navy);
}

.section-desc {
  font-size: var(--body);
  color: var(--text-body-dark);
  line-height: 1.6;
}

.problems-layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.problems-tabs {
  width: 241px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.tab-item {
  padding: 10px;
  font-size: var(--body);
  color: var(--navy);
  border-left: 2px solid rgba(0,0,0,0.18);
  min-height: 66px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  position: relative;
  box-shadow: 0 -0.5px 0 0 rgba(0, 0, 0, 0.18);
}

.tab-item.active {
  background: var(--lavender-mid);
  border-left-color: var(--navy);
}

.tab-item:hover:not(.active) { background: rgba(0,0,40,0.04); }

.tab-label { pointer-events: none; }

/* Progress bar track */
.tab-progress-track {
  height: 2px;
  background: rgba(0,0,40,0.12);
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  display: none;
}

.tab-item.active .tab-progress-track { display: block; }

.tab-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--orange);
  border-radius: 2px;
  transition: width linear;
}

/* Pause/play button below tabs */
.tabs-controls {
  display: flex;
  align-items: center;
  padding: 10px;
  margin-top: 4px;
}

.pause-play-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,40,0.35);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.pause-play-btn:hover {
  border-color: var(--navy);
  background: var(--lavender-mid);
}

/* ── RIGHT: content panel ── */
.problems-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/* Image area */
.problems-img {
  height: 400px;
  object-fit: cover;
  transition: opacity 0.2s ease;
}
.problems-img.fading { opacity: 0; }

/* Text below image */
.prob-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: opacity 0.2s ease;
}
.prob-text.fading { opacity: 0; }


.content-title {
  font-weight: 700;
  font-size: var(--h3);
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}

.content-body {
  font-size: var(--body);
  color: var(--text-body-dark);
}

.prob-body {
  font-size: var(--body);
  color: var(--text-body-dark);
  line-height: 1.8;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--body);
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
  font-weight: 700;
  text-decoration: none;
  padding-bottom: 2px;
  width: fit-content;
  margin-top: 4px;
  transition: gap 0.2s, color 0.2s, border-color 0.2s;
}
.link:hover { gap: 12px; }

/* ── OUR SOLUTIONS ── */
.solutions-section {
  background: white;
}

.solutions-container {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.solutions-tabs {
  display: flex;
  border-bottom: 1px solid var(--orange);
}

.sol-tab {
  padding: 5px 20px;
  font-size: var(--body);
  cursor: pointer;
  color: var(--text-body-dark);
  border-bottom: 2px solid transparent;
}

.sol-tab.active {
  border-bottom-color: var(--orange);
  color: var(--navy);
}

.sol-tab:hover:not(.active) { color: var(--orange); }

.sol-card {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.sol-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.18s ease;
}

.sol-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 40, 0.85) 30%, rgba(0, 0, 40, 0.1) 100%);
  z-index: 1;
}

.sol-details {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* text sits at the bottom */
  padding: 40px;
  gap: 12px;
  transition: opacity 0.18s ease;
}

.solution-title {
  color: white;
  font-size: var(--h3); /* or whatever your scale uses */
  font-weight: 600;
}

.solution-body {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--body);
  line-height: 1.7;
  max-width: 480px;
}


/* ── WHY TRUST US ── */
.trust-section {
  background: var(--navy);
  padding: 50px 0;
}

.trust-inner {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.trust-title {
  font-size: var(--h2);
  font-weight: 300;
  color: white;
}

.trust-card {
  position: relative;
  height: 574px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.trust-card-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.trust-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #000028, rgba(0,0,40,0.03));
}

.trust-card-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
  max-width: 40%;
}

.trust-card-title {
  font-weight: 700;
  font-size: var(--h3);
  color: white;
  margin-bottom: 10px;
}

.trust-card-body {
  font-size: var(--body);
  color: var(--text-body-light);
  line-height: 1.65;
}

/* Trust slider controls */
.trust-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.trust-pause-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.trust-pause-btn:hover { border-color: white; background: rgba(255,255,255,0.08); }

.trust-dots {
  display: flex;
  gap: 16px;
  align-items: center;
}

.trust-dot {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  align-items: flex-start;
}

.trust-dot-label {
  font-size: var(--tiny);
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  transition: color 0.2s;
  user-select: none;
}

.trust-dot.active .trust-dot-label { color: rgba(255,255,255,0.9); }

.trust-dot-track {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  overflow: hidden;
}

.trust-dot-bar {
  height: 100%;
  width: 0%;
  background: white;
  border-radius: 2px;
}


.industry-section {
  background: var(--navy);
}

/* ── Sticky header ──
   JS switches this to position:fixed at the right moment.
   We keep it in normal flow initially so the section
   occupies the right amount of space.                    */
.ind-header {
  position: sticky;
  padding: 50px 0;
  z-index: 20;
  background: var(--sky-blue);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ind-header-inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.ind-header-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: var(--tiny);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}

.ind-tag-line {
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.ind-header-title {
  font-weight: 300;
  font-size: var(--h2);
  color: white;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.ind-header-title strong { font-weight: 700; }

.ind-header-sub {
  font-size: var(--body);
  color: rgba(255,255,255,0.5);
  color: var(--text-body-light);
  line-height: 1.75;
}

.ind-rows {
  display: flex;
  flex-direction: column;
}

/* ── Individual rows ── */
.ind-row {
  position: relative;
}

.ind-row--dark  { background: var(--navy); }
.ind-row--light { background: var(--lavender); }
/* .ind-row--last  { border-bottom: none; } */

/* Row inner grid */
.ind-row-content {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 50px 0;
}

/* ── Text block ── */
.ind-row-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ind-row-label {
  font-size: var(--tiny);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ind-row-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
.ind-row-label--dark { color: var(--orange); }

.ind-row-headline {
  /* font-family: 'IBM Plex Sans', sans-serif; */
  font-weight: 300;
  font-size: var(--h3);
  color: white;
}
.ind-row-headline strong { font-weight: 700; }
.ind-row-headline--dark { color: var(--navy); }

.ind-row-body {
  font-size: var(--body);
  color: var(--text-body-light);
  line-height: 1.8;
}
.ind-row-body--dark { color: var(--text-body-dark); }

.ind-card-image {
  width: 100%;
}

/* ── FINAL CTA ── */
.cta-section {
  background: var(--lavender);
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.cta-headline {
  font-weight: 300;
  font-size: var(--h2);
  color: var(--navy);
  line-height: 1.05;
}

.cta-sub {
  font-size: var(--body);
  color: var(--text-body-dark);
}

/* ── FOOTER ── */
.footer-section {
  background: var(--navy);
}

.footer-container {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand {
 font-size: var(--h3);
  color: white;
}

.footer-brand strong { font-weight: 700; }

.footer-tagline {
  font-weight: 300;
  font-size: var(--body);
  color: white;
}

.footer-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0;
  font-weight: 300;
  font-size: var(--body);
  color: white;
  line-height: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-weight: 700 !important;
  font-size: var(--h3) !important;
  padding-bottom: 5px;
  color: white;
}

.footer-col a, .footer-col p:not(.footer-col-title) {
  font-weight: 300;
  font-size: var(--body);
  text-decoration: none;
  display: block;
  color: white;

}

.footer-col a:hover { color: var(--orange); }

.footer-big-logo {
  height: 20rem;
  opacity: 0.1;
  margin: 40px 0;
}

.footer-copyright {
  font-size: var(--body);
  color: var(--text-body-light);
  border-top: 1px solid #ffffff80;  
  padding: 20px 0;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Placeholder images for sections without assets */
.img-placeholder {
  background: linear-gradient(135deg, #1a1a4e 0%, #2d2d7a 50%, #1a1a4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
}
