:root {
  /* Brand Accents */
  --blue: #4f6ef7;
  --blue-dark: #3b5bdb;
  --blue-tint: rgba(79, 110, 247, 0.12);
  --blue-soft: rgba(79, 110, 247, 0.08);
  --blue-soft-2: rgba(79, 110, 247, 0.16);
  --blue-border: rgba(79, 110, 247, 0.28);
  --orange: #ff7a00;
  --gold: #f59e0b;
  --primary: #4f6ef7;

  /* Codex Black Surfaces */
  --bg-primary: #000000;
  --bg-surface: #0E0E0E;
  --bg-surface-elevated: #141414;
  --surface: #0E0E0E;
  --bg-card: #111111;
  --bg-card-hover: #1A1A1A;
  --white: #ffffff;

  /* Typography Colors */
  --text: #ffffff;
  --text-primary: #ffffff;
  --text-secondary: #A0A0A0;
  --text-muted: #6B6B6B;
  --gray: #A0A0A0;
  --gray-light: #D0D0D0;
  --muted: #6B6B6B;

  /* Lines & Borders */
  --line: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.07);
  --border-focus: rgba(79, 110, 247, 0.5);

  /* Geometry & Shadows */
  --radius: 14px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 12px 40px -8px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 30px 70px -20px rgba(0, 0, 0, 0.85);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: #000000; color-scheme: dark; }
body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #A0A0A0;
  background: #000000;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
main { padding-top: 88px; }
section { position: relative; }
.section-pad { padding: 96px 0; }

h1, h2, h3, h4, .display {
  font-family: Manrope, Inter, sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #ffffff;
}
p { color: #A0A0A0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Manrope, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #34d399;
  margin-bottom: 16px;
}
.eyebrow::before { display: none; }
.accent { color: var(--orange); }
.blue-text { color: var(--blue); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: #ffffff;
  color: #000000 !important;
  box-shadow: 0 4px 20px rgba(255,255,255,0.12);
}
.btn-primary:hover { background: #f0f0f0; box-shadow: 0 10px 30px rgba(255,255,255,0.2); }
.btn-ghost {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
}
.btn-ghost:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.25); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-arrow { transition: transform .25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 999;
    padding: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.97);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.7);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}


.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
}

.logo img {
    display: block;
    width: auto;
    height: 35PX;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 6px rgba(13, 91, 255, 0.12));
}

.site-header.scrolled .logo img {
    height: 30px;
}

@media (max-width: 992px) {
    .logo img {
        height: 30px;
        max-width: 170px;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 26px;
        max-width: 140px;
    }

    .site-header {
        padding: 10px 0;
    }
}
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--navy); transition: color .2s ease; }
.nav-links a:hover { color: var(--blue); }
.nav-links a.active { color: var(--blue); font-weight: 700; position: relative; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
}
.nav-dropdown { position: relative; }
.nav-link-dropdown { display: inline-flex; align-items: center; gap: 6px; }
.nav-link-dropdown i { font-size: 11px; transition: transform .2s ease; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 50px -24px rgba(11,15,25,0.36);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
  z-index: 50;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown:hover .nav-link-dropdown i,
.nav-dropdown:focus-within .nav-link-dropdown i {
  transform: rotate(180deg);
}
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: rgba(13, 91, 255, 0.08);
  color: var(--blue);
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 4px;
}
.social-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(13, 91, 255, 0.08);
  color: var(--blue);
  transition: background .2s ease, color .2s ease;
}
.social-links a:hover {
  background: rgba(13, 91, 255, 0.18);
  color: var(--blue-dark);
}
.social-links svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 768px) {
  .social-links { display: none; }
}
.nav-toggle { display: none; }
.icon-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: transform .35s var(--ease), opacity .35s ease, visibility .35s ease;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu .mm-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.mobile-menu a { padding: 14px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.mobile-services { display: flex; flex-direction: column; gap: 4px; margin: 0 0 6px 12px; }
.mobile-services a { padding: 8px 0; border: 0; font-size: 13px; font-weight: 600; color: var(--navy); }
.mobile-services a:hover { color: var(--blue); }

.hero {
  position: relative;
  padding: 120px 0 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(5, 14, 35, 0.88) 0%, rgba(13, 91, 255, 0.8) 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center; /* Exact center as requested */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 10, 24, 0.92) 0%, rgba(4, 10, 24, 0.65) 50%, rgba(4, 10, 24, 0.4) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 { font-size: clamp(34px, 4.5vw, 56px); margin-bottom: 20px; color: var(--white); }
.hero-sub { font-size: 18px; margin-bottom: 28px; max-width: 560px; color: rgba(255,255,255,0.9); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 24px; }
.hstat b { display: block; font-size: 25px; font-family: Manrope, sans-serif; color: var(--white); }
.hstat span { color: rgba(255,255,255,0.8); font-size: 13px; }
.hero-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(238, 244, 255, 0.95) 100%);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  border: 1px solid var(--blue-border);
  box-shadow: 0 22px 56px -24px rgba(13, 91, 255, 0.28);
  padding: 24px;
  display: grid;
  gap: 16px;
}
.hero-card.hero-visual {
  display: none;
}
.hero-card .card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-card .mini-card { padding: 16px; border-radius: 18px; background: var(--surface); }
.hero-card .mini-card strong { display: block; margin-bottom: 4px; }

.page-hero {
  padding: 110px 0 44px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(13, 91, 255, 0.08) 0%, #ffffff 90%);
}
.page-hero h1 { font-size: clamp(30px, 3.8vw, 44px); margin-bottom: 16px; }
.page-hero p { font-size: 17px; max-width: 720px; }

.careers-hero {
  background: linear-gradient(135deg, rgba(13, 91, 255, 0.12) 0%, #ffffff 80%);
}

.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 12px; }

.careers-section {
  padding-top: 20px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.job-card {
  background: linear-gradient(145deg, #ffffff 0%, #f6faff 100%);
  border: 1px solid var(--blue-border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 14px;
}

.job-card .apply-btn {
  margin-top: auto;
  align-self: flex-start;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 91, 255, 0.2);
}

.job-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.job-type {
  display: inline-block;
  background: rgba(13, 91, 255, 0.08);
  color: var(--blue);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.job-card h3 {
  font-size: 20px;
  margin: 0;
  color: var(--navy);
}

.job-location {
  font-size: 13px;
  color: var(--blue-dark);
  font-weight: 700;
  white-space: nowrap;
}

.job-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.job-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.job-bullets li {
  padding-left: 16px;
  position: relative;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.6;
}

.job-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.application-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.application-modal.open {
  display: flex;
}

.application-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 20, 0.6);
  backdrop-filter: blur(6px);
}

.application-modal-card {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(90vh, 860px);
  overflow: auto;
  background: #111111;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255,255,255,0.08);
}

.application-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(13, 91, 255, 0.08);
  color: var(--blue);
  cursor: pointer;
}

.application-modal-head {
  margin-bottom: 20px;
}

.application-modal-head h3 {
  font-size: 24px;
  margin: 8px 0 6px;
  color: var(--navy);
}

.application-modal-head p {
  color: var(--muted);
  margin: 0;
}

.application-form {
  display: grid;
  gap: 16px;
}

.application-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--navy);
}

.application-form input,
.application-form textarea,
.application-form .file-upload input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: var(--navy);
  background: #fbfdff;
}

.application-form textarea {
  resize: vertical;
  min-height: 110px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.file-upload {
  padding: 12px 14px;
  border: 1px dashed var(--blue-border);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(13, 91, 255, 0.04), rgba(13, 91, 255, 0.08));
}

.file-upload input {
  border: 0;
  padding: 0;
  background: transparent;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
}

.form-success {
  display: none;
  margin: 0;
  color: #0f8a3d;
  font-weight: 700;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .application-modal-card {
    padding: 24px 18px;
    border-radius: 20px;
    width: 94%;
  }
  .form-actions {
    justify-content: stretch;
  }
  .form-actions .btn {
    width: 100%;
  }
}

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }

@media (max-width: 992px) {
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 16px; }
}

/*=============================
        SERVICES SECTION
=============================*/

.services-section {
  padding: 90px 0;
  background: linear-gradient(to right, #ffffff, #e8ffff);
}

.services-heading {
  margin-bottom: 50px;
}

.service-tag {
  display: inline-block;
  font-size: 18px;
  letter-spacing: 5px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.services-heading h2 {
  font-size: 64px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: #111111;
  border: 1px solid rgba(255,255,255,0.07);
}

.service-card img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .4s var(--ease);
}

.service-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  transition: .4s;
}

.service-card h3 {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  z-index: 2;
  text-shadow: 0 6px 18px rgba(2,6,23,0.5);
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card:hover .overlay {
  background: rgba(13, 91, 255, .35);
}

.service-card:hover h3 {
  transform: translateY(-4px);
}

.service-card h3 {
  transition: transform .3s var(--ease);
}

.partners-section {
  padding: 80px 0;
}

.partners-heading {
  margin-bottom: 32px;
}

.partners-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.partners-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--navy);
  font-size: 17px;
}

.center.partners-heading h2 {
  color: var(--blue-dark);
}

.center.partners-heading p {
  color: var(--navy);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.partner-card {
  background: linear-gradient(145deg, #ffffff 0%, #f6faff 100%);
  border: 1px solid var(--blue-border);
  border-radius: 18px;
  padding: 18px 20px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 91, 255, 0.25);
}

.partner-card img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 78px;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.1) contrast(1.05);
  opacity: 0.95;
}

/* Tablet */

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .services-heading h2 {
    font-size: 36px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .partner-card {
    min-height: 110px;
    padding: 14px;
  }

  .partner-card img {
    max-height: 60px;
  }

  .job-card {
    padding: 20px;
  }

  .job-card-top {
    flex-direction: column;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card img {
    height: 180px;
  }
}

.card {
  background: linear-gradient(145deg, var(--white) 0%, var(--blue-soft) 100%);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-tint);
  display: grid;
  place-items: center;
  color: var(--blue);
  margin-bottom: 15px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.team-card {
  background: linear-gradient(145deg, var(--white) 0%, var(--blue-soft) 100%);
  border: 1px solid var(--blue-border);
  border-radius: 28px;
  padding: 28px 22px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-avatar {
  width: 132px;
  height: 132px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(13, 91, 255, 0.16);
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-name {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 800;
}
.team-role {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.team-company {
  color: var(--blue-dark);
  font-size: 13.5px;
  font-weight: 700;
}
.org-tree {
  display: grid;
  gap: 28px;
  margin-top: 32px;
}
.org-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.org-card {
  border-radius: 28px;
  padding: 28px 24px;
  background: linear-gradient(145deg, var(--white) 0%, var(--blue-soft) 100%);
  border: 1px solid var(--blue-border);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.org-lead {
  position: relative;
}
.org-avatar {
  width: 124px;
  height: 124px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(13, 91, 255, 0.16);
}
.org-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.org-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}
.org-role {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.75;
}
.org-branches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.branch-card {
  border-radius: 26px;
  padding: 24px;
  background: rgba(13, 91, 255, 0.06);
  border: 1px solid rgba(13, 91, 255, 0.16);
  text-align: center;
}
.branch-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.branch-person {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.branch-role {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.6;
}
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { margin-bottom: 14px; font-size: 14.5px; }
.card-link { color: var(--blue); font-weight: 700; font-size: 13.5px; display: inline-flex; align-items: center; gap: 6px; }

.feature-list { display: grid; gap: 18px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-item .num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-tint);
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

.achievements-section {
  padding: 80px 0;
}

.achievement-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  padding: 40px;
  border-radius: 32px;
  border: 1px solid var(--blue-border);
  background: linear-gradient(135deg, rgba(13, 91, 255, 0.08) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 24px 70px -32px rgba(10, 63, 204, 0.24);
}

.achievement-content h2 {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.15;
  margin: 12px 0 16px;
  color: var(--navy);
}

.achievement-content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 560px;
}

.achievement-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stat-box {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff 0%, #f5f8ff 100%);
  border: 1px solid var(--blue-border);
  box-shadow: 0 16px 35px -24px rgba(13, 91, 255, 0.3);
  min-height: 138px;
}

.stat-box h3 {
  font-size: 30px;
  line-height: 1;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 992px) {
  .achievement-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .achievement-grid {
    padding: 24px;
  }

  .achievement-stats {
    grid-template-columns: 1fr;
  }
}

.chip-row { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { padding: 12px 18px; border: 1px solid var(--line); border-radius: 999px; font-weight: 600; }

.pricing-card { display: flex; flex-direction: column; height: 100%; }
.pricing-card.featured {
  background: linear-gradient(135deg, rgba(79, 110, 247, 0.14) 0%, rgba(14, 21, 38, 0.95) 100%);
  color: #ffffff;
  border-color: rgba(79, 110, 247, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(79, 110, 247, 0.3);
}
.pricing-card.featured p, .pricing-card.featured li { color: #cbd5e1; }
.pricing-amount { font-size: 34px; font-weight: 800; margin: 18px 0 20px; }
.pricing-amount span { font-size: 14px; color: var(--gray); }
.pricing-card.featured .pricing-amount span { color: #94a3b8; }
.price-list { display: grid; gap: 10px; margin-bottom: 20px; }
.price-list li { display: flex; gap: 8px; align-items: flex-start; }
.price-list svg { color: var(--blue); margin-top: 3px; flex-shrink: 0; }
.pricing-card.featured svg { color: var(--orange); }

.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-question { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-weight: 700; padding-right: 6px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-answer p { padding-top: 10px; }
.faq-item.open .faq-answer { max-height: 180px; }

.contact-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-left h2 {
  font-size: clamp(44px, 4vw, 62px);
  line-height: 1.05;
  color: var(--navy);
  margin: 0;
}

.contact-intro {
  max-width: 590px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.image-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 620px;
  background: radial-gradient(circle at top left, rgba(13, 91, 255, 0.08), transparent 34%);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(13, 91, 255, 0.12);
}

.image-box::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(13, 91, 255, 0.22) 2px, transparent 3px);
  background-size: 18px 18px;
  opacity: 0.7;
  top: -80px;
  left: -80px;
}

.shape-circle,
.shape-ring {
  position: absolute;
  border-radius: 50%;
}

.shape-circle {
  width: 380px;
  height: 380px;
  background: rgba(13, 91, 255, 0.06);
  top: 30px;
  left: 45px;
}

.shape-ring {
  width: 260px;
  height: 260px;
  border: 20px solid rgba(13, 91, 255, 0.1);
  top: 130px;
  right: 20px;
}

/* logo removed from image-box */

.image-box img {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  max-height: 1000px;
  width: auto;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

.contact-right h2 {
  font-size: clamp(34px, 3.5vw, 42px);
  margin-bottom: 24px;
  color: var(--navy);
}

.contact-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.service-pill {
  padding: 12px 18px;
  border-radius: 30px;
  border: 1px solid rgba(13, 91, 255, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  cursor: pointer;
  font-size: 15px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.service-pill:hover,
.service-pill.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-2px);
}

.contact-form {
  background: var(--white);
  border-radius: 32px;
  padding: 36px;
  border: 1px solid rgba(13, 91, 255, 0.12);
  box-shadow: 0 24px 70px rgba(13, 91, 255, 0.08);
}

.contact-group {
  margin-bottom: 22px;
}

.contact-group.full-width {
  margin-bottom: 28px;
}

.contact-group label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.13em;
  color: var(--blue-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.contact-group input,
.contact-group textarea {
  width: 100%;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(13, 91, 255, 0.18);
  background: rgba(13, 91, 255, 0.06);
  color: var(--navy);
  font: inherit;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-group input:focus,
.contact-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(13, 91, 255, 0.12);
}

.contact-group textarea {
  min-height: 140px;
  resize: none;
}

.contact-group input::placeholder,
.contact-group textarea::placeholder {
  color: rgba(11, 15, 25, 0.45);
}

.submit-btn {
  margin-top: 10px;
  background: var(--blue-dark);
  color: #ffffff;
  padding: 18px 35px;
  border: none;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
  background: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 24px 40px rgba(13, 91, 255, 0.22);
}

.submit-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-left {
    text-align: center;
  }

  .contact-left h2 {
    font-size: 46px;
  }

  .image-box {
    height: 520px;
  }

  .image-box img {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .contact-left h2 {
    font-size: 34px;
  }

  .contact-right h2 {
    font-size: 30px;
  }

  .contact-services {
    justify-content: center;
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
  }
}

.cta-banner {
  padding: 36px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--white) 100%);
  border: 1px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(135deg, #0d5bff 0%, #0a3fcc 52%, #10182b 100%);
  border-radius: 32px;
  margin-bottom: 24px;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -10%;
  width: 120%;
  height: 220px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 0 0 50% 50%;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-shape-one {
  right: -120px;
  top: -30px;
  width: 780px;
  height: 340px;
  border: 90px solid rgba(255, 255, 255, 0.18);
  transform: rotate(-20deg);
}

.cta-shape-two {
  right: 20px;
  top: 110px;
  width: 520px;
  height: 240px;
  border: 70px solid rgba(255, 255, 255, 0.15);
  transform: rotate(-20deg);
}

.cta-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 8px;
}

.cta-section .subtitle {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 4px;
}

.cta-section h2 {
  color: #ffffff;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  max-width: 720px;
  margin: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-radius: 999px;
  background: #ffffff;
  color: #0a3fcc;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(10, 63, 204, 0.24);
}

.cta-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0d5bff;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

@media (max-width: 992px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-section h2 {
    font-size: clamp(28px, 5vw, 44px);
  }

  .cta-shape-one,
  .cta-shape-two {
    display: none;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 48px 0;
  }

  .cta-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .cta-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

.tech-marquee-section {
  padding: 28px 0 8px;
}

.tech-marquee-head {
  max-width: 760px;
  margin: 0 auto 18px auto;
  text-align: center;
}

.tech-marquee-head h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  margin-top: 6px;
  text-align: center;
}

.tech-marquee {
  overflow: hidden;
  border: 1px solid var(--blue-border);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(13, 91, 255, 0.06) 0%, rgba(13, 91, 255, 0.14) 100%);
  padding: 14px 0;
  position: relative;
}

.tech-track {
  display: flex;
  gap: 14px;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: techScroll 18s linear infinite;
}

.tech-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

@keyframes techScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonials {
  padding: 64px 0;
  margin: 12px auto 24px;
  border-radius: 32px;
  background: linear-gradient(135deg, #0a3fcc 0%, #0d5bff 45%, #4f46e5 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 38%);
  pointer-events: none;
}

.team-performance {
  padding: 80px 0;
}

.team-performance-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
  border-radius: 32px;
  border: 1px solid var(--blue-border);
  background: linear-gradient(135deg, rgba(13, 91, 255, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
  box-shadow: 0 24px 80px -36px rgba(10, 63, 204, 0.25);
}

.team-performance-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(13, 91, 255, 0.16), transparent 42%);
  pointer-events: none;
}

.team-performance-copy {
  position: relative;
  z-index: 1;
}

.team-performance-copy h2 {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.2;
  margin: 10px 0 16px;
  color: var(--navy);
}

.team-performance-copy p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 560px;
}

.team-performance-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.team-performance-stats div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--blue-border);
  box-shadow: 0 10px 24px -16px rgba(13, 91, 255, 0.22);
}

.team-performance-stats strong {
  display: block;
  font-size: 22px;
  color: var(--blue-dark);
}

.team-performance-stats span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

.team-performance-visual {
  position: relative;
  min-height: 340px;
}

@media (max-width: 992px) {
  .team-performance-shell {
    grid-template-columns: 1fr;
  }
  .team-performance-visual {
    min-height: 280px;
  }
  .perf-card-main { width: min(88%, 280px); }
  .perf-card-side { width: min(70%, 220px); }
  .perf-card-floating { width: min(65%, 200px); }
}

@media (max-width: 768px) {
  .team-performance-visual {
    display: none;
  }
  .team-performance-shell {
    padding: 28px 20px;
  }
  .team-performance-stats {
    grid-template-columns: 1fr;
  }
}

.perf-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--blue-border);
  background: linear-gradient(145deg, #ffffff 0%, #f3f7ff 100%);
  box-shadow: 0 20px 45px -24px rgba(13, 91, 255, 0.25);
}

.perf-card-main {
  position: absolute;
  left: 10px;
  top: 20px;
  width: min(88%, 320px);
  z-index: 2;
}

.perf-card-side {
  position: absolute;
  right: 0;
  top: 110px;
  width: min(76%, 260px);
  background: linear-gradient(140deg, var(--navy) 0%, #15213d 100%);
  color: #ffffff;
  z-index: 3;
}

.perf-card-floating {
  position: absolute;
  left: 30px;
  bottom: 0;
  width: min(72%, 250px);
  z-index: 1;
}

.perf-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.perf-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(13, 91, 255, 0.08);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.perf-score {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue-dark);
}

.perf-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 110px;
  margin: 14px 0;
}

.perf-chart span {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  animation: pulseBar 2.2s ease-in-out infinite;
}

.perf-chart span:nth-child(1) { height: 45%; animation-delay: 0s; }
.perf-chart span:nth-child(2) { height: 72%; animation-delay: 0.15s; }
.perf-chart span:nth-child(3) { height: 58%; animation-delay: 0.3s; }
.perf-chart span:nth-child(4) { height: 88%; animation-delay: 0.45s; }

.perf-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.perf-card-side h3,
.perf-card-floating h3 {
  margin-bottom: 8px;
  color: var(--navy);
}

.perf-card-side p {
  color: rgba(255, 255, 255, 0.8);
}

.perf-card-floating p {
  color: var(--muted);
}

@keyframes pulseBar {
  0%, 100% { transform: scaleY(1); opacity: 0.95; }
  50% { transform: scaleY(1.08); opacity: 1; }
}

.center {
  text-align: center;
  margin: 0 auto 60px;
}

.center h2 {
  font-size: clamp(38px, 5vw, 64px);
  margin: 18px 0;
  font-weight: 800;
  color: #ffffff;
}

.center p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 40px rgba(4, 12, 30, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(4, 12, 30, 0.16);
}

.stars {
  display: flex;
  gap: 7px;
  color: var(--gold);
  margin-bottom: 20px;
}

.stars i {
  font-size: 17px;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.8;
  color: #47506b;
  margin-bottom: 28px;
}

.client-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.client-info span {
  color: #6b7280;
  font-size: 15px;
}

@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .center h2 {
    font-size: 40px;
  }
}

 .foot-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.4fr;
    gap:60px;
    margin-bottom:40px;
}

.foot-col h5{
    color:#fff;
    font-size:18px;
    font-weight:700;
    margin-bottom:20px;
    text-transform:none;
    letter-spacing:0;
}

.foot-col ul{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.foot-col ul li a{
    color:#98a4b3;
    font-size:15px;
    transition:.3s ease;
}

.foot-col ul li a:hover{
    color:var(--blue);
    padding-left:6px;
}

.foot-col p{
    color:#98a4b3;
    line-height:1.8;
}

.foot-social{
    display:flex;
    gap:14px;
    margin-top:22px;
}

.foot-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#111d30;
    color:#fff;
    transition:.3s;
}

.foot-social a:hover{
    background:var(--blue);
    transform:translateY(-4px);
}

.foot-social svg{
    width:18px;
    height:18px;
}

.foot-col input{
    width:100%;
    height:48px;
    padding:0 16px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.1);
    background:#101d30;
    color:#fff;
    outline:none;
    margin-bottom:15px;
}

.foot-col input::placeholder{
    color:#8b94a8;
}

.foot-col input:focus{
    border-color:var(--blue);
}

.foot-col .btn{
    width:100%;
}

.foot-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:24px;
    margin-top:30px;
    color:#8f99ad;
    font-size:14px;
    flex-wrap:wrap;
    gap:15px;
}

.foot-bottom a{
    color:#8f99ad;
    transition:.3s;
}

.foot-bottom a:hover{
    color:#fff;
}

@media (max-width:992px){

    .foot-grid{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

}

@media (max-width:768px){

    footer{
        padding:60px 0 25px;
    }

    .foot-grid{
        grid-template-columns:1fr;
        text-align:center;
        gap:35px;
    }

    .logo{
        justify-content:center;
    }

    .foot-social{
        justify-content:center;
    }

    .foot-bottom{
        flex-direction:column;
        text-align:center;
    }

}
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.12s; }
[data-reveal-delay="2"] { transition-delay: 0.24s; }
[data-reveal-delay="3"] { transition-delay: 0.36s; }

/* Focus visible — Accessibility */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip navigation link — Accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--blue);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  z-index: 9999;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* Prefers reduced motion — Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .tech-track { animation: none; }
}

body.no-scroll { overflow: hidden; }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 300;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 35px rgba(18, 140, 126, 0.28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(18, 140, 126, 0.34);
}

.whatsapp-float i {
  font-size: 28px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}


/* =============================================
   CHIP BADGES (Portfolio + Service tags)
   ============================================= */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--blue-tint);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}


/* Portfolio filter pills active state */
.service-pill.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
