/* ============================================================
   Beyond Data — Global Stylesheet
   ============================================================ */

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

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #e8edf5;
  background: #0b1628;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #00c2ff;
  text-decoration: none;
}

:root {
  --navy: #0b1628;
  --navy-mid: #112040;
  --navy-card: #152848;
  --blue: #1a5fb4;
  --blue-light: #2979d4;
  --accent: #00c2ff;
  --text: #e8edf5;
  --text-muted: #8fa3bf;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 10px;
}

/* ============================================================
   NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 22, 40, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  padding: 7px 13px;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.18s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}
.nav-cta {
  background: #00c2ff;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.18s;
}
.nav-cta:hover {
  background: #2470cc;
  color: #fff;
}

/* ============================================================
   HAMBURGER & MOBILE NAV ANIMATION
   ============================================================ */
.hamburger {
  display: none; /* Hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  transform-origin: center; /* Crucial for clean rotation */
}

/* 
   Animation Logic:
   Top line: Rotates 45deg and moves down to center
   Middle line: Fades out and shrinks
   Bottom line: Rotates -45deg and moves up to center
*/

/* State: OPEN (X) */
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* ============================================================
   DROPDOWN FIX - Company Menu (HOVERABLE LINKS)
   ============================================================ */
.dropdown {
  position: relative;
}

.dropbtn {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  padding: 7px 13px;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.18s;
  background: none;
  border: none;
  font-family: inherit;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropbtn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07); /* This now matches .nav-links a:hover */
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  z-index: 999;
  min-width: 140px;
}

/* Invisible bridge to keep dropdown open when moving mouse down */
.dropdown-content::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.dropdown-content-inner {
  background: rgba(11, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-top: 4px;
}

.dropdown-content a {
  display: block;
  padding: 7px 13px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  white-space: nowrap;
  border-radius: 7px;
  transition: all 0.18s;
  margin: 4px;
}

.dropdown-content a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
  display: block;
}

#partners {
  scroll-margin-top: 64px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 30px 0;
}

.section-alt {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.text-center {
  text-align: center;
}

.sec-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 194, 255, 0.1);
  border: 1px solid rgba(0, 194, 255, 0.2);
  padding: 4px 13px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.sec-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.25;
}
.sec-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.65;
}
.sec-sub.center {
  margin: 0 auto;
}

/* ============================================================
  BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 26px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.btn-p {
  background: #00c2ff;;
  color: #000;
}
.btn-p:hover {
  background: #2470cc;
  color: #fff;
  transform: translateY(-1px);
}
.btn-o {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-o:hover {
  background: rgba(0, 194, 255, 0.1);
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.22s;
}
.card:hover {
  border-color: rgba(0, 194, 255, 0.2);
  transform: translateY(-3px);
}
.card-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 194, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) saturate(100%) invert(55%) sepia(80%) saturate(400%)
    hue-rotate(170deg) brightness(105%);
}

.solutions-card-title {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}

.solutions-card-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   HERO SLIDER  (new blur-fade carousel)
   ============================================================ */
.hero-slider-section {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}

/* Each slide is absolutely stacked; opacity + blur transition creates the blur-fade */
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  filter: blur(18px);
  transition:
    opacity 1.8s ease,
    filter 1.8s ease;
  pointer-events: none;
  z-index: 0;
}
.hero-slide.active {
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
  z-index: 1;
}
/* Background image layer inside each slide */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  /* Subtle scale on active for a living-background feel */
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}
/* Dark overlay so text stays legible over any photo */
/* Update this section in styles.css */

#slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(11, 22, 40, 1) 0%,
    rgba(11, 22, 40, 0.7) 50%,
    rgba(11, 22, 40, 0) 85%
  );
  z-index: 1;
}

#slide-bg {
  background-position: right center !important;
}

.slide-description {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.slide-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  max-width: 600px;
  margin-bottom: 18px;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

/* Content layer inside each slide */
.hero-slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
/* Dot navigation */
.hero-slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 0;
  transition:
    background 0.3s,
    transform 0.3s;
}
.hero-slider-dots button.active {
  background: var(--accent);
  transform: scale(1.35);
}
/* Arrow navigation */
.hero-slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
}
.hero-slider-arrows button {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(11, 22, 40, 0.55);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.hero-slider-arrows button:hover {
  background: rgba(0, 194, 255, 0.2);
  border-color: var(--accent);
}

/* ============================================================
   ORIGINAL HERO (kept intact, used when no slider image set)
   ============================================================ */
.hero {
  padding: 100px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  background: rgba(0, 194, 255, 0.1);
  border: 1px solid rgba(0, 194, 255, 0.2);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  max-width: 600px;
  margin-bottom: 18px;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.hero h1 span {
  color: var(--accent);
}
.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-num {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-num em {
  color: var(--accent);
  font-style: normal;
}
.stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
}
.trust-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.trust-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-logos {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-width: 0;
}
.trust-track {
  display: flex;
  gap: 40px;
  align-items: center;
  width: max-content;
  animation: slide-logos 28s linear infinite;
}
.trust-track img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.45;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

#partners-3 {
  height: 44px;
}
#partners-4 {
  height: 48px;
}
#partners-6 {
  height: 38px;
}
#partners-7 {
  height: 40px;
}
#partners-8 {
  height: 44px;
}
#partners-9 {
  height: 14px;
}

.trust-track img:hover {
  opacity: 1;
}

@keyframes slide-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   SOLUTIONS GRID
   ============================================================ */
.sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px;
}
.sol-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.22s;
}
.sol-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #1a5fb4, #00c2ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.sol-card:hover {
  border-color: rgba(0, 194, 255, 0.2);
  transform: translateY(-3px);
}
.sol-card:hover::after {
  transform: scaleX(1);
}
.sol-num {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: monospace;
  letter-spacing: 0.06em;
}
.sol-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-top: 14px;
  cursor: pointer;
}

/* ============================================================
   STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 44px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 194, 255, 0.4),
    transparent
  );
}
.step {
  text-align: center;
  padding: 0 16px;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-card);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  position: relative;
  z-index: 1;
}
.step h4 {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 5px;
}
.step p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(
    135deg,
    var(--navy-mid) 0%,
    rgba(26, 95, 180, 0.18) 100%
  );
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.cta-band p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  padding: 100px 0 64px;
  background: linear-gradient(
    180deg,
    rgba(17, 32, 64, 0.9) 0%,
    var(--navy) 100%
  );
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ============================================================
   ABOUT — background image only on the content section
   ============================================================ */
.about-section-bg {
  position: relative;
  overflow: hidden;
}

.about-section-bg .about-page-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: 0;
  animation: aboutBgReveal 1.8s ease forwards;
}

@keyframes aboutBgReveal {
  from {
    filter: blur(18px);
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
  }
}

.about-section-bg .about-page-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--navy) 0%,
    var(--navy) 25%,
    rgba(11, 22, 40, 0.92) 45%,
    rgba(11, 22, 40, 0.55) 65%,
    rgba(11, 22, 40, 0.1) 100%
  );
  z-index: 1;
}

.about-section-bg .section {
  position: relative;
  z-index: 2;
  background: transparent;
}

.timeline {
  padding-left: 24px;
  border-left: 1px solid rgba(0, 194, 255, 0.25);
}
.tl-item {
  position: relative;
  padding-bottom: 28px;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--navy);
}
.tl-year {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 3px;
}
.tl-item h4 {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 3px;
}
.tl-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}
.val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.val-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.val-ico {
  font-size: 20px;
  margin-bottom: 10px;
}
.val-card h4 {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}
.val-card p {
  font-size: 11px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .about-page-bg {
    background-position: right top;
    background-attachment: scroll;
  }
  .about-page-fade {
    background: linear-gradient(
      to right,
      var(--navy) 0%,
      rgba(11, 22, 40, 0.95) 50%,
      rgba(11, 22, 40, 0.7) 100%
    );
  }
}

/* ============================================================
   SOLUTIONS PAGE
   ============================================================ */
.srv-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}
.srv-block:last-child {
  border-bottom: none;
}
.srv-block.rev {
  direction: rtl;
}
.srv-block.rev > * {
  direction: ltr;
}
.srv-visual {
  background: var(--navy-card);
  border: 0.5px solid var(--border);
  border-radius: 14px;

  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.srv-visual svg {
  width: 64px;
  height: 64px;
  stroke: rgba(0, 194, 255, 0.35);
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#solution-1,
#solution-2,
#solution-3,
#solution-4 {
  scroll-margin-top: 64px;
}
/* ============================================================
   KNOWLEDGE HUB
   ============================================================ */
.kh-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.kh-filter {
  font-size: 12px;
  padding: 5px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  background: transparent;
  font-family: inherit;
  transition: all 0.18s;
}
.kh-filter:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.kh-filter.active {
  background: rgba(0, 194, 255, 0.12);
  border-color: rgba(0, 194, 255, 0.35);
  color: var(--accent);
}
.kh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.res-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.22s;
}
.res-card:hover {
  border-color: rgba(0, 194, 255, 0.2);
  transform: translateY(-3px);
}
.res-type {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.t-report {
  background: rgba(26, 95, 180, 0.18);
  color: #60a5fa;
  border: 1px solid rgba(26, 95, 180, 0.3);
}
.t-guide {
  background: rgba(0, 194, 255, 0.1);
  color: #00c2ff;
  border: 1px solid rgba(0, 194, 255, 0.2);
}
.t-brief {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.t-wp {
  background: rgba(139, 92, 246, 0.12);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.res-card h3 {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4;
}
.res-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.res-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}
.dl-btn {
  width: 100%;
  margin-top: 12px;
  background: transparent;
  border: 1px solid rgba(0, 194, 255, 0.3);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  padding: 9px 0;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.18s;
}
.dl-btn:hover {
  background: rgba(0, 194, 255, 0.1);
  border-color: rgba(0, 194, 255, 0.5);
}
.dl-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   GATE MODAL
   ============================================================ */
.gate-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.gate-overlay.open {
  display: flex;
}
.gate-modal {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 36px;
  width: 100%;
  max-width: 440px;
  position: relative;
}
.gate-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.18s;
}
.gate-close:hover {
  color: #fff;
}
.gate-modal h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.gate-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.doc-pill {
  background: rgba(0, 194, 255, 0.07);
  border: 1px solid rgba(0, 194, 255, 0.15);
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 20px;
}
.g-field {
  margin-bottom: 14px;
}
.g-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}
.g-field input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color 0.18s;
}
.g-field input:focus {
  border-color: var(--accent);
}
.g-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.g-consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.g-consent input {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
}
.c-info {
  padding: 52px 44px;
  border-right: 1px solid var(--border);
  background: var(--navy-mid);
}
.c-info h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.c-info > p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
}
.ci-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.ci-item:last-of-type {
  border-bottom: none;
}
.ci-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 194, 255, 0.1);
  border: 1px solid rgba(0, 194, 255, 0.15);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg {
  width: 22px;
  height: 22px;
  stroke: #00c2ff;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ci-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.ci-val {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.ci-val a {
  color: var(--accent);
}
.resp-note {
  background: rgba(0, 194, 255, 0.06);
  border: 1px solid rgba(0, 194, 255, 0.13);
  border-radius: 9px;
  padding: 14px 16px;
  margin-top: 22px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}
.resp-note strong {
  color: var(--accent);
}
.c-form {
  padding: 52px 44px;
}
.c-form h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
.c-form .fsub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* CONTACT FORM FIELDS */
.cf-field {
  margin-bottom: 18px;
}
.cf-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.cf-field label span {
  color: #f87171;
}
.cf-input,
.cf-select,
.cf-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  padding: 11px 14px;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.cf-input::placeholder,
.cf-textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.cf-select {
  color: rgba(255, 255, 255, 0.5);
}
.cf-select option {
  background: #152848;
  color: #fff;
}
.cf-textarea {
  min-height: 110px;
  resize: vertical;
}
.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
  border-color: var(--accent);
  background: rgba(0, 194, 255, 0.04);
}
.cf-field.err .cf-input,
.cf-field.err .cf-select,
.cf-field.err .cf-textarea {
  border-color: #f87171;
  background: rgba(248, 113, 113, 0.04);
}
.cf-field.ok .cf-input,
.cf-field.ok .cf-select,
.cf-field.ok .cf-textarea {
  border-color: #34d399;
  background: rgba(52, 211, 153, 0.04);
}
.err-msg {
  font-size: 11px;
  color: #f87171;
  margin-top: 4px;
  display: none;
}
.cf-field.err .err-msg {
  display: block;
}
.char-count {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  text-align: right;
  margin-top: 3px;
}
.char-count.warn {
  color: #fbbf24;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cf-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}
.cf-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.cf-consent a {
  color: var(--accent);
}
.consent-err {
  font-size: 11px;
  color: #f87171;
  margin-top: 4px;
  margin-left: 26px;
  display: none;
}
.submit-btn {
  width: 100%;
  background: #00c2ff;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  padding: 13px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: all 0.2s;
}
.submit-btn:hover:not(:disabled) {
  background: #2470cc;
  color: #fff;
  transform: translateY(-1px);
}
.submit-btn:disabled {
  background: rgba(26, 95, 180, 0.4);
  cursor: not-allowed;
  transform: none;
}
.submit-btn svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.spinner {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.success-state {
  display: none;
  text-align: center;
  padding: 52px 28px;
}
.success-icon {
  width: 60px;
  height: 60px;
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.success-icon svg {
  width: 28px;
  height: 28px;
  stroke: #34d399;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.success-state h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.success-state p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 380px;
  margin: 0 auto 22px;
  line-height: 1.65;
}
.success-detail {
  background: rgba(52, 211, 153, 0.07);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: 10px;
  padding: 16px 20px;
  text-align: left;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}
.success-detail strong {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.reset-btn {
  background: transparent;
  border: 1px solid rgba(0, 194, 255, 0.35);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.reset-btn:hover {
  background: rgba(0, 194, 255, 0.1);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0a1a30;
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin: 14px 0 0;
  line-height: 1.65;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 9px;
}
.footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: color 0.18s;
}
.footer-col a:hover {
  color: #fff;
}
.footer-col .office {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  margin-bottom: 14px;
}
.footer-col .office strong {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}
.footer-bottom-links {
  display: flex;
  gap: 18px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}
.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}



/* ============================================================
   VIEW SYSTEM
   ============================================================ */
.view {
  display: none;
}
.view.active {
  display: block;
}

/* ============================================================
   GLOBAL RESET (Prevents Horizontal Scroll)
   ============================================================ */
html, body {
  overflow-x: hidden;
  width: 100%;
}

/* ============================================================
   RESPONSIVE UPDATES
   ============================================================ */

   .nav-cta-mobile-wrapper {
  display: none;
}

@media (max-width: 900px) {
  /* Grid Layout Adjustments */
  .sol-grid,
  .about-grid,
  .contact-grid,
  .cf-row,
  .g-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .steps::before {
    display: none;
  }
  .kh-grid {
    grid-template-columns: 1fr 1fr;
  }
  .c-info {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .srv-block,
  .srv-block.rev {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .val-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Hide Desktop CTA Button */
  .nav-inner > div:last-child .nav-cta {
    display: none;
  }

  /* Show Mobile Wrapper & Button */
  .nav-cta-mobile-wrapper {
    display: flex !important;
    width: 100%;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

   /* Ensure Desktop Button is HIDDEN on mobile */
  .nav-inner > div:last-child .nav-cta {
    display: none;
  }

  .nav-cta-mobile {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    background: #00c2ff;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.18s;
  }

  .nav-cta-mobile:hover {
    background: #2470cc;
    color: #fff;
  }

  /* Hamburger visible on mobile */
  .hamburger {
    display: flex;
  }

  /* ============================================================
     MOBILE NAV PANEL (Full Screen Overlay)
     ============================================================ */
  .nav-links {
    display: none;
    position: fixed;        /* Changed from absolute to fixed */
    top: 64px;              /* Starts below header */
    left: 0;
    right: 0;
    bottom: 0;              /* Extends to bottom of screen */
    height: calc(100vh - 64px); /* Exact remaining screen height */
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(11, 22, 40, 0.99); /* Slightly more opaque */
    backdrop-filter: blur(20px);
    border-bottom: none;    /* No border needed as it fills screen */
    padding: 20px 28px;     /* More breathing room */
    z-index: 99;
    overflow-y: auto;       /* Allow scroll if content is tall */
    animation: navSlideDown 0.3s ease forwards;
  }

  .nav-links.open {
    display: flex;
  }

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

  /* Reset link styles for mobile vertical list */
  .nav-links a,
  .nav-links .dropbtn {
    display: block;
    width: 100%;
    padding: 16px 0;        /* Taller touch targets */
    font-size: 18px;        /* Larger text for mobile */
    color: rgba(255, 255, 255, 0.8);
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
    background: transparent !important;
  }

  .nav-links a:hover,
  .nav-links a.active,
  .nav-links .dropbtn:hover {
    color: #fff;
    background: none !important;
  }

  .nav-links a:last-of-type {
    border-bottom: none;
  }

  /* Dropdown inside mobile menu */
  .nav-links .dropdown {
    width: 100%;
  }

  .nav-links .dropbtn {
    width: 100%;
    justify-content: space-between;
  }

  .nav-links .dropdown-content {
    position: static;
    display: none;
    margin-top: 0;
    padding-left: 16px;
  }

  .nav-links .dropdown-content::before {
    display: none;
  }

  .nav-links .dropdown-content-inner {
    background: transparent;
    border: none;
    box-shadow: none;
    margin-top: 0;
  }

  .nav-links .dropdown-content a {
    border-bottom: none;
    padding: 12px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
  }

  .nav-links .dropdown.open .dropdown-content {
    display: block;
  }

  .hero-slider-section {
    min-height: 460px;
  }
}

@media (max-width: 600px) {
  .kh-grid { grid-template-columns: 1fr; }
  .val-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.8rem; }
  .c-info, .c-form { padding: 32px 24px; }
  .container { padding: 0 18px; }
  .hero-slider-section { min-height: 380px; }
  .hero-slider-arrows { display: none; }
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
:root {
  --notif-accent: #00c2ff;
  --notif-inset: 1rem;
  --check-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24' fill='%23ffffff'%3E%3Cpath d='M400-314.46 250.46-464 296-509.54l104 104 264-264L709.54-624 400-314.46Z'/%3E%3C/svg%3E");
}

.notification {
  color: #e0eaf5;
  position: fixed;
  display: flex;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  gap: 1rem;
  top: 80px;
  right: 0;
  margin: var(--notif-inset);
  width: 22rem;
  background-color: var(--navy-mid, #0d1f3c);
  border: 1px solid rgba(0, 194, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  max-width: calc(100% - 4rem);
  z-index: 9999;
  padding: 1.25rem 1rem 1rem;
  overflow: clip;
  transform: translateX(calc(100% + var(--notif-inset)));
  transition: none;
  pointer-events: none;
  opacity: 0;
}

.notification.show {
  pointer-events: all;
  opacity: 1;
  animation: notifSlideInOut 4s forwards cubic-bezier(0.33, 0, 0.66, 1.33);
  animation-play-state: var(--animation-play-state, running);
}

.notification:hover {
  --animation-play-state: paused;
}

.notification::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background-color: var(--notif-accent);
  transform-origin: left;
  animation: notifCountdown 4s forwards linear;
  animation-play-state: var(--animation-play-state, running);
}

.notification__icon {
  border-radius: 50%;
  display: block;
  background-size: 1.8rem;
  background-color: var(--notif-accent);
  background-image: var(--check-svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.notification__body {
  flex: 1;
}

.notification__header {
  color: #fff;
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.notification__text {
  margin: 0;
  color: var(--text-muted, rgba(255, 255, 255, 0.55));
  font-size: 0.8rem;
}

.notification__action {
  margin-left: auto;
}

.notification__action .button {
  appearance: none;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}

.notification__action .button:hover {
  color: #fff;
}

@keyframes notifSlideInOut {
  0% {
    transform: translateX(calc(100% + var(--notif-inset)));
  }
  12% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(100% + var(--notif-inset)));
  }
}

@keyframes notifCountdown {
  0% {
    transform: scaleX(1);
  }
  12% {
    transform: scaleX(1);
  }
  75% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(0);
  }
}


.video-fade {
  transition: opacity 1.8s ease, filter 1.8s ease;
  opacity: 1;
  filter: blur(0);
}

.video-fade.faded {
  opacity: 0;
}


@keyframes videoLoopFade {
  0%   { opacity: 0; filter: blur(18px); }
  8%   { opacity: 1; filter: blur(0);    }
  92%  { opacity: 1; filter: blur(0);    }
  100% { opacity: 0; filter: blur(18px); }
}
/* 
#heroSliderSection video {
  animation: videoLoopFade 8.27s linear infinite;
} */


/* ── Privacy Policy Modal ─────────────────────────────── */
.pp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.pp-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.pp-modal {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 780px;
  height: 85vh;
  display: flex;
  flex-direction: column;
  transform: translateY(24px);
  transition: transform 0.25s ease;
  overflow: hidden;
}
.pp-overlay.open .pp-modal {
  transform: translateY(0);
}
.pp-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.pp-modal-header h3 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pp-modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.pp-modal-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.pp-modal-body {
  flex: 1;
  overflow: hidden;
}
.pp-modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.pp-modal-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}


/* ============================================================
   SOLUTIONS — accordion list items
   ============================================================ */
.srv-list {
  list-style: none;
  margin-top: 16px;
}

.srv-item {
  position: relative;
  display: block; /* override any inherited flex from old li styles */
}

.srv-item-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  color: var(--text-muted);
  text-align: left;
  transition: color 0.2s;
}

.srv-item-btn:hover {
  color: #fff;
}


/* The cyan > arrow before the label */
.srv-item-btn span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.srv-item-btn span::before {
  display: none;
}

.srv-item-btn span {
  display: flex;
  align-items: center;
  gap: 0;
}

.srv-chevron {
  width: 15px;
  height: 15px;
  stroke: #00c2ff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.3s ease, stroke 0.2s;
  /* rotate to point right when closed, down when open */
  transform: rotate(-90deg);
}

.srv-item-btn:hover .srv-chevron {
  stroke: #00c2ff;
}

.srv-item.open .srv-chevron {
  transform: rotate(0deg);
  stroke: #00c2ff;
}

.srv-item.open .srv-item-btn {
  color: #fff;
}

/* Collapse container — needs an inner div to measure height */
.srv-item-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.srv-item.open .srv-item-body {
  grid-template-rows: 1fr;
}

/* Inner div is required — overflow:hidden clips the content when collapsed */
.srv-item-body-inner {
  overflow: hidden;
}

.srv-item-body-inner p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 4px 0 12px 18px;
  border-left: 1.5px solid rgba(0, 194, 255, 0.25);
  margin-left: 2px;
}

/* Divider line with glow animation on hover/open */
.srv-item-line {
  height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.srv-item-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #1a5fb4, #00c2ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.srv-item:hover .srv-item-line::after,
.srv-item.open .srv-item-line::after {
  transform: scaleX(1);
}


/* ============================================================
   SERVICES — plain list items (no accordion, no line animation)
   ============================================================ */
.srv-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  list-style: none;
}

.srv-list-item::before {
  content: ">";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.srv-list-item:last-child {
  border-bottom: none;
}