/* =========================================================
   GO TECH SOLUTIONS — Pixel-perfect landing page
   ========================================================= */

:root {
  --navy-900: #0A1733;
  --navy-800: #0F1E40;
  --navy-700: #152A52;
  --navy-600: #1B3168;
  --blue-500: #0F8DEB;
  /* primary CTA blue */
  --blue-400: #3FB6F7;
  /* accent / light blue text */
  --blue-300: #67C8FA;
  --blue-pill-bg: #E6F4FE;
  --text-dark: #0F2042;
  --text-body: #5B6B85;
  --text-muted: #8893A8;
  --bg-grey: #F5F7FA;
  --bg-grey-2: #EEF2F7;
  --white: #ffffff;
  --line: #E6EBF2;
  --shadow-card: 0 4px 20px rgba(15, 32, 66, .06);
  --shadow-hover: 0 14px 40px rgba(15, 32, 66, .10);
  --radius-card: 16px;
  --radius-pill: 999px;

  /* Space for absolute #global-header + breathing room before hero copy */
  --header-clearance: clamp(116px, 9vw + 72px, 140px);
  --hero-content-gap: 36px;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #fff;
  line-height: 1.55;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

ul {
  list-style: none
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none
}

.lucide {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  vector-effect: non-scaling-stroke;
}

.btn .lucide,
.nav-cta .lucide,
.learn .lucide,
.pc-link .lucide,
.check-list .lucide,
.role-item .lucide {
  width: 20px;
  height: 20px;
}

.svc-icon .lucide,
.hire-icon .lucide,
.why-icon .lucide,
.tech-icon .lucide,
.ti-ico .lucide {
  width: 22px;
  height: 22px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-display);
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}

.btn .arrow {
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.btn-primary {
  background: linear-gradient(180deg, #27A6F0 0%, #0F8DEB 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(15, 141, 235, .35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15, 141, 235, .45);
}

.btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .14);
}

.btn-white {
  background: #fff;
  color: var(--text-dark);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .08);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ---------- Pills / labels (eyebrows) ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .pill {
    white-space: normal;
    text-align: center;
  }
}

.pill-light {
  background: var(--blue-pill-bg);
  color: var(--blue-500);
  border: 1px solid #C8E5FA;
}

.pill-dark {
  background: rgba(63, 182, 247, .15);
  color: var(--blue-400);
  border: 1px solid rgba(63, 182, 247, .3);
}

/* ---------- Headings ---------- */
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -.02em;
  margin: 14px 0 16px;
}

.section-h2.center {
  text-align: center
}

.section-h2.white {
  color: #fff
}

.accent {
  color: var(--blue-400)
}

.section-sub {
  color: var(--text-body);
  font-size: 15px;
  max-width: 720px;
  margin: 0 auto 12px
}

section.blog .section-sub.white {
    margin: 0;
}

.section-sub.center {
  text-align: center
}

.section-sub.white {
  color: rgba(255, 255, 255, .75)
}

.section-sub-italic {
  font-style: italic;
  color: var(--text-muted);
  margin-top: 6px
}

.section-head {
  text-align: center;
  margin-bottom: 20px
}

.section-head .pill {
  margin-bottom: 8px;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Portfolio / Career pre-footer CTA ---------- */
.portfolio-cta-bar {
  padding: 72px 0 88px;
  background: linear-gradient(180deg, #fff 0%, #F6F9FF 48%, #EEF4FB 100%);
}

.portfolio-cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #0F2454 0%, #0A1733 52%, #050B1F 100%);
  border: 1px solid rgba(63, 182, 247, 0.22);
  box-shadow:
    0 28px 56px rgba(10, 23, 51, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.portfolio-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 100% 0%, rgba(63, 182, 247, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(15, 141, 235, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.portfolio-cta-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 182, 247, 0.35) 0%, transparent 68%);
  filter: blur(2px);
  pointer-events: none;
}

.portfolio-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(36px, 5vw, 52px) clamp(28px, 4vw, 56px);
}

.portfolio-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
}

.portfolio-cta-copy .pill {
  margin: 0;
}

.portfolio-cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

.portfolio-cta-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
}

.portfolio-cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.portfolio-cta-action .btn-white {
  padding: 14px 28px;
  font-size: 15px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.portfolio-cta-action .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.portfolio-cta-note {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-align: right;
  letter-spacing: 0.01em;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 30%, #14336B 0%, #0A1733 55%, #050B1F 100%);
  color: #fff;
  padding-bottom: 80px;
}

.hero-bg-infinity {
  position: absolute;
  right: -50px;
  top: calc(var(--header-clearance) + 48px);
  width: 55%;
  max-width: 700px;
  pointer-events: none
}

.hero-bg-infinity img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(.9) saturate(.95)
}

/* =========================================================
   GLOBAL HEADER (injected into #global-header on every page)
   ========================================================= */
#global-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.navbar,
#global-header .navbar {
  padding: 18px 24px;
  position: relative;
  z-index: 5;
}

.nav-inner,
#global-header .nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(180deg, rgba(20, 40, 86, .6), rgba(15, 30, 64, .4));
  border: 1px solid rgba(63, 182, 247, .25);
  padding: 10px 18px 10px 26px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
}

#global-header .nav-links a {
  color: rgba(255, 255, 255, .78);
}

#global-header .nav-links a:hover,
#global-header .nav-links a.active {
  color: var(--blue-400);
}

#global-header .mobile-toggle span {
  background: #fff;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff
}

.logo-mark {
  width: 80px;
  display: inline-flex;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1
}

.logo-text strong {
  color: #fff;
  font-weight: 700
}

.logo-text span {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  color: #7FB7E6;
  font-weight: 500;
  margin-top: 2px
}

.nav-links {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: center
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .75);
  transition: color .2s
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-400)
}

.nav-cta {
  padding: 10px 18px;
  font-size: 13px
}

.mobile-toggle {
  display: none;
  width: 34px;
  height: 34px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  align-items: center
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px
}

.hero-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--hero-content-gap) 24px 0;
  position: relative;
  z-index: 3;
}

/* Heroes that host the global header overlay */
.hero,
.service-detail-hero,
.services-hero,
.portfolio-hero,
.career-hero,
.blog-hero,
.legal-hero,
.contact-hero,
.blog-post-hero-section {
  position: relative;
  padding-top: var(--header-clearance);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin-bottom: 18px;
}

.hero-sub,
.hero-sub-2 {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-sub-2 {
  margin-bottom: 28px
}

.hero-location {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px
}

.hero-ctas .dl-ico {
  font-size: 14px
}

.hero-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.stat {
  background: rgba(20, 40, 86, .5);
  border: 1px solid rgba(63, 182, 247, .18);
  border-radius: 10px;
  padding: 14px 22px;
  min-width: 120px;
}

.stat .num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-400)
}

.stat .lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .5px
}

.scroll-hint {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 38px;
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, .4);
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  padding: 80px 0 40px;
  background: #fff
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: center
}

.about-text .pill {
  margin-bottom: 14px
}

.about-text p {
  color: var(--text-body);
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.7
}

.about-text strong {
  color: var(--text-dark);
  font-weight: 600
}

.link-blue {
  color: var(--blue-500);
  font-weight: 600
}

.check-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-body);
  position: relative;
  padding-left: 0;
}

.about-bullet {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--blue-500);
  margin-top: 1px;
}

/* Premium list markers (service pages — circle + check) */
.service-feature-list li,
.automate-list li,
.expertise-list li,
.overview-card li,
.case-card li,
.ma-process-body li,
.ma-framework-card li,
.cd-process-body li,
.cd-service-box li,
.uux-industry-card li {
  list-style: none;
}

.service-feature-list li::before,
.automate-list li::before,
.expertise-list li::before,
.overview-card li::before,
.case-card li::before,
.ma-process-body li::before,
.ma-framework-card li::before,
.cd-process-body li::before,
.cd-service-box li::before,
.uux-industry-card li::before {
  content: '';
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background-color: #E8F6FE;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F8DEB' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

.check-list li::before,
.bullet-list li::before,
.bpa-process-panel li::before,
.ea-portfolio-features li::before,
.wd-texas-list li::before,
.ma-tech-box li::before,
li:has(> .bpa-check)::before,
li:has(> .hdt-check)::before,
li:has(> i[data-lucide])::before {
  content: none;
  display: none;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  background: none;
}

.about-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1/1;
  margin-left: auto;
  background: #0b1838;
  box-shadow: 0 20px 50px rgba(15, 32, 66, .15);
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  padding: 40px 0 40px;
  background: #fff;
  position: relative;
  overflow: hidden
}

.services-bg-circle {
  position: absolute;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #F1F5FB 0%, #fff 70%);
  z-index: 0;
}

.services .container {
  position: relative;
  z-index: 1
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 20px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 30px;
  transition: transform .25s, box-shadow .25s;
  box-shadow: var(--shadow-card);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover)
}

.svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
}

.svc-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor
}

.ic-cyan {
  background: linear-gradient(135deg, #22C7D1, #0EA5B7)
}

.ic-green {
  background: linear-gradient(135deg, #22C55E, #16A34A)
}

.ic-purple {
  background: linear-gradient(135deg, #A855F7, #7C3AED)
}

.ic-navy {
  background: linear-gradient(135deg, #1E293B, #0F172A)
}

.ic-orange {
  background: linear-gradient(135deg, #FB923C, #F97316)
}

.ic-pink {
  background: linear-gradient(135deg, #EC4899, #DB2777)
}

.ic-yellow {
  background: linear-gradient(135deg, #FBBF24, #F59E0B)
}

.ic-blue {
  background: linear-gradient(135deg, #3FB6F7, #0F8DEB)
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark)
}

.service-card p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 14px
}

.learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-500)
}

.services-cta {
  text-align: center;
  margin-top: 40px
}

.not-sure {
  color: var(--text-body);
  font-size: 14px;
  margin-bottom: 18px
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

/* =========================================================
   HIRE DEVELOPERS
   ========================================================= */
.hire {
  padding: 40px 0 80px;
  background: #fff
}

.hire-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px
}

.hire-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 30px;
  box-shadow: var(--shadow-card);
}

.hire-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #3FB6F7, #0F8DEB);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
}

.hire-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor
}

.hire-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px
}

.hire-card p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6
}

.roles-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 30px;
  box-shadow: var(--shadow-card);
  margin: 36px auto 0;
}

.roles-title {
  font-family: var(--font-display);
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 22px
}

.roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 30px
}

.role-item {
  background: #F8FAFC;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 12.5px;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 10px;
}

.role-item .check {
  color: var(--blue-500);
  font-size: 14px
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how-it-works {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #0F2454 0%, #0B1B40 100%);
  position: relative;
  color: #fff;
  overflow: hidden;
}

.gear-decor {
  position: absolute;
  width: 120px;
  opacity: .4
}

.gear-left {
  left: -30px;
  top: 50%;
}

.steps-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 70px;
  position: relative;
}

.step {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 22px;
  position: relative;
}

.step-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px
}

.step-bg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #3FB6F7, #0F8DEB);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.step-bg svg {
  stroke: currentColor;
}

.step-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
  font-weight: 500
}

.step p {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.6
}

/* Decorative curves between steps */
.step-curve {
  position: absolute;
  width: 160px;
  height: 50px;
  top: -30px;
  z-index: 2
}

.curve-1 {
  left: 15%;
  top: auto;
  bottom: -60px
}

.curve-2 {
  left: 70%;
  top: auto;
  bottom: -55px
}

.curve-3 {
  left: 43%;
  top: -48px
}

.hire-cta {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 3
}

/* =========================================================
   INDUSTRIES
   ========================================================= */
.industries {
  padding: 70px 0 40px;
  background: #F5F7FA
}

.industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center
}

.ind-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px
}

.ind-tab {
  padding: 7px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #fff;
  font-size: 12px;
  color: var(--text-body);
  transition: all .2s;
}

.ind-tab.active {
  border-color: var(--blue-400);
  color: var(--blue-500);
  background: #fff
}

.ind-tab:hover {
  border-color: var(--blue-400)
}

.ind-sub {
  font-family: var(--font-display);
  color: var(--blue-500);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px
}

.industries p {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px
}

.bullet-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-body);
  position: relative;
  padding-left: 0;
  list-style: none
}

.bullet-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--blue-500);
  margin-top: 1px
}

.industries-art img {
  width: 100%;
  margin: 0 auto;
  display: block;
  border-radius: 16px
}

/* =========================================================
   TECHNOLOGIES
   ========================================================= */
.tech {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5fb 100%)
}

.tech-head {
  text-align: center;
  margin-bottom: 20px
}

.tech-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #3FB6F7, #0F8DEB);
  border-radius: 12px;
  color: #fff;
  margin: 0 auto 16px;
  font-size: 28px
}

.tech-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
  padding: 12px;
  background: rgba(255, 255, 255, .5);
  border-radius: 16px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto
}

.tech-tab {
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .8);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  transition: all .25s;
  cursor: pointer
}

.tech-tab:hover {
  border-color: var(--blue-400);
  transform: translateY(-1px)
}

.tech-tab.active {
  border-color: var(--blue-500);
  background: linear-gradient(135deg, #3FB6F7, #0F8DEB);
  color: #fff;
  box-shadow: 0 8px 20px rgba(15, 141, 235, .2)
}

.tech-icons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
  min-height: 140px
}

.tech-item {
  background: rgba(255, 255, 255, .7);
  border: 1.5px solid rgba(255, 255, 255, .8);
  border-radius: 14px;
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all .3s;
  backdrop-filter: blur(8px)
}

.tech-item:hover {
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 32, 66, .08);
  transform: translateY(-4px);
  border-color: #fff
}

.ti-ico {
  font-size: 42px;
  line-height: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(63, 182, 247, .1), rgba(15, 141, 235, .08));
  border-radius: 12px;
  transition: all .3s
}

.ti-ico--brand {
  background: #fff;
  border: 1px solid rgba(15, 32, 66, .06);
  box-shadow: 0 4px 14px rgba(15, 32, 66, .06)
}

.ti-ico--brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block
}

.tech-item:hover .ti-ico {
  background: linear-gradient(135deg, rgba(63, 182, 247, .15), rgba(15, 141, 235, .12));
  transform: scale(1.05)
}

.tech-item:hover .ti-ico--brand {
  background: #fff;
  border-color: rgba(15, 141, 235, .15);
  box-shadow: 0 8px 22px rgba(15, 141, 235, .12);
  transform: scale(1.06)
}

.ti-ico span {
  position: absolute;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-display)
}

.tech-item>span:last-child {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: .3px
}

/* =========================================================
   PORTFOLIO / PROBLEMS SOLVED
   ========================================================= */
.portfolio {
  padding: 40px 0 80px;
  background: #F5F7FA
}

.port-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
  flex-wrap: wrap
}

.pf-tab {
  padding: 9px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
}

.pf-tab.active {
  background: linear-gradient(180deg, #27A6F0, #0F8DEB);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(15, 141, 235, .3)
}

.port-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto
}

.port-card.is-hidden {
  display: none
}

.port-empty {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin: 8px auto 24px;
  max-width: 420px
}

.port-empty a {
  color: var(--blue-500);
  font-weight: 600
}

.port-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  border-bottom: 3px solid var(--blue-400);
  transition: transform .2s, box-shadow .2s;
}

.port-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover)
}

.pc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px
}

.pc-head h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark)
}

.pc-tag {
  background: var(--blue-pill-bg);
  color: var(--blue-500);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
}

.pc-sub {
  color: var(--text-body);
  font-size: 13px;
  margin-bottom: 12px
}

.pc-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px
}

.pc-stack span {
  background: #F1F5FB;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--text-body)
}

.pc-link {
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--blue-500);
  font-weight: 600;
  font-size: 13px
}

.pc-thumb img,
.pc-thumb svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.view-all {
  justify-items: center;
  text-align: center;
  margin-top: 30px
}

.view-all a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-500);
  font-weight: 600;
  font-size: 14px
}

/* =========================================================
   FEATURED PROJECT
   ========================================================= */
.featured {
  padding: 80px 0;
  background: #fff
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px
}

.feat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s
}

.feat-card:hover {
  border-color: #c2d4e8
}

.feat-img {
  height: 160px;
  border-radius: 10px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center
}

.feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.feat-img-1 {
  background: #f3f7fb;
  color: var(--text-dark)
}

.feat-img .tag-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .3px;
  color: var(--text-muted);
  z-index: 2
}

.feat-img-2 {
  background: #f3f7fb
}

.feat-img-3 {
  background: #f3f7fb
}

.feat-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.35;
  color: var(--text-dark)
}

.feat-card p {
  font-size: 12.5px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 8px
}

.lbl-red,
.lbl-blue,
.lbl-orange {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 4px
}

.lbl-red  { color: #DC2626 }
.lbl-blue { color: var(--blue-500) }
.lbl-orange { color: #D97706 }

.feat-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 18px 0 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden
}

.metric {
  background: #fafbfc;
  padding: 14px 10px;
  text-align: center
}

.metric.m-org,
.metric.m-grn {
  background: #fafbfc
}

.m-num {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1
}

.m-org .m-num,
.m-grn .m-num {
  color: var(--text-dark)
}

.m-lbl {
  font-size: 9px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.3
}

/* =========================================================
   AWARDS
   ========================================================= */
.awards {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #0F2454, #0B1B40);
  color: #fff;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px
}

.award-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  color: var(--text-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.badge {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px
}

.badge svg {
  height: 80px;
  width: auto
}

.badge img {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block
}

.award-card h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px
}

.award-card p {
  font-size: 12px;
  color: var(--text-body)
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-choose {
  padding: 70px 0;
  background: #F5F7FA
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 10px
}

.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 30px;
  box-shadow: var(--shadow-card);
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #3FB6F7, #0F8DEB);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
}

.why-icon svg {
  width: 22px;
  height: 22px
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px
}

.why-card p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.65
}

/* =========================================================
   CONTACT BAR
   ========================================================= */
.contact-bar {
  padding: 0 0 80px;
    background: #F5F7FA;
}

.cb-inner {
  background: linear-gradient(180deg, #0F2454, #0B1B40);
  border-radius: 14px;
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cb-text {
  color: #fff;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px
}

.cb-ico {
  font-size: 18px;
  background: rgba(63, 182, 247, .2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

/* =========================================================
   CLIENT TESTIMONIALS (shared — minimal premium)
   ========================================================= */
.client-testimonials {
  padding: 88px 0;
  background: #F8F9FA;
}

.client-testimonials .section-head {
  margin-bottom: 56px;
}

.client-testimonials .section-head .section-sub {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.client-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.client-testi-grid--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.client-testi-grid--single {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.client-testi-card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: border-color 0.2s ease;
}

.client-testi-card:hover {
  border-color: #C8E5FA;
}

.client-testi-quote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  flex: 1;
}

.client-testi-footer {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #EEF2F7;
}

.client-testi-footer cite {
  display: block;
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.client-testi-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.client-testi-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-500);
  text-decoration: none;
}

.client-testi-link:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .client-testi-grid,
  .client-testi-grid--cols-2 {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .client-testimonials {
    padding: 64px 0;
  }

  .client-testimonials .section-head {
    margin-bottom: 40px;
  }
}

.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 18px
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3)
}

.dot.active {
  width: 20px;
  border-radius: 6px;
  background: var(--blue-400)
}

/* =========================================================
   VIDEO TESTIMONIALS
   ========================================================= */
.video-testi {
  padding: 60px 0 80px;
  background: #fff
}

.vt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 30px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto
}

.vt-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 16px;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s;
}

.vt-thumb {
  border-radius: 10px;
  height: 240px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.vt-1 {
  background: linear-gradient(135deg, #3D5A80, #293F5E)
}

.vt-2 {
  background: linear-gradient(135deg, #C9B79C, #A68B70)
}

.vt-play {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, background .2s;
}

.vt-play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px
}

.vt-play:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, .3)
}

.vt-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding: 0 4px
}

.vt-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px
}

.vt-role {
  font-size: 11px;
  color: var(--text-body);
  margin-top: 2px
}

.vt-li svg {
  width: 22px;
  height: 22px
}

/* =========================================================
   GLOBAL OPERATIONS
   ========================================================= */
.global {
  padding: 80px 0;
  background: linear-gradient(160deg, #f0f5fb 0%, #f5f7fa 50%, #eff3f8 100%);
  position: relative;
  overflow: hidden
}

.global::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(63,182,247,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

.global::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(15,141,235,.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

.global-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center
}

.g-text p {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.7;
  margin: 14px 0 22px;
  max-width: 440px
}

.g-map {
  position: relative;
  background: linear-gradient(135deg, #f9fbfd 0%, #f3f7fc 100%);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(63, 182, 247, .12);
  box-shadow: 0 8px 24px rgba(15, 32, 66, .06)
}

.g-map svg {
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  display: block;
  cursor: pointer;
  position: relative;
  z-index: 2
}

.interactive-map {
  width: 100%;
  max-width: 600px;
  height: 300px;
  margin: 0 auto;
  display: block;
  pointer-events: auto;
  z-index: 2;
  position: relative
}

.map-pin {
  cursor: pointer;
  transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: auto
}

.map-pin .pin-hit {
  cursor: pointer;
  pointer-events: auto
}

.map-pin .pin-ring {
  transition: none;
}

.map-pin .pin-dot {
  transition: none;
}

.map-pin:hover .pin-ring {
  stroke: #27A6F0;
  r: 11;
  stroke-width: 2.8;
  filter: drop-shadow(0 0 12px rgba(63, 182, 247, .8)) drop-shadow(0 0 24px rgba(15, 141, 235, .4))
}

.map-pin:hover .pin-dot {
  r: 5;
  fill: #27A6F0;
  filter: drop-shadow(0 0 6px rgba(39, 166, 240, .8))
}

.map-pin:hover .city-label {
  font-weight: 800;
  fill: #0F8DEB;
  font-size: 13px;
  text-shadow: 0 2px 4px rgba(15, 32, 66, .1)
}

.map-pin:focus {
  outline: none
}

.map-pin:focus-visible {
  outline: 2px solid #0F8DEB;
  outline-offset: 6px;
  border-radius: 50%
}

.pin-ring {
  pointer-events: none
}

.pin-dot {
  pointer-events: none
}

.city-label {
  pointer-events: none;
  font-family: var(--font-display);
  font-weight: 600
}

.map-tooltip {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: linear-gradient(135deg, #ffffff, #f8fbfd);
  border: 1.5px solid rgba(63, 182, 247, .25);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow:
    0 12px 32px rgba(15, 32, 66, .15),
    0 0 1px rgba(63, 182, 247, .3) inset;
  z-index: 10;
  white-space: normal;
  pointer-events: none;
  backdrop-filter: blur(8px);
  min-width: 240px;
  margin-left: -120px
}

.tooltip-city {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  background: linear-gradient(135deg, #0F8DEB, #3FB6F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3px;
  letter-spacing: -.02em
}

.tooltip-team {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: .4px;
  font-weight: 500
}

.tooltip-pitch {
  font-size: 12px;
  color: var(--text-body);
  line-height: 1.5;
  margin: 8px 0;
  font-weight: 500
}

.tooltip-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 8px 12px;
  background: linear-gradient(135deg, #0F8DEB, #3FB6F7);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  transition: all .2s;
  margin-top: 8px;
  justify-content: center;
  pointer-events: auto
}

.tooltip-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 141, 235, .4)
}

.tooltip-cta i {
  width: 16px;
  height: 16px
}

/* =========================================================
   BLOG
   ========================================================= */
.blog {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #152554, #0F1E40);
  color: #fff;
  position: relative;
  overflow: hidden
}

.blog::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(15, 141, 235, .08) 0%, transparent 70%);
  pointer-events: none
}

.blog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1
}

.blog-head .section-h2 {
  flex: 1;
  min-width: 200px
}

.view-all-link {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  opacity: .8;
  border-bottom: 1.5px solid rgba(63, 182, 247, .5);
  padding-bottom: 3px;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 4px
}

.view-all-link:hover {
  opacity: 1;
  color: #3FB6F7;
  border-bottom-color: #3FB6F7
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  position: relative;
  z-index: 1
}

.blog-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid rgba(63, 182, 247, .15);
  border-radius: 14px;
  overflow: hidden;
  transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  height: 100%
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(63, 182, 247, .3);
  box-shadow: 0 12px 32px rgba(15, 141, 235, .2), 0 0 1px rgba(63, 182, 247, .3) inset
}

.bc-img {
  height: 180px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0
}

.bc-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease
}

.bc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 23, 51, .08) 0%, rgba(10, 23, 51, .34) 100%);
  pointer-events: none
}

.blog-card:hover .bc-photo {
  transform: scale(1.04)
}

.bc-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bc-body h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #fff;
  letter-spacing: -.02em;
}

.bc-body h4 a {
  color: inherit;
  transition: color 0.2s;
}

.bc-body h4 a:hover {
  color: var(--blue-400);
}

.bc-body p {
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.6;
  flex: 1
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: 60px 0 80px;
  background: #fff
}

.faq h2 {
  text-align: center;
  margin-bottom: 36px
}

.faq-grid {
  display: block;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
  margin-bottom: 9px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 13px;
  position: relative;
  z-index: 1;
}

.faq-item summary::-webkit-details-marker {
  display: none
}

.plus {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--blue-pill-bg);
  color: var(--blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}

.faq-item.is-open .plus {
  transform: rotate(45deg)
}

.faq-a {
  padding: 0 20px;
  color: var(--text-body);
  font-size: 13px;
  line-height: 1.65;
  display: none;
  overflow: hidden;
}

.faq-item.is-open {
  border-color: rgba(15, 141, 235, .18);
  box-shadow: 0 14px 28px rgba(15, 32, 66, .08)
}

.faq-item.is-open .faq-a {
  display: block;
  padding-bottom: 18px;
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact-section {
  padding: 60px 0 80px;
  background: radial-gradient(ellipse at top, #1A2D5E 0%, #0F1E40 60%, #0A1733 100%);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start
}

.contact-left .pill {
  margin-bottom: 14px
}

.contact-left p {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 1.7;
  margin: 14px 0
}

.contact-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px
}

.contact-right {
  background: rgba(20, 40, 86, .4);
  border: 1px solid rgba(63, 182, 247, .15);
  border-radius: 14px;
  padding: 28px;
}

.contact-right .pill {
  margin-bottom: 12px
}

.form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #fff
}

.form-sub {
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  margin-bottom: 18px
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 11px;
  color: rgba(255, 255, 255, .7);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background-color: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  padding: 11px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  box-sizing: border-box;
}

.contact-section .contact-form select {
  color-scheme: light;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.contact-section .contact-form select option {
  color: #0a1733;
  background-color: #fff;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form .btn-primary,
.contact-form button[type="submit"] {
  margin-top: 6px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, .3)
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-400);
  background: rgba(255, 255, 255, .07)
}

.form-disclaim {
  font-size: 10.5px;
  text-align: center;
  color: rgba(255, 255, 255, .5);
  margin-top: 4px
}

.contact-info {
  max-width: 1180px;
  margin: 38px auto 0;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.ci-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff
}

.ci-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(63, 182, 247, .15);
  color: var(--blue-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px
}

.ci-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, .55)
}

.ci-val {
  font-size: 13px;
  font-weight: 600
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #050B1F;
  color: #fff;
  padding: 50px 0 20px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px
}

.f-brand p {
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  margin: 14px 0;
  line-height: 1.6;
  max-width: 240px
}

.f-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, .65)
}

.f-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.45
}

.f-contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0F8DEB, #3FB6F7);
  color: #fff;
  box-shadow: 0 8px 18px rgba(15, 141, 235, .25);
  flex-shrink: 0
}

.f-contact-icon .lucide {
  width: 15px;
  height: 15px;
  stroke-width: 2.1
}

.solutions-text {
  color: var(--blue-400)
}

.footer .logo-mark {
  width: 120px;
}

.f-col h5 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff
}

.f-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.f-contact a {
  color: inherit;
  text-decoration: none
}

.f-contact a:hover {
  color: var(--blue-400)
}

.f-col li {
  font-size: 12px;
  color: rgba(255, 255, 255, .6)
}

.f-col li a {
  color: inherit;
  text-decoration: none;
  display: inline-block
}

.f-col li a:hover {
  color: var(--blue-400)
}

.f-note {
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.6;
  margin-top: 14px
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 11px;
  color: rgba(255, 255, 255, .5);
  flex-wrap: wrap;
  gap: 10px
}

.f-links {
  display: flex;
  gap: 18px
}

.f-links a:hover {
  color: var(--blue-400)
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .nav-links {
    display: none
  }

  .mobile-toggle {
    display: flex
  }

  .about-grid,
  .industries-grid,
  .global-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .about-img-wrap {
    margin: 0 auto
  }

  .services-grid,
  .hire-cards,
  .featured-grid,
  .why-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
  }

  .tech-icons {
    grid-template-columns: repeat(3, 1fr)
  }

  .awards-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .steps-wrap {
    grid-template-columns: repeat(2, 1fr)
  }

  .step-curve {
    display: none
  }

  .port-card {
    grid-template-columns: 1fr
  }

  .roles-grid {
    grid-template-columns: 1fr
  }

  .faq-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .vt-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 36px
  }

  .services-grid,
  .hire-cards,
  .featured-grid,
  .why-grid,
  .blog-grid,
  .awards-grid,
  .steps-wrap {
    grid-template-columns: 1fr
  }

  .row-2 {
    grid-template-columns: 1fr
  }

  .cb-inner {
    flex-direction: column;
    text-align: center
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .nav-cta {
    display: none
  }

  .navbar {
    padding: 14px
  }

  .hero-stats {
    gap: 8px
  }

  .stat {
    padding: 10px 14px;
    min-width: 0;
    flex: 1
  }
}

/* =========================================================
   Form selects — readable dropdown options everywhere
   ========================================================= */
select {
  color-scheme: light;
}

select option {
  color: #0a1733;
  background-color: #fff;
}

.service-form select,
.project-form select,
.hero-panel select,
.project-card select {
  color: #fff;
  color-scheme: light;
}

.page-contact .contact-form-box select,
.page-contact .contact-form-box .form-group select {
  color: var(--text-dark);
  background-color: #fff;
}