/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* LEFT */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

/* RIGHT */
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}










.mega-feature {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  transition: all 0.4s ease;
}

/* Hover Animation 🔥 */
.mega-feature:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 80, 255, 0.35);
}

/* Image zoom effect */
.mega-feature-img {
  transition: transform 0.8s ease;
}

.mega-feature:hover .mega-feature-img {
  transform: scale(1.1);
}





.service-card {
  transition: all 0.35s ease;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}










/* Index Page */

:root {
      --bg: #f5f7fb;
      --surface: #ffffff;
      --surface-2: #f0f4fa;
      --text: #0d1726;
      --muted: #5f6b7a;
      --line: rgba(11, 26, 51, 0.1);
      --line-strong: rgba(11, 26, 51, 0.16);
      --brand: #113d8d;
      --brand-2: #0b2f72;
      --accent: #45b6ff;
      --dark: #07111f;
      --shadow: 0 20px 60px rgba(10, 26, 52, 0.12);
      --radius-lg: 28px;
      --radius-md: 22px;
      --radius-sm: 16px;
      --container: 1320px;
      --nav-h: 88px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: linear-gradient(180deg, #eef4fb 0%, #f8fbff 16%, #ffffff 100%);
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button { font: inherit; }

    .container {
      width: min(var(--container), calc(100% - 48px));
      margin-inline: auto;
    }

    .section {
      padding: 110px 0;
      position: relative;
    }

    .eyebrow {
      color: var(--brand);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .section-title {
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.05;
      font-weight: 800;
      letter-spacing: -0.04em;
      max-width: 850px;
    }

    .section-copy {
      max-width: 760px;
      margin-top: 20px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.7;
    }

    .btn,
    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      height: 52px;
      border-radius: 999px;
      padding: 0 24px;
      font-size: 15px;
      font-weight: 700;
      transition: 0.28s ease;
      white-space: nowrap;
    }

    .btn {
      background: #fff;
      color: var(--text);
      border: 1px solid rgba(255,255,255,0.22);
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .btn:hover { transform: translateY(-2px); }

    .btn-outline {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255,255,255,0.22);
      backdrop-filter: blur(12px);
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      transition: 0.35s ease;
    }

    .site-header.scrolled {
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(18px);
      box-shadow: 0 10px 40px rgba(6, 23, 46, 0.08);
      border-bottom: 1px solid rgba(10, 35, 75, 0.08);
    }

    .header-inner {
      height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      transition: 0.35s ease;
      font-weight: 800;
      letter-spacing: -0.03em;
      font-size: 26px;
    }

    .site-header.scrolled .brand,
    .site-header.scrolled .main-nav > ul > li > a,
    .site-header.scrolled .hamburger { color: var(--text); }

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #42b5ff, #1f57d4 62%, #091b3f);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 8px 18px rgba(17, 61, 141, .35);
    }
    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 8px;
      border: 2px solid rgba(255,255,255,0.92);
      border-radius: 11px 6px 11px 6px;
      transform: rotate(45deg) scale(0.88);
    }
    .brand-mark::after {
      inset: 12px;
      opacity: .65;
    }

    .main-nav {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    .main-nav > ul {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .main-nav > ul > li {
      position: relative;
    }

    .main-nav > ul > li > a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.92);
      padding: 14px 14px;
      font-size: 18px;
      font-weight: 600;
      transition: 0.25s ease;
      border-radius: 12px;
    }

    .main-nav > ul > li:hover > a {
      background: rgba(255,255,255,0.1);
      color: #fff;
    }

    .site-header.scrolled .main-nav > ul > li:hover > a {
      background: rgba(15, 53, 119, 0.06);
      color: var(--brand);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .header-cta {
      height: 46px;
      padding: 0 22px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      color: var(--text);
      font-size: 14px;
      font-weight: 700;
      box-shadow: 0 10px 28px rgba(0,0,0,0.15);
      transition: 0.25s ease;
    }

    .header-cta:hover { transform: translateY(-2px); }

    .site-header.scrolled .header-cta {
      background: var(--brand);
      color: #fff;
      box-shadow: 0 12px 24px rgba(17,61,141,0.25);
    }

  .main-nav > ul {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  position: relative;
}

.has-mega {
  position: static;
}

.has-mega::after {
  content: "";
  position: fixed;
  top: 74px;   /* nav khali bridge */
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100vw - 40px));
  height: 22px;
  display: none;
  z-index: 998;
}

.has-mega:hover::after {
  display: block;
}

.mega-menu {
  position: fixed;
  top: 88px; /* header height */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(1180px, calc(100vw - 40px));
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(13, 29, 52, 0.08);
  box-shadow: 0 30px 70px rgba(12, 27, 50, 0.15);
  border-radius: 28px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.95fr;
  gap: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 999;
}

.has-mega:hover .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
    .mega-col {
      border-radius: 22px;
      padding: 22px;
      background: linear-gradient(180deg, #f8fbff, #eef4fb);
      border: 1px solid rgba(16, 49, 97, 0.08);
    }

    .mega-col h4 {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #5a6980;
      margin-bottom: 16px;
    }

    .mega-links {
      list-style: none;
      display: grid;
      gap: 14px;
    }

    .mega-links a {
      display: block;
      padding: 12px 14px;
      border-radius: 16px;
      background: rgba(255,255,255,0.7);
      border: 1px solid rgba(13,29,52,0.07);
      transition: 0.22s ease;
    }

    .mega-links a span {
      display: block;
      font-size: 12px;
      color: var(--muted);
      margin-top: 5px;
      line-height: 1.45;
    }

    .mega-links a:hover {
      transform: translateY(-2px);
      border-color: rgba(17,61,141,0.2);
      box-shadow: 0 14px 24px rgba(19,54,112,.08);
    }

    .mega-feature {
      border-radius: 22px;
      overflow: hidden;
      min-height: 100%;
      position: relative;
      padding: 24px;
      background: linear-gradient(135deg, #0d295d, #1746a6 55%, #42b5ff);
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      isolation: isolate;
    }

    .mega-feature::before,
    .hero-orb,
    .hero-grid,
    .hero-noise,
    .shape,
    .case-card::before,
    .glow {
      pointer-events: none;
    }

    .mega-feature::before {
      content: "";
      position: absolute;
      inset: -30% auto auto -10%;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 65%);
      z-index: -1;
    }

    .mega-feature p {
      color: rgba(255,255,255,0.8);
      margin-top: 10px;
      line-height: 1.6;
      font-size: 14px;
    }
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* VIDEO */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* DARK OVERLAY (important for text visibility) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, 0.55);
  z-index: 2;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-grid-wrap {
  max-width: 800px;
}

/* TEXT */
.hero-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #9ecbff;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 60px;
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero p {
  font-size: 16px;
  color: #d6e2f5;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 500px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 12px 26px;
  background: #113d8d;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
}

.btn-outline {
  padding: 12px 26px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  color: #fff;
}
    .stats-bar-wrap {
      position: relative;
      z-index: 3;
      margin-top: -42px;
    }

    .stats-bar {
      background: rgba(255,255,255,0.93);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(17,61,141,0.08);
      border-radius: 30px;
      box-shadow: 0 24px 60px rgba(10, 24, 45, 0.11);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      overflow: hidden;
    }

    .stat-item {
      padding: 28px 32px;
      position: relative;
    }

    .stat-item:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 18px;
      right: 0;
      width: 1px;
      height: calc(100% - 36px);
      background: linear-gradient(180deg, transparent, rgba(14, 39, 77, 0.12), transparent);
    }

    .stat-number {
      font-size: clamp(28px, 4vw, 48px);
      line-height: 1;
      font-weight: 800;
      letter-spacing: -0.05em;
      color: var(--brand-2);
    }

    .stat-label {
      margin-top: 10px;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
      max-width: 220px;
    }



















    
    .services-layout {
      display: grid;
      grid-template-columns: 360px 1fr;
      gap: 30px;
      margin-top: 58px;
    }

    .service-tabs {
      display: grid;
      gap: 12px;
      align-self: start;
      position: sticky;
      top: 110px;
    }

    .tab-btn {
      border: 1px solid rgba(17,61,141,0.08);
      background: #fff;
      color: var(--text);
      border-radius: 22px;
      text-align: left;
      padding: 22px;
      cursor: pointer;
      transition: 0.26s ease;
      box-shadow: 0 10px 25px rgba(10,24,45,0.04);
    }

    .tab-btn small {
      display: block;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: #75839a;
      margin-bottom: 8px;
      font-size: 11px;
      font-weight: 700;
    }

    .tab-btn strong {
      font-size: 19px;
      letter-spacing: -0.03em;
      display: block;
    }

    .tab-btn p {
      color: var(--muted);
      line-height: 1.65;
      font-size: 14px;
      margin-top: 10px;
    }

    .tab-btn.active,
    .tab-btn:hover {
      background: linear-gradient(135deg, #0f3a86, #194dac);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 20px 40px rgba(15,58,134,.2);
    }

    .tab-btn.active small,
    .tab-btn.active p,
    .tab-btn:hover small,
    .tab-btn:hover p { color: rgba(255,255,255,0.78); }

    .service-panel {
      display: none;
      background: linear-gradient(180deg, #ffffff, #f8fbff);
      border: 1px solid rgba(17,61,141,0.08);
      border-radius: 34px;
      padding: 34px;
      box-shadow: 0 30px 70px rgba(9,23,44,0.07);
    }

    .service-panel.active { display: block; animation: fadeIn .35s ease; }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .service-panel-top {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 30px;
      align-items: stretch;
    }

    .service-panel h3 {
      font-size: clamp(28px, 3.5vw, 44px);
      line-height: 1.06;
      letter-spacing: -0.04em;
      margin-bottom: 18px;
    }

    .service-panel p {
      color: var(--muted);
      line-height: 1.75;
      font-size: 16px;
      margin-bottom: 18px;
    }

    .service-feature {
      border-radius: 28px;
      padding: 28px;
      color: #fff;
      background: linear-gradient(135deg, #0d295d, #0f3b8e 55%, #42b5ff);
      min-height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      box-shadow: 0 24px 50px rgba(14,57,140,0.26);
    }

    .service-feature .eyebrow-lite {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.17em;
      color: rgba(255,255,255,0.7);
      margin-bottom: 14px;
    }

    .service-feature strong {
      display: block;
      font-size: 28px;
      line-height: 1.1;
      letter-spacing: -0.04em;
    }

    .service-feature p {
      margin-top: 14px;
      color: rgba(255,255,255,0.8);
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 0;
    }

    .service-grid {
      margin-top: 28px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .service-card {
      padding: 22px;
      background: #fff;
      border: 1px solid rgba(17,61,141,0.08);
      border-radius: 24px;
      transition: 0.25s ease;
      box-shadow: 0 10px 28px rgba(9,23,44,0.04);
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 44px rgba(9,23,44,0.08);
    }

    .service-card .icon {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      margin-bottom: 16px;
      color: #fff;
      font-weight: 800;
      background: linear-gradient(135deg, #194dac, #42b5ff);
    }

    .service-card h4 {
      font-size: 18px;
      letter-spacing: -0.03em;
      margin-bottom: 8px;
    }

    .service-card p {
      font-size: 14px;
      margin: 0;
      line-height: 1.7;
    }

    .case-studies {
      background:
        radial-gradient(circle at top left, rgba(69,182,255,0.14), transparent 30%),
        linear-gradient(180deg, #07111f 0%, #0a1731 60%, #0f2140 100%);
      color: #fff;
      overflow: hidden;
    }

    .case-studies .eyebrow,
    .case-studies .section-copy { color: rgba(255,255,255,0.75); }
    .case-studies .section-title { max-width: 960px; }

    .case-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 56px;
    }

    .case-card {
      position: relative;
      min-height: 420px;
      border-radius: 30px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
      box-shadow: 0 24px 50px rgba(0,0,0,0.22);
      transition: 0.3s ease;
      display: flex;
      align-items: flex-end;
      padding: 26px;
      isolation: isolate;
    }

    .case-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(4,8,18,0.78)),
        radial-gradient(circle at top right, rgba(69,182,255,0.25), transparent 30%);
      z-index: -1;
    }

    .case-card:hover {
      transform: translateY(-6px);
    }

    .case-meta {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: rgba(255,255,255,0.64);
      margin-bottom: 12px;
    }

    .case-card h3 {
      font-size: 28px;
      line-height: 1.05;
      letter-spacing: -0.04em;
      margin-bottom: 14px;
      max-width: 260px;
    }

    .case-card p {
      color: rgba(255,255,255,0.74);
      line-height: 1.7;
      font-size: 14px;
      max-width: 290px;
    }

    .industries-grid {
      margin-top: 58px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .industry-card {
      padding: 28px;
      border-radius: 28px;
      background: linear-gradient(180deg, #ffffff, #f8fbff);
      border: 1px solid rgba(17,61,141,0.08);
      box-shadow: 0 18px 40px rgba(9,23,44,0.05);
      transition: 0.25s ease;
    }

    .industry-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 50px rgba(9,23,44,0.08);
    }

    .industry-index {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      margin-bottom: 20px;
      background: linear-gradient(135deg, #ebf3ff, #d8ebff);
      color: var(--brand);
      font-size: 14px;
      font-weight: 800;
    }

    .industry-card h3 {
      font-size: 24px;
      letter-spacing: -0.03em;
      margin-bottom: 10px;
    }

    .industry-card p {
      color: var(--muted);
      line-height: 1.75;
      font-size: 15px;
      margin-bottom: 20px;
    }

    .industry-link {
      color: var(--brand);
      font-weight: 700;
      font-size: 14px;
    }

    .glance-wrap {
      margin-top: 58px;
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 28px;
      align-items: stretch;
    }

    .glance-grid {
      background: linear-gradient(180deg, #ffffff, #f8fbff);
      border: 1px solid rgba(17,61,141,0.08);
      border-radius: 34px;
      padding: 34px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      box-shadow: 0 24px 60px rgba(10,24,45,0.07);
    }

    .glance-item {
      padding: 28px 22px;
      border-radius: 26px;
      background: #fff;
      border: 1px solid rgba(13,29,52,0.06);
    }

    .glance-item strong {
      display: block;
      font-size: clamp(34px, 4vw, 54px);
      line-height: 1;
      letter-spacing: -0.05em;
      color: var(--brand);
      margin-bottom: 10px;
    }

    .glance-item span {
      color: var(--muted);
      line-height: 1.6;
      font-size: 14px;
      display: block;
    }

    .glance-card {
      border-radius: 34px;
      padding: 34px;
      color: #fff;
      background: linear-gradient(135deg, #0d295d, #1644a2 58%, #41b5ff);
      box-shadow: 0 24px 54px rgba(15,58,134,0.25);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }

    .glance-card::before {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      right: -40px;
      bottom: -40px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.26), rgba(255,255,255,0) 70%);
    }

    .glance-card h3 {
      position: relative;
      font-size: 38px;
      line-height: 1.05;
      letter-spacing: -0.04em;
      max-width: 360px;
    }

    .glance-card p {
      position: relative;
      margin-top: 18px;
      color: rgba(255,255,255,0.82);
      font-size: 15px;
      line-height: 1.8;
      max-width: 400px;
    }

    .logos-row {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
      margin-top: 54px;
    }

    .logo-chip {
      height: 94px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 22px;
      border: 1px solid rgba(13,29,52,0.07);
      background: #fff;
      box-shadow: 0 14px 36px rgba(10,24,45,0.04);
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.05em;
      color: #143a86;
    }

    .cta-band {
      padding: 0 0 110px;
      position: relative;
    }

    .cta-box {
      border-radius: 38px;
      background: linear-gradient(135deg, #07111f 0%, #0f3a86 45%, #42b5ff 100%);
      color: #fff;
      padding: 54px;
      box-shadow: 0 30px 70px rgba(7,17,31,0.24);
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 24px;
      align-items: center;
      overflow: hidden;
      position: relative;
    }

    .cta-box::before,
    .cta-box::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.22), rgba(255,255,255,0) 70%);
    }

    .cta-box::before {
      width: 360px;
      height: 360px;
      top: -160px;
      right: -40px;
    }

    .cta-box::after {
      width: 240px;
      height: 240px;
      left: -80px;
      bottom: -100px;
    }

    .cta-box h2 {
      font-size: clamp(34px, 5vw, 62px);
      line-height: 1.04;
      letter-spacing: -0.05em;
      position: relative;
    }

    .cta-box p {
      color: rgba(255,255,255,0.8);
      font-size: 16px;
      line-height: 1.75;
      margin-top: 18px;
      position: relative;
      max-width: 640px;
    }

    .cta-actions {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: flex-end;
    }

    .footer {
      background: #06111f;
      color: rgba(255,255,255,0.74);
      padding: 80px 0 42px;
      position: relative;
      overflow: hidden;
    }

    .footer::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(69,182,255,0.12), transparent 25%);
      pointer-events: none;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr repeat(4, 1fr);
      gap: 26px;
      position: relative;
    }

    .footer-brand {
      max-width: 330px;
    }

    .footer-brand .brand {
      color: #fff;
      margin-bottom: 18px;
    }

    .footer-brand p {
      line-height: 1.8;
      font-size: 15px;
    }

    .footer h4 {
      color: #fff;
      font-size: 15px;
      margin-bottom: 18px;
      letter-spacing: -0.02em;
    }

    .footer ul {
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .footer a { color: rgba(255,255,255,0.72); transition: 0.2s ease; }
    .footer a:hover { color: #fff; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      margin-top: 40px;
      padding-top: 22px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 16px;
      position: relative;
      font-size: 14px;
    }

    .hamburger {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.08);
      color: #fff;
      cursor: pointer;
    }

    @media (max-width: 1180px) {
      .hero-grid-wrap,
      .service-panel-top,
      .glance-wrap,
      .cta-box,
      .services-layout {
        grid-template-columns: 1fr;
      }
      .case-grid { grid-template-columns: repeat(2, 1fr); }
      .industries-grid { grid-template-columns: repeat(2, 1fr); }
      .glance-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-bar { grid-template-columns: repeat(2, 1fr); }
      .service-tabs { position: static; }
      .hero-side-card { margin-left: 0; }
      .cta-actions { justify-content: flex-start; }
      .footer-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-brand { grid-column: 1 / -1; max-width: none; }
      .ce-grid { grid-template-columns: repeat(2, 1fr); }
      .logos-row { grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 980px) {
      .main-nav {
        position: fixed;
        top: var(--nav-h);
        left: 16px;
        right: 16px;
        background: rgba(255,255,255,0.98);
        border: 1px solid rgba(13,29,52,0.08);
        border-radius: 28px;
        box-shadow: 0 30px 70px rgba(9,23,44,0.12);
        padding: 18px;
        justify-content: flex-start;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(14px);
        transition: 0.25s ease;
      }

      .main-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
      }

      .main-nav > ul {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
      }

      .main-nav > ul > li > a {
        color: var(--text) !important;
        background: #f8fbff;
        border: 1px solid rgba(13,29,52,0.06);
        justify-content: space-between;
      }

      .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        margin-top: 12px;
        grid-template-columns: 1fr;
        padding: 18px;
        box-shadow: none;
      }

      .has-mega.open .mega-menu { display: grid; }
      .has-mega:hover .mega-menu { transform: none; }

      .nav-right .header-cta { display: none; }
      .hamburger { display: inline-grid; place-items: center; }
      .hero { min-height: auto; }
      .hero-content { padding-top: calc(var(--nav-h) + 70px); }
      .hero-grid-wrap { min-height: auto; }
      .header-inner { height: 78px; }
      :root { --nav-h: 78px; }
    }

    @media (max-width: 720px) {
      .container { width: min(var(--container), calc(100% - 28px)); }
      .section { padding: 86px 0; }
      .hero h1 { font-size: 46px; }
      .hero p { font-size: 16px; }
      .service-grid,
      .industries-grid,
      .case-grid,
      .stats-bar,
      .glance-grid,
      .logos-row,
      .footer-grid { grid-template-columns: 1fr; }
      .service-panel,
      .glance-grid,
      .cta-box,
      .case-card,
      .glance-card,
      .hero-side-card,
      .stats-bar,
      .industry-card { border-radius: 24px; }
      .stat-item:not(:last-child)::after { display: none; }
      .cta-box,
      .glance-card,
      .service-panel,
      .glance-grid { padding: 24px; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
      .btn, .btn-outline { width: 100%; }
      .hero-side-card { padding: 20px; }
    }

    /* =========================
   OUR PROJECTS SECTION
========================= */
/* =========================
   OUR PROJECTS STACK SECTION
========================= */
.our-projects-stack {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  overflow: hidden;
  padding-top: 60px;   /* pahile 110px hota → ata kami */
  padding-bottom: 100px;
}

.projects-stack-head {
  margin-bottom: 50px;
    margin-top: 0;
     max-width: 750px;
  margin-bottom: 40px; /* 70px → reduce */
}
.projects-stack-head {
  opacity: 0;
  transform: translateY(40px);
  animation: headReveal 1s ease forwards;
}

@keyframes headReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.projects-stack-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Full width stack card */
.project-stack-card {
  position: sticky;
  top: 110px;
  width: 100%;
  min-height: 430px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 34px;
  padding: 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(13, 29, 52, 0.08);
  box-shadow: 0 24px 50px rgba(10, 24, 45, 0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-stack-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(10, 24, 45, 0.16);
}

/* Left image */
.project-stack-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #dfeeff, #edf5ff);
  border: 1px solid rgba(17, 61, 141, 0.08);
}

.project-stack-image {
  aspect-ratio: 16/10;
}

.project-stack-image img {
  object-fit: cover;
  object-position: center;
}

.project-stack-card:hover .project-stack-image img {
  transform: scale(1.05);
}

/* Right content */
.project-stack-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-stack-meta {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #113d8d;
}

.project-stack-content h3 {
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #0d1726;
  margin-bottom: 16px;
}

.project-stack-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #5f6b7a;
  margin-bottom: 20px;
  max-width: 560px;
}

.project-stack-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #113d8d;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s ease, color 0.25s ease;
}

.project-stack-link:hover {
  transform: translateX(4px);
  color: #0b2f72;
}

/* Stack depth effect */
.project-stack-card:nth-child(1) {
  z-index: 4;
}

.project-stack-card:nth-child(2) {
  z-index: 3;
}

.project-stack-card:nth-child(3) {
  z-index: 2;
}

.project-stack-card:nth-child(4) {
  z-index: 1;
}

/* Scroll reveal base */
.project-stack-card {
  opacity: 0;
  transform: translateY(80px) scale(0.98);
}

.project-stack-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Responsive */
@media (max-width: 1100px) {
  .project-stack-card {
    grid-template-columns: 1fr;
    min-height: auto;
    top: 90px;
  }

  .project-stack-image {
    min-height: 280px;
  }

  .project-stack-content h3 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .our-projects-stack {
    padding: 85px 0;
  }

  .project-stack-card {
    padding: 18px;
    border-radius: 24px;
    gap: 20px;
    top: 80px;
  }

  .project-stack-image {
    min-height: 220px;
    border-radius: 18px;
  }

  .project-stack-content h3 {
    font-size: 24px;
  }

  .project-stack-content p {
    font-size: 14px;
    line-height: 1.8;
  }
}

.projects-stack-head .section-title {
  margin: 0 auto;
    font-size: 48px;
  line-height: 1.05;

}

.projects-stack-head .section-copy {
  margin: 20px auto 0;
}
.startup-intro {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.startup-intro-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.startup-intro-left .section-title {
  max-width: 700px;
  margin-bottom: 18px;
}

.startup-intro-left .section-copy {
  max-width: 620px;
}

.startup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(13, 29, 52, 0.12);
  color: #0d1726;
  font-size: 15px;
  font-weight: 700;
  background: #fff;
  transition: 0.25s ease;
}

.btn-outline-dark:hover {
  transform: translateY(-2px);
}

.startup-intro-right {
  display: grid;
  gap: 18px;
}

.intro-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(13, 29, 52, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(10, 24, 45, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(10, 24, 45, 0.12);
}

.intro-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #113d8d, #45b6ff);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.intro-card h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: #0d1726;
}

.intro-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #5f6b7a;
}

/* optional reveal */
.startup-intro-left,
.intro-card {
  opacity: 0;
  transform: translateY(35px);
  animation: startupReveal 0.9s ease forwards;
}

.intro-card:nth-child(1) { animation-delay: 0.15s; }
.intro-card:nth-child(2) { animation-delay: 0.3s; }
.intro-card:nth-child(3) { animation-delay: 0.45s; }

@keyframes startupReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .startup-intro-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .startup-intro {
    padding: 70px 0;
  }

  .startup-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-outline-dark,
  .startup-actions .btn {
    width: 100%;
  }

  .intro-card {
    border-radius: 20px;
    padding: 20px;
  }

  .intro-card h3 {
    font-size: 20px;
  }

  .intro-card p {
    font-size: 14px;
  }
}

/* =========================
   HOW WE WORK SECTION
========================= */
.workflow-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  overflow: hidden;
}

.workflow-head {
  text-align: center;
  margin-bottom: 50px;
}

.workflow-title {
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #0d1726;
  font-weight: 800;
  margin-top: 10px;
}

.workflow-wrap {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 300px;
  margin: 0 auto;
}

.workflow-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.workflow-path path {
  fill: none;
  stroke: #4b66d1;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  opacity: 0.9;
}

.workflow-step {
  position: absolute;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: 0.6s ease;
}

.workflow-step.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.step-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #4b66d1;
  box-shadow: 0 0 0 10px rgba(75, 102, 209, 0.12);
  margin: 0 auto;
}

.step-label {
  margin-top: 14px;
  padding: 14px 20px;
  min-width: 170px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(13, 29, 52, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(10, 24, 45, 0.08);
  text-align: center;
}

.step-number {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #113d8d;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.step-label h3 {
  font-size: 28px;
  line-height: 1.05;
  color: #0d1726;
  margin: 0;
  letter-spacing: -0.03em;
  font-weight: 800;
}

/* Positions */
.step-1 {
  left: 4%;
  top: 10%;
}

.step-2 {
  left: 30%;
  top: 56%;
}

.step-3 {
  left: 58%;
  top: 28%;
}

.step-4 {
  right: 1%;
  top: 12%;
}

/* Mobile */
@media (max-width: 992px) {
  .workflow-wrap {
    height: auto;
    display: grid;
    gap: 18px;
  }

  .workflow-path {
    display: none;
  }

  .workflow-step {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    opacity: 1;
    transform: none;
  }

  .step-dot {
    margin: 0 auto 10px;
  }

  .step-label {
    min-width: 100%;
  }

  .workflow-title {
    font-size: 34px;
  }

  .step-label h3 {
    font-size: 24px;
  }
}

.languages-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  overflow: hidden;
}

.languages-head {
  text-align: center;
  margin-bottom: 50px;
}

.languages-title {
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #0d1726;
  font-weight: 800;
  margin-top: 10px;
}

.languages-diagram {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  min-height: 260px;
  padding-top: 20px;
}

/* Top horizontal line */
.top-line {
  position: absolute;
  top: 20px;
  left: 4%;
  width: 92%;
  height: 3px;
  background: #2f56c7;
  transform-origin: left center;
  transform: scaleX(0);
  border-radius: 999px;
}

/* Each language item */
.lang-item {
  position: absolute;
  top: 20px;
  opacity: 0;
  transform: translateY(-10px);
}

/* Vertical branch line */
.branch {
  width: 3px;
  height: 70px;
  background: #2f56c7;
  margin: 0 auto;
  transform-origin: top center;
  transform: scaleY(0);
  border-radius: 999px;
}

/* Language box */
.lang-box {
  margin-top: 10px;
  min-width: 120px;
  padding: 14px 20px;
  text-align: center;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(13, 29, 52, 0.10);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(10, 24, 45, 0.08);
  color: #0d1726;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transform: translateY(20px) scale(0.94);
}

/* Positions */
.item-1 { left: 6%; }
.item-2 { left: 20%; }
.item-3 { left: 34%; }
.item-4 { left: 49%; }
.item-5 { left: 64%; }
.item-6 { left: 78%; }
.item-7 { left: 91%; transform: translateX(-100%); }

/* Active animation states */
.languages-diagram.active .top-line {
  animation: drawTopLine 1s ease forwards;
}

.lang-item.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lang-item.show .branch {
  animation: drawBranch 0.4s ease forwards;
}

.lang-item.show .lang-box {
  animation: showBox 0.5s ease forwards;
}

/* Animations */
@keyframes drawTopLine {
  to {
    transform: scaleX(1);
  }
}

@keyframes drawBranch {
  to {
    transform: scaleY(1);
  }
}

@keyframes showBox {
  to {
    transform: translateY(0) scale(1);
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .languages-diagram {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 18px;
    padding-top: 0;
  }

  .top-line {
    display: none;
  }

  .lang-item {
    position: relative;
    top: auto;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    opacity: 1;
  }

  .branch {
    height: 36px;
    transform: scaleY(1);
  }

  .lang-box {
    transform: none;
    min-width: 100%;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .languages-section {
    padding: 80px 0;
  }

  .languages-title {
    font-size: 32px;
  }

  .languages-diagram {
    grid-template-columns: repeat(2, 1fr);
  }

  .lang-box {
    font-size: 16px;
    padding: 12px 14px;
  }
}
/* =========================
   FLASH SCREEN
========================= */
#flash-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background:
    radial-gradient(circle at 20% 20%, rgba(69,182,255,0.16), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(17,61,141,0.12), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#flash-screen.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.flash-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  animation: flashFloat 6s ease-in-out infinite;
}

.flash-bg-glow.glow-1 {
  width: 240px;
  height: 240px;
  background: rgba(69,182,255,0.24);
  top: 12%;
  left: 10%;
}

.flash-bg-glow.glow-2 {
  width: 280px;
  height: 280px;
  background: rgba(17,61,141,0.16);
  bottom: 10%;
  right: 10%;
  animation-delay: 1.4s;
}

.flash-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.flash-brand {
  animation: flashReveal 1s ease forwards;
}

.flash-logo-box {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, #42b5ff, #1f57d4 62%, #091b3f);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.32),
    0 18px 40px rgba(17,61,141,0.22);
  position: relative;
  overflow: hidden;
}

.flash-logo-box::before,
.flash-logo-box::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255,255,255,0.92);
  border-radius: 12px 7px 12px 7px;
  transform: rotate(45deg);
}

.flash-logo-box::before {
  inset: 18px;
}

.flash-logo-box::after {
  inset: 26px;
  opacity: 0.65;
}

.flash-logo-core {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 20px rgba(255,255,255,0.6);
}

.flash-brand h1 {
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.06em;
  color: #0d1726;
  font-weight: 900;
  margin-bottom: 10px;
}

.flash-brand p {
  font-size: 15px;
  color: #5f6b7a;
  letter-spacing: 0.04em;
}

.flash-loader-wrap {
  width: 280px;
  height: 8px;
  margin: 34px auto 0;
  background: rgba(17,61,141,0.08);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
}

.flash-loader-bar {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #113d8d, #45b6ff);
  animation: flashLoad 2.8s ease forwards;
}

/* Animations */
@keyframes flashReveal {
  0% {
    opacity: 0;
    transform: translateY(26px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes flashLoad {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes flashFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-18px);
  }
}

@media (max-width: 768px) {
  .flash-logo-box {
    width: 74px;
    height: 74px;
    border-radius: 20px;
  }

  .flash-brand h1 {
    font-size: 38px;
  }

  .flash-brand p {
    font-size: 13px;
  }

  .flash-loader-wrap {
    width: 220px;
  }
}

/* =========================
   STARTUP INTRO SECTION
========================= */
/* =========================
   DYNAMIC STARTUP INTRO
========================= */
.dynamic-intro {
  position: relative;
  padding: 100px 0;
  background:
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  overflow: hidden;
}

.intro-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
  animation: floatBlob 8s ease-in-out infinite;
  opacity: 0.8;
}

.shape-a {
  width: 260px;
  height: 260px;
  top: 8%;
  left: -80px;
  background: rgba(69, 182, 255, 0.20);
}

.shape-b {
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: 0;
  background: rgba(17, 61, 141, 0.14);
  animation-delay: 1.8s;
}

.startup-intro-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 36px;
  align-items: center;
}

.startup-intro-left {
  max-width: 720px;
}

.startup-intro-left .section-title {
  max-width: 700px;
  margin-bottom: 18px;
}

.startup-intro-left .section-copy {
  max-width: 620px;
}

.startup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(13, 29, 52, 0.12);
  color: #0d1726;
  font-size: 15px;
  font-weight: 700;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  transition: 0.28s ease;
  box-shadow: 0 10px 28px rgba(10, 24, 45, 0.04);
}

.btn-outline-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(10, 24, 45, 0.08);
}

.startup-intro-right {
  display: grid;
  gap: 18px;
  perspective: 1000px;
}

.intro-card {
  position: relative;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(13, 29, 52, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(10, 24, 45, 0.08);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
}

.intro-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #113d8d, #45b6ff);
  opacity: 0.95;
}

.intro-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -40px;
  bottom: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 182, 255, 0.16), transparent 72%);
  pointer-events: none;
  transition: transform 0.35s ease;
}

.intro-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 56px rgba(10, 24, 45, 0.14);
}

.intro-card:hover::after {
  transform: scale(1.12);
}

.offset-card {
  margin-left: 26px;
}

.offset-card-2 {
  margin-left: 52px;
}

.intro-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #113d8d, #45b6ff);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(17, 61, 141, 0.18);
}

.intro-card h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: #0d1726;
}

.intro-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #5f6b7a;
}

/* runtime reveal */
.reveal-up,
.reveal-left {
  opacity: 0;
  will-change: transform, opacity;
}

.reveal-up {
  transform: translateY(45px);
}

.reveal-left {
  transform: translateX(-45px);
}

.reveal-visible {
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.delay-1.reveal-visible { transition-delay: 0.12s; }
.delay-2.reveal-visible { transition-delay: 0.24s; }
.delay-3.reveal-visible { transition-delay: 0.36s; }

@keyframes floatBlob {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.04); }
}

@media (max-width: 1100px) {
  .startup-intro-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .startup-intro-left,
  .startup-intro-left .section-title,
  .startup-intro-left .section-copy {
    max-width: 100%;
  }

  .offset-card,
  .offset-card-2 {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .dynamic-intro {
    padding: 72px 0;
  }

  .startup-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .startup-actions .btn,
  .btn-outline-dark {
    width: 100%;
  }

  .intro-card {
    border-radius: 20px;
    padding: 20px;
  }

  .intro-card h3 {
    font-size: 20px;
  }

  .intro-card p {
    font-size: 14px;
  }
}


.mega-feature {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 500px;
  padding: 0;
  background: linear-gradient(135deg, #163d9a 0%, #1f57d6 55%, #49a6ff 100%);
  display: flex;
  align-items: flex-end;
  box-shadow: 0 20px 45px rgba(22, 61, 154, 0.25);
}

.mega-feature-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 20, 60, 0.08) 0%,
    rgba(8, 20, 60, 0.22) 35%,
    rgba(8, 20, 60, 0.82) 100%
  );
  z-index: 1;
}

.mega-feature-content {
  position: relative;
  z-index: 2;
  padding: 34px 30px;
  color: #fff;
  width: 100%;
}

.mega-feature-content h3 {
  margin: 0 0 16px;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
}

.mega-feature-content p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  max-width: 95%;
}

@media (max-width: 991px) {
  .mega-feature {
    min-height: 420px;
    border-radius: 26px;
  }

  .mega-feature-content {
    padding: 28px 22px;
  }

  .mega-feature-content h3 {
    font-size: 1.7rem;
  }

  .mega-feature-content p {
    font-size: 1rem;
    line-height: 1.65;
  }
}

@media (max-width: 576px) {
  .mega-feature {
    min-height: 360px;
    border-radius: 22px;
  }

  .mega-feature-content h3 {
    font-size: 1.4rem;
  }

  .mega-feature-content p {
    font-size: 0.95rem;
    max-width: 100%;
  }
}
.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

/* Hover Effects 🔥 */
.footer-social a:hover {
  transform: translateY(-6px);
}

/* Brand colors */
.footer-social a:hover .fa-whatsapp {
  color: #25D366;
}
.footer-social a:hover .fa-instagram {
  color: #E1306C;
}
.footer-social a:hover .fa-linkedin-in {
  color: #0077b5;
}





/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== GRID ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* ===============================
   INDUSTRIES SECTION
================================== */
#industries {
  padding: 90px 0;
  background: #f7f9fc;
  overflow: hidden;
}

#industries .container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

#industries .eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4c6485;
  margin-bottom: 14px;
}

#industries .section-title {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  font-weight: 700;
  color: #0f172a;
  max-width: 900px;
  margin: 0 0 18px;
}

#industries .section-copy {
  max-width: 820px;
  font-size: 17px;
  line-height: 1.75;
  color: #5b6b82;
  margin: 0 0 44px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.industry-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5ebf4;
  border-radius: 28px;
  padding: 28px 24px;
  min-width: 0;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
}

.industry-index {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: #d8e5fb;
  margin-bottom: 18px;
}

.industry-card h3 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 14px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.industry-card p {
  font-size: 17px;
  line-height: 1.75;
  color: #617287;
  margin: 0 0 18px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.industry-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #1f57d6;
}

/* ===============================
   TABLET
================================== */
@media (max-width: 991px) {
  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .industry-card h3 {
    font-size: 24px;
  }

  .industry-card p {
    font-size: 16px;
  }
}

/* ===============================
   MOBILE
================================== */
@media (max-width: 767px) {
  #industries {
    padding: 64px 0;
  }

  #industries .container {
    width: min(100%, calc(100% - 24px));
  }

  #industries .section-title {
    font-size: 28px;
    line-height: 1.2;
  }

  #industries .section-copy {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .industry-card {
    width: 100%;
    min-width: 0;
    padding: 20px 18px;
    border-radius: 20px;
  }

  .industry-index {
    font-size: 38px;
    margin-bottom: 12px;
  }

  .industry-card h3 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .industry-card p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 14px;
  }

  .industry-link {
    font-size: 14px;
  }
}
/* ===== INDUSTRIES ANIMATION ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* stagger effect */
.industries-grid .industry-card:nth-child(1) { transition-delay: 0.05s; }
.industries-grid .industry-card:nth-child(2) { transition-delay: 0.12s; }
.industries-grid .industry-card:nth-child(3) { transition-delay: 0.19s; }
.industries-grid .industry-card:nth-child(4) { transition-delay: 0.26s; }
.industries-grid .industry-card:nth-child(5) { transition-delay: 0.33s; }
.industries-grid .industry-card:nth-child(6) { transition-delay: 0.40s; }

/* card hover runtime effect */
.industry-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 98, 255, 0.08), rgba(83, 176, 255, 0.02));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(20, 41, 87, 0.10);
  border-color: rgba(52, 103, 255, 0.22);
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-index {
  transition: transform 0.35s ease, color 0.35s ease;
}

.industry-card:hover .industry-index {
  transform: scale(1.08);
  color: #8bb7ff;
}

.industry-link {
  transition: transform 0.3s ease, color 0.3s ease;
}

.industry-card:hover .industry-link {
  transform: translateX(6px);
  color: #1f57d6;
}
.reveal-box {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-box.active {
  opacity: 1;
  transform: translateY(0);
}