/* =============================================================
   Technology Consulting Services — Dubai | SISGAIN
   Section-scoped CSS. No global selectors (body/html/:root/*).
   Palette: Deep Navy #0A0E27, Navy Light #111A3D, Blue #2563EB,
            Blue Light #4F8FFF, Cyan #22D3EE, White #FFFFFF, Off-White #F4F7FB
   ============================================================= */

/* ---------- Shared utility classes (scoped, reused across sections) ---------- */

.tc-heading-gradient {
  font-weight: 800;
  background: linear-gradient(100deg, #2563EB 0%, #4F8FFF 45%, #22D3EE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 0.2em;
}

.tc-heading-gradient::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 12px;
  border-radius: 4px;
  background: linear-gradient(90deg, #2563EB, #22D3EE);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.65);
}

.text-center.tc-heading-gradient::after {
  margin-left: auto;
  margin-right: auto;
}

h1.tc-heading-gradient {
  filter: drop-shadow(0 0 26px rgba(37, 99, 235, 0.35));
}

.tc-section-lead {
  margin-left: auto;
  margin-right: auto;
  color: #4B5568;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.tc-faq .tc-heading-gradient{
    display: table;
    margin: 0 auto 30px;
    text-align: center;
}
.tc-faq__question-text {
  margin: 0;
  font: inherit;
  font-weight: 700;
  color: inherit;
  text-align: left;
}
.tc-faq .tc-heading-gradient::after{
    margin-left: auto;
    margin-right: auto;
}
.tc-icon-svg {
  width: 28px;
  height: 28px;
  color: #22D3EE;
}

.tc-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 2px solid transparent;
}

.tc-btn--primary {
  background: linear-gradient(100deg, #2563EB, #22D3EE);
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.45);
}

.tc-btn--primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(34, 211, 238, 0.55);
  color: #ffffff;
  text-decoration: none;
}

.tc-btn--outline {
  background: transparent;
  border-color: #2563EB;
  color: #2563EB;
}

.tc-btn--outline:hover {
  background: linear-gradient(100deg, #2563EB, #22D3EE);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  text-decoration: none;
}

/* Scroll reveal base state */
[data-tc-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-tc-reveal].tc-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =============================== HERO =============================== */

.tc-hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: radial-gradient(120% 140% at 15% 10%, #142055 0%, #0A0E27 55%, #060914 100%);
}

.tc-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.12) 0%, transparent 45%, rgba(34, 211, 238, 0.08) 100%);
}

/* Subtle CSS-only grid texture — no external image */
.tc-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 143, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 143, 255, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 10%, transparent 72%);
  mask-image: radial-gradient(circle at 50% 40%, #000 10%, transparent 72%);
}

.tc-hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tc-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.5;
  animation: tc-float 9s ease-in-out infinite;
}

.tc-shape--1 { width: 220px; height: 220px; background: radial-gradient(circle, rgba(34,211,238,0.55), transparent 70%); top: 8%; left: 4%; }
.tc-shape--2 { width: 160px; height: 160px; background: radial-gradient(circle, rgba(37,99,235,0.55), transparent 70%); bottom: 12%; left: 40%; animation-delay: 2s; }
.tc-shape--3 { width: 260px; height: 260px; background: radial-gradient(circle, rgba(79,143,255,0.4), transparent 70%); top: 30%; right: 2%; animation-delay: 4s; }

@keyframes tc-float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-24px) translateX(12px); }
}

.tc-hero__row { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 40px; }

.tc-hero__title {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.tc-hero__lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

@keyframes tc-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ---------- Hero visual: animated technology-assessment dashboard ---------- */

.tc-hero__visual { display: flex; justify-content: center; }

.tc-dash {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(10, 14, 39, 0.6));
  border: 1px solid rgba(79, 143, 255, 0.35);
  border-radius: 20px;
  padding: 18px 20px 22px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease;
}

.tc-dash__titlebar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tc-dash__dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.tc-dash__dot--r { background: #FF6B6B; }
.tc-dash__dot--y { background: #FFD166; }
.tc-dash__dot--g { background: #22D3EE; }

.tc-dash__titlebar-label {
  margin-left: 8px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* -- Progress rings -- */

.tc-dash__rings {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.tc-dash-ring {
  position: relative;
  width: 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tc-dash-ring svg { width: 74px; height: 74px; transform: rotate(-90deg); }

.tc-dash-ring__track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 8;
}

.tc-dash-ring__fill {
  fill: none;
  stroke: url(#tc-ring-gradient);
  stroke: #22D3EE;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 263.9;
  stroke-dashoffset: 263.9;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tc-dash-ring__value {
  position: absolute;
  top: 26px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
}

.tc-dash-ring__label {
  margin-top: 2px;
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-align: center;
}

/* -- Bar chart -- */

.tc-dash__bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  height: 110px;
  padding: 0 4px;
  margin-bottom: 20px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.tc-dash__bar {
  position: relative;
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.tc-dash__bar-fill {
  width: 100%;
  max-width: 26px;
  height: var(--tc-h);
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #22D3EE, #2563EB);
  transform: scaleY(0);
  transform-origin: bottom;
  animation: tc-bar-grow 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: var(--tc-d);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.25);
}

@keyframes tc-bar-grow {
  to { transform: scaleY(1); }
}

.tc-dash__bar-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.tc-dash__bar-icon .tc-icon-svg { width: 13px; height: 13px; color: #E4ECFF; }

.tc-dash__bar-label {
  position: absolute;
  bottom: -20px;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

/* -- Flow diagram strip -- */

.tc-dash__flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
}

.tc-dash__flow-node {
  flex-shrink: 0;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(79, 143, 255, 0.45);
  color: #E4ECFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

.tc-dash__flow-node--accent {
  background: linear-gradient(100deg, #2563EB, #22D3EE);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.45);
}

.tc-dash__flow-line {
  flex: 1;
  height: 2px;
  margin: 0 6px;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.15) 0%, rgba(34, 211, 238, 0.15) 40%, rgba(34, 211, 238, 0.9) 50%, rgba(34, 211, 238, 0.15) 60%, rgba(34, 211, 238, 0.15) 100%);
  background-size: 250% 100%;
  animation: tc-flow-travel 2.6s linear infinite;
}

@keyframes tc-flow-travel {
  from { background-position: 100% 0; }
  to { background-position: -150% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .tc-dash__bar-fill, .tc-dash__flow-line, .tc-shape { animation: none; transform: scaleY(1); }
}

@media (max-width: 991px) {
  .tc-dash { max-width: 340px; margin: 40px auto 0; }
}

@media (max-width: 767px) {
  .tc-dash { max-width: 280px; padding: 14px 14px 18px; }
  .tc-dash-ring { width: 66px; }
  .tc-dash-ring svg { width: 58px; height: 58px; }
  .tc-dash-ring__value { top: 20px; font-size: 0.7rem; }
  .tc-dash-ring__label { font-size: 0.58rem; }
  .tc-dash__bars { height: 84px; }
  .tc-dash__bar-label { font-size: 0.56rem; bottom: -18px; }
  .tc-dash__flow-node { font-size: 0.62rem; padding: 6px 8px; }
}

/* =============================== TRUSTED =============================== */

.tc-trusted {
  background: #F4F7FB;
  padding-top: 30px;
  padding-bottom: 30px;
}

.tc-trusted__grid { margin-top: 2.5rem; }

.tc-glass-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 20px;
  padding: 30px 24px;
  height: 100%;
  backdrop-filter: blur(6px);
  box-shadow: 0 15px 40px rgba(10, 14, 39, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  margin-bottom: 24px;
}

.tc-glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(37, 99, 235, 0.18);
}

.tc-glass-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563EB, #22D3EE);
  margin-bottom: 18px;
}

.tc-glass-card__icon .tc-icon-svg { color: #fff; width: 26px; height: 26px; }

.tc-glass-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0A0E27;
  margin-bottom: 10px;
}

.tc-glass-card p { color: #4B5568; font-size: 0.92rem; line-height: 1.65; margin-bottom: 0; }

.tc-trusted__closer { margin-top: 1.5rem; }

/* =============================== CHALLENGES =============================== */

.tc-challenges {
  background: #0A0E27;
  padding-top: 30px;
  padding-bottom: 30px;
}

.tc-challenges .tc-section-lead { color: rgba(255,255,255,0.72); }

.tc-challenges__grid { margin-top: 2rem; }

.tc-tilt-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(79, 143, 255, 0.25);
  border-radius: 18px;
  padding: 26px 22px;
  height: 100%;
  margin-bottom: 24px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.tc-tilt-card:hover {
  transform: rotateX(4deg) rotateY(-4deg) translateY(-6px);
  border-color: rgba(34, 211, 238, 0.6);
  box-shadow: 0 20px 45px rgba(34, 211, 238, 0.15);
}

.tc-tilt-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.tc-tilt-card__title { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.tc-tilt-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.6; margin-bottom: 0; }

.tc-challenges__closer { color: rgba(255,255,255,0.72); margin-top: 1rem; }

/* =============================== WHY MATTERS (bento) =============================== */

.tc-why-matters {
  background: #FFFFFF;
  padding-top: 30px;
  padding-bottom: 30px;
}

.tc-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 18px;
  margin-top: 2.5rem;
}

.tc-bento__item {
  border-radius: 20px;
  padding: 26px;
  background: #F4F7FB;
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.tc-bento__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.14);
}

.tc-bento__item--1 { grid-column: span 4; background: linear-gradient(135deg, #0A0E27, #111A3D); }
.tc-bento__item--2 { grid-column: span 2; }
.tc-bento__item--3 { grid-column: span 2; }
.tc-bento__item--4 { grid-column: span 4; }
.tc-bento__item--5 { grid-column: span 3; background: linear-gradient(135deg, #2563EB, #22D3EE); }
.tc-bento__item--6 { grid-column: span 3; }

.tc-bento__item--1 .tc-bento__title,
.tc-bento__item--1 p,
.tc-bento__item--5 .tc-bento__title,
.tc-bento__item--5 p { color: #fff; }

.tc-bento__icon { margin-bottom: 14px; }
.tc-bento__title { font-size: 1.02rem; font-weight: 700; color: #0A0E27; margin-bottom: 8px; }
.tc-bento__item p { color: #4B5568; font-size: 0.9rem; line-height: 1.6; margin-bottom: 0; }

/* =============================== SERVICES (tabs) =============================== */

.tc-services {
  background: #F4F7FB;
  padding-top: 30px;
  padding-bottom: 30px;
}

.tc-tabs__nav {
  border: none;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 10px;
}

.tc-tabs__link {
  border: 1px solid rgba(37, 99, 235, 0.25) !important;
  border-radius: 50px !important;
  padding: 10px 20px !important;
  color: #0A0E27 !important;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  transition: all 0.3s ease;
}

.tc-tabs__link .tc-icon-svg { width: 18px; height: 18px; color: #2563EB; }

.tc-tabs__link.active {
  background: linear-gradient(100deg, #2563EB, #22D3EE) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.tc-tabs__link.active .tc-icon-svg { color: #fff; }

@media (max-width: 767px) {
  .tc-tabs__nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
    margin-left: -5px;
    margin-right: -5px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .tc-tabs__nav::-webkit-scrollbar { display: none; }

  .tc-tabs__link {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

.tc-tabs__content { margin-top: 2rem; }

.tc-service-detail {
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 20px 55px rgba(10, 14, 39, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.tc-service-detail__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2563EB, #22D3EE);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.tc-service-detail__icon .tc-icon-svg { color: #fff; width: 30px; height: 30px; }

.tc-service-detail__title { font-size: 1.4rem; font-weight: 800; color: #0A0E27; margin-bottom: 20px; }

.tc-service-detail__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2563EB;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 16px;
}

.tc-service-detail p { color: #4B5568; line-height: 1.7; }

/* =============================== PROCESS (timeline) =============================== */

.tc-process {
  background: #0A0E27;
  padding-top: 30px;
  padding-bottom: 30px;
}

.tc-process .tc-heading-gradient { color: transparent; }

.tc-timeline {
  position: relative;
  margin-top: 3rem;
  padding-left: 0;
}

.tc-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #2563EB, #22D3EE);
  transform: translateX(-50%);
  opacity: 0.5;
}

.tc-timeline__item {
  position: relative;
  width: 50%;
  padding: 14px 40px;
  box-sizing: border-box;
}

.tc-timeline__item--left { left: 0; text-align: right; }
.tc-timeline__item--right { left: 50%; text-align: left; }

.tc-timeline__marker {
  position: absolute;
  top: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #22D3EE);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
}

.tc-timeline__item--left .tc-timeline__marker { right: -17px; }
.tc-timeline__item--right .tc-timeline__marker { left: -17px; }

.tc-timeline__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(79,143,255,0.2);
  border-radius: 16px;
  padding: 18px 22px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.tc-timeline__card:hover { transform: translateY(-4px); border-color: rgba(34,211,238,0.5); }

.tc-timeline__title { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.tc-timeline__card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 0; line-height: 1.6; }

/* =============================== FRAMEWORK =============================== */

.tc-framework {
  background: #FFFFFF;
  padding-top: 30px;
  padding-bottom: 30px;
}

.tc-framework__grid { margin-top: 2.5rem; }

.tc-framework__pill {
  border-radius: 20px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  padding: 22px 18px;
  text-align: center;
  height: 100%;
  margin-bottom: 22px;
  background: linear-gradient(180deg, #ffffff, #F4F7FB);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tc-framework__pill:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 18px 40px rgba(37,99,235,0.14); }

.tc-framework__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #22D3EE);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tc-framework__icon .tc-icon-svg { color: #fff; width: 22px; height: 22px; }
.tc-framework__title { font-size: 0.95rem; font-weight: 700; color: #0A0E27; margin-bottom: 6px; }
.tc-framework__pill p { color: #4B5568; font-size: 0.83rem; line-height: 1.55; margin-bottom: 0; }
.tc-framework__closer { margin-top: 1rem; }

/* =============================== INDUSTRIES (scroller) =============================== */

.tc-industries {
  background: #111A3D;
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
}

.tc-industries .tc-heading-gradient { margin-bottom: 2.5rem; }

.tc-industries__scroller {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x proximity;
}

.tc-industries__scroller::-webkit-scrollbar { height: 8px; }
.tc-industries__scroller::-webkit-scrollbar-thumb { background: rgba(34,211,238,0.4); border-radius: 8px; }

.tc-industry-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(79,143,255,0.25);
  border-radius: 18px;
  padding: 24px;
  display: block;
  text-decoration: none;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.tc-industry-card__link {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(34, 211, 238, 0.6);
  text-underline-offset: 3px;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.tc-industry-card__link:hover,
.tc-industry-card__link:focus {
  color: #22D3EE;
  text-decoration-color: #22D3EE;
}
a.tc-industry-card:hover { text-decoration: none; }

.tc-industry-card:hover { transform: translateY(-8px); border-color: rgba(34,211,238,0.6); }

.tc-industry-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37,99,235,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.tc-industry-card__title { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.tc-industry-card p { color: rgba(255,255,255,0.62); font-size: 0.85rem; line-height: 1.6; margin-bottom: 0; }

/* =============================== CONSULTING AREAS (float cards) =============================== */

.tc-areas {
  background: #F4F7FB;
  padding-top: 30px;
  padding-bottom: 30px;
}

.tc-areas__grid { margin-top: 2.5rem; }

.tc-float-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px 22px;
  height: 100%;
  margin-bottom: 24px;
  box-shadow: 0 12px 30px rgba(10,14,39,0.06);
  animation: tc-bob 6s ease-in-out infinite;
  transition: box-shadow 0.3s ease;
}

.tc-float-card:nth-child(2n) { animation-delay: 1.5s; }
.tc-float-card:nth-child(3n) { animation-delay: 3s; }

.tc-float-card:hover { box-shadow: 0 20px 45px rgba(37,99,235,0.16); }

@keyframes tc-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.tc-float-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563EB, #22D3EE);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.tc-float-card__icon .tc-icon-svg { color: #fff; }
.tc-float-card__title { font-size: 1rem; font-weight: 700; color: #0A0E27; margin-bottom: 8px; }
.tc-float-card p { color: #4B5568; font-size: 0.88rem; line-height: 1.6; margin-bottom: 0; }

/* =============================== ROADMAP (flow) =============================== */

.tc-roadmap {
  background: #0A0E27;
  padding-top: 30px;
  padding-bottom: 30px;
}

.tc-roadmap__flow {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  margin-top: 2.5rem;
}

.tc-roadmap__step {
  flex: 1 1 180px;
  max-width: 200px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(79,143,255,0.25);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.tc-roadmap__step:hover { transform: translateY(-6px); border-color: rgba(34,211,238,0.6); }

.tc-roadmap__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: rgba(37,99,235,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tc-roadmap__title { color: #fff; font-size: 0.88rem; font-weight: 700; margin-bottom: 6px; }
.tc-roadmap__step p { color: rgba(255,255,255,0.6); font-size: 0.76rem; line-height: 1.5; margin-bottom: 0; }

.tc-roadmap__arrow {
  align-self: center;
  color: #22D3EE;
  font-size: 1.3rem;
  animation: tc-pulse 2s ease-in-out infinite;
}

/* =============================== AI READINESS (scorecard) =============================== */

.tc-ai-readiness {
  background: #F4F7FB;
  padding-top: 30px;
  padding-bottom: 30px;
}

.tc-scorecard {
  max-width: 780px;
  margin: 2.5rem auto 2rem;
  background: #fff;
  border-radius: 22px;
  padding: 30px 34px;
  box-shadow: 0 20px 55px rgba(10,14,39,0.08);
}

.tc-scorecard__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(37,99,235,0.18);
}

.tc-scorecard__row:last-of-type { border-bottom: none; }

.tc-scorecard__label { font-weight: 700; color: #2563EB; min-width: 150px; }
.tc-scorecard__desc { color: #4B5568; font-size: 0.92rem; flex: 1 1 400px; }

.tc-scorecard__overall {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 2px solid rgba(37,99,235,0.15);
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  color: #0A0E27;
}

.tc-scorecard__bar {
  flex: 1;
  height: 10px;
  background: #EEF2FA;
  border-radius: 10px;
  overflow: hidden;
}

.tc-scorecard__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #2563EB, #22D3EE);
  transition: width 1.4s ease;
}

/* =============================== WHY CHOOSE (compare table) =============================== */

.tc-why-choose {
  background: #FFFFFF;
  padding-top: 30px;
  padding-bottom: 30px;
}

.tc-compare { margin-top: 2rem; }

.tc-compare__table {
  border-collapse: separate;
  border-spacing: 0 10px;
}

.tc-compare__table thead th {
  border: none;
  background: transparent;
  color: #0A0E27;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0 20px 10px;
}

.tc-compare__table tbody tr { box-shadow: 0 8px 25px rgba(10,14,39,0.05); }

.tc-compare__table td {
  border: none;
  padding: 16px 20px;
  font-size: 0.9rem;
  vertical-align: middle;
}

.tc-compare__old {
  background: #F4F7FB;
  color: #6B7280;
  border-radius: 14px 0 0 14px;
}

.tc-compare__new {
  background: linear-gradient(100deg, rgba(37,99,235,0.1), rgba(34,211,238,0.12));
  color: #0A0E27;
  font-weight: 600;
  border-radius: 0 14px 14px 0;
}

/* =============================== OUTCOMES (circle cards) =============================== */

.tc-outcomes {
  background: #111A3D;
  padding-top: 30px;
  padding-bottom: 30px;
}

.tc-outcomes__grid { margin-top: 2.5rem; }

.tc-circle-card {
  text-align: center;
  padding: 24px 16px;
  height: 100%;
  margin-bottom: 24px;
}

.tc-circle-card__icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(37,99,235,0.4), rgba(34,211,238,0.15));
  border: 1px solid rgba(34,211,238,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.tc-circle-card:hover .tc-circle-card__icon { transform: scale(1.1) rotate(8deg); }

.tc-circle-card p { color: rgba(255,255,255,0.72); font-size: 0.9rem; line-height: 1.6; }

/* =============================== TECH STACK (logo marquee) =============================== */

.tc-tech-stack {
  background: #F4F7FB;
  padding-top: 30px;
  padding-bottom: 30px;
}

.tc-tech-stack__group { margin-top: 2.2rem; }

.tc-tech-stack__group-title {
  font-size: 1rem;
  font-weight: 700;
  color: #2563EB;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.tc-logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.tc-logo-marquee__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: tc-marquee 30s linear infinite;
}

.tc-logo-marquee:hover .tc-logo-marquee__track { animation-play-state: paused; }

/* Track holds 3 copies of the logo set — translate by exactly one third
   so the loop point is seamless with no blank gap at the end. */
@keyframes tc-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.3333%); }
}

.tc-logo-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 120px;
  box-shadow: 0 10px 25px rgba(10,14,39,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tc-logo-card:hover { transform: translateY(-6px) scale(1.05); box-shadow: 0 18px 35px rgba(37,99,235,0.18); }
.tc-logo-card img { width: 48px; height: 48px; border-radius: 10px; }
.tc-logo-card span { font-size: 0.75rem; font-weight: 600; color: #0A0E27; text-align: center; }

/* =============================== COMPLIANCE (accordion) =============================== */

.tc-compliance {
  background: #FFFFFF;
  padding-top: 30px;
  padding-bottom: 30px;
}

.tc-accordion { margin-top: 2rem; }

.tc-accordion__item {
  border: 1px solid rgba(37,99,235,0.14);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
}

.tc-accordion__header {
  width: 100%;
  background: #F4F7FB;
  border: none;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #0A0E27;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tc-accordion__header:hover { background: #EAF0FB; }

.tc-accordion__chevron { color: #2563EB; transition: transform 0.3s ease; }
.tc-accordion__header[aria-expanded="true"] .tc-accordion__chevron { transform: rotate(180deg); }

.tc-accordion__body { padding: 24px; background: #fff; }

.tc-compliance__logo-item, .tc-compliance__text-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.tc-compliance__logo-item img { border-radius: 12px; flex-shrink: 0; }

.tc-compliance__logo-title { font-size: 0.92rem; font-weight: 700; color: #2563EB; margin-bottom: 4px; }
.tc-compliance__logo-item p, .tc-compliance__text-item p { color: #4B5568; font-size: 0.85rem; line-height: 1.6; margin-bottom: 0; }
.tc-compliance__closer { margin-top: 1rem; }

/* =============================== FAQ =============================== */

.tc-faq {
  background: #F4F7FB;
  padding-top: 30px;
  padding-bottom: 30px;
}

.tc-faq__accordion { max-width: 860px; margin: 2.5rem auto 0; }

.tc-faq__item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 8px 24px rgba(10,14,39,0.05);
  overflow: hidden;
}

.tc-faq__question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-weight: 700;
  color: #0A0E27;
  font-size: 0.95rem;
  cursor: pointer;
}

.tc-faq__icon {
  color: #2563EB;
  font-size: 1.3rem;
  font-weight: 700;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 14px;
}

.tc-faq__question[aria-expanded="true"] .tc-faq__icon { transform: rotate(45deg); }

.tc-faq__answer { padding: 0 22px 20px; }
.tc-faq__answer p { color: #4B5568; font-size: 0.9rem; line-height: 1.7; margin-bottom: 0; }

/* =============================== CTA =============================== */

.tc-cta {
  background: linear-gradient(120deg, #0A0E27, #111A3D 55%, #1B2A5C);
  padding-top: 30px;
  padding-bottom: 30px;
}

.tc-cta__panel {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 20px;
}

.tc-cta__panel p { color: rgba(255,255,255,0.75); margin: 1rem 0 1.75rem; font-size: 1.02rem; }

/* ---------- Guaranteed vertical gap between wrapped card rows ----------
   Bootstrap 4 rows are flex containers; when cards wrap onto a new line,
   only the card's own margin-bottom separated them, which could read as
   "stuck together" at certain breakpoints. row-gap is additive and fixes
   this everywhere regardless of card height/columns. */
.tc-trusted__grid,
.tc-challenges__grid,
.tc-framework__grid,
.tc-areas__grid,
.tc-outcomes__grid {
  row-gap: 28px;
}

/* =============================== RESPONSIVE =============================== */

@media (max-width: 991px) {
  .tc-bento { grid-template-columns: repeat(2, 1fr); }
  .tc-bento__item--1, .tc-bento__item--2, .tc-bento__item--3,
  .tc-bento__item--4, .tc-bento__item--5, .tc-bento__item--6 { grid-column: span 2; }
  .tc-timeline::before { left: 20px; }
  .tc-timeline__item, .tc-timeline__item--left, .tc-timeline__item--right {
    width: 100%; left: 0; text-align: left; padding-left: 56px; padding-right: 10px;
  }
  .tc-timeline__item--left .tc-timeline__marker,
  .tc-timeline__item--right .tc-timeline__marker { left: 3px; right: auto; }
}

@media (max-width: 767px) {
  .tc-hero__title { font-size: 2rem; }

  /* Hero: give the CTA button and the orbit visual breathing room so they
     don't sit flush against each other on phones. */
  .tc-hero__content .tc-btn { margin-bottom: 8px; }
  .tc-hero__visual { margin-top: 44px; }

  /* AI Readiness scorecard: in the desktop layout .tc-scorecard__desc uses
     flex: 1 1 400px. Once the row switches to flex-direction: column that
     400px basis is read as a HEIGHT, not a width — leaving a large blank
     gap under every short answer. Reset it explicitly for stacked rows. */
  .tc-scorecard { padding: 22px; }
  .tc-scorecard__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .tc-scorecard__label { min-width: 0; }
  .tc-scorecard__desc { flex: 0 1 auto; width: 100%; }
}