/* ================= GLOBAL: prevent any horizontal scroll on mobile ================= */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

.about-img-point li img {
  width: 25px;
}

.about-img-point li {
  margin-bottom: 10px;
}

.border-1 {
  border-radius: 25px 0 25px 0;
}

/* ---- Section label (icon + "What We Deliver") ---- */
.deliver-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
}

.deliver-label .label-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.deliver-label .label-icon i {
  font-size: 19px;
}

.deliver-label span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--blue);
  letter-spacing: -0.01em;
}

/* ---- Deliverables grid ---- */
.deliver-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px 10px;
}

@media (max-width:900px) {
  .deliver-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:560px) {
  .deliver-grid {
    grid-template-columns: 1fr;
  }
}

.deliver-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 4px;
    border-radius: 10px;
    transition: transform .18s ease, background .18s ease;
    margin-bottom: 12px;
}

.deliver-item:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 28, 61, 0.06);
}

.deliver-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  color: var(--blue);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.deliver-icon i {
  font-size: 18px;
}

.deliver-item:hover .deliver-icon {
  background: var(--blue);
  color: #fff;
  transform: scale(1.06);
}

.deliver-icon.green {
  background: var(--green-pale);
  color: #3f8a0c;
}

.deliver-item:hover .deliver-icon.green {
  background: var(--green);
  color: var(--navy);
}

.deliver-text {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

@media (prefers-reduced-motion: reduce) {

  .deliver-item,
  .deliver-icon {
    transition: none;
  }
}





.kc-head {
  margin-bottom: 40px;
}

.kc-eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-weight: 500;
}

.kc-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 2px;
  display: inline-block;
  transform: rotate(45deg);
}

.kc-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.01em;
  max-width: 640px;
}

.kc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: start;
}

@media (max-width:960px) {
  .kc-layout {
    grid-template-columns: 1fr;
  }
 
}
@media (max-width:991px) {
 
.svcx-media {
    flex-direction: column-reverse !important;
}
}

.kc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    /* flex-direction: column; */
    gap: 4px;
    flex-wrap: wrap;
}

.kc-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 9px 6px;
    border-radius: 8px;
    transition: background .15s ease, transform .15s ease;
    width: 33%;
}

.kc-item:hover {
  background: #fff;
  box-shadow: var(--shadow-card);
  transform: translateX(2px);
}

.kc-item .kc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 14px;
  transition: background .15s ease, color .15s ease;
}

.kc-item.green .kc-icon {
  background: var(--green-pale);
  color: var(--green-deep);
}

.kc-item:hover .kc-icon {
  background: var(--blue);
  color: #fff;
}

.kc-item.green:hover .kc-icon {
  background: var(--green);
  color: var(--navy);
}

.kc-item span.label {
  font-size: .94rem;
  font-weight: 600;
  color: var(--ink);
}

.kc-visual {
  position: relative;
  border-radius: 22px;
  padding: 14px;
  background: linear-gradient(155deg, var(--blue) 0%, #1c2f66 45%, var(--green) 100%);
  box-shadow: 0 20px 50px -12px rgba(14, 77, 180, 0.35), 0 8px 20px rgba(13, 28, 61, 0.12);
  isolation: isolate;
}

.kc-visual::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(155deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, .4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.kc-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.kc-frame::before,
.kc-frame::after,
.kc-corner-tl,
.kc-corner-br {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: #fff;
  z-index: 2;
  opacity: .85;
}

.kc-corner-tl {
  top: 8px;
  left: 8px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  border-radius: 6px 0 0 0;
}

.kc-corner-br {
  bottom: 8px;
  right: 8px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  border-radius: 0 0 6px 0;
}

.kc-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(13, 28, 61, 0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .25);
}

.kc-badge i {
  color: var(--green);
  font-size: 11px;
}

.kc-visual img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}












.tl-section {
  background: var(--white);
}

/* ---- Header ---- */
.tl-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.tl-head h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 10px 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.tl-head .tagline {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0 0 12px 0;
}

.tl-glyph {
  color: var(--green);
  font-size: 56px;
  opacity: .85;
  flex-shrink: 0;
  display: flex;
  gap: 18px;
  align-items: center;
}

.tl-glyph i:last-child {
  font-size: 44px;
}

/* ---- Swiper timeline ---- */
.tl-swiper-wrap {
  position: relative;
  padding: 0 46px;
}

.tl-swiper-wrap::before {
  content: "";
  position: absolute;
  left: 46px;
  right: 46px;
  top: calc(120px + 20px);
  /* aligns with year-circle center, adjusted per card height */
  height: 2px;
  background: repeating-linear-gradient(to right, var(--green) 0 6px, transparent 6px 12px);
  z-index: 0;
}

.tl-swiper {
  padding: 6px 2px 10px;
}

.tl-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.tl-card h3 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.3;
  margin: 0 0 10px 0;
  min-height: 44px;
}

.tl-card p {
  font-size: .82rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 22px 0;
  min-height: 96px;
}

.tl-year {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  color: var(--green-deep);
  box-shadow: 0 0 0 5px #F4F8F3;
}

.tl-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 26px;
}

.tl-icon.alt {
  color: var(--green-deep);
}

.tl-nav {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 4px 10px rgba(13, 28, 61, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  cursor: pointer;
  z-index: 2;
  font-size: 13px;
  transition: background .15s ease, color .15s ease;
}

.tl-nav:hover {
  background: var(--green);
  color: #fff;
}

.tl-nav.prev {
  left: 0;
}

.tl-nav.next {
  right: 0;
}

.swiper-button-disabled {
  opacity: .35;
  cursor: default;
}

.swiper-button-disabled:hover {
  background: #fff;
  color: var(--green-deep);
}

/* ---- Bottom line callout ---- */
.tl-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--green-pale);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 26px;
  margin-bottom: 22px;
}

.tl-callout .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.tl-callout h4 {
  font-family: var(--font-display);
  font-size: .98rem;
  color: var(--green-deep);
  margin: 2px 0 6px 0;
  letter-spacing: .02em;
}

.tl-callout p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.6;
  color: var(--ink);
}

/* ---- Certification strip ---- */
.tl-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 24px;
}

.tl-strip-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  /* white-space: nowrap; */
}

.tl-strip-item i {
  color: var(--green);
  font-size: 15px;
}

@media (max-width:640px) {
  .tl-swiper-wrap {
    padding: 0 40px;
  }
  .svcx-media {
    flex-direction: column-reverse;
}

  .tl-strip {
    justify-content: flex-start;
  }
}

h4 {
  font-size: 20px !important;
}



/* METHODOLOGY STRIP  */

.hwd2-wrap {
  position: relative;
  overflow: hidden;
}

/* ---- 5-column variant (Cyber Security Approach / Methodology) ---- */
.hwd2-timeline-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 16px;
}

.hwd2-timeline-5::before {
  display: none;
}

@media (max-width:991px) {
  .hwd2-timeline-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:560px) {
  .hwd2-timeline-5 {
    grid-template-columns: 1fr;
  }
}

.hwd2-timeline-5 .hwd2-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* down-arrow connector under each ring icon, colored to match the icon */
.hwd2-timeline-5 .hwd2-icon-wrap {
  margin-bottom: 0;
}

.hwd2-timeline-5 .hwd2-icon-wrap::after {
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  margin: 0 auto;
  background: currentColor;
}

.hwd2-timeline-5 .hwd2-item:nth-child(odd) .hwd2-icon-wrap::after {
  color: var(--green-deep);
}

.hwd2-timeline-5 .hwd2-item:nth-child(even) .hwd2-icon-wrap::after {
  color: var(--blue);
}

.hwd2-timeline-5 .hwd2-arrow-tip {
  width: 0;
  height: 0;
  margin: -1px auto 18px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 9px solid currentColor;
}

.hwd2-timeline-5 .hwd2-item:nth-child(odd) .hwd2-arrow-tip {
  color: var(--green-deep);
}

.hwd2-timeline-5 .hwd2-item:nth-child(even) .hwd2-arrow-tip {
  color: var(--blue);
}

.hwd2-timeline-5 h4 {
  font-size: .98rem !important;
  min-height: 44px;
}

/* ---- timeline ---- */
.hwd2-timeline {
  position: relative;
  margin-bottom: 50px;
}

.hwd2-timeline::before {
  content: "";
  position: absolute;
  top: 44px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: repeating-linear-gradient(to right, var(--line-dark, var(--line)) 0 8px, transparent 8px 16px);
  background-color: transparent;
  border-top: 2px dashed var(--line);
  z-index: 0;
}

@media (max-width:991px) {
  .hwd2-timeline::before {
    display: none;
  }
}

.hwd2-item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.hwd2-icon-wrap {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
}

.hwd2-icon-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  color: #fff;
  box-shadow: 0 10px 24px -6px rgba(13, 28, 61, .35);
  transition: transform .3s ease;
}

.hwd2-item:hover .hwd2-icon-circle {
  transform: translateY(-4px) scale(1.04);
}

.hwd2-icon-circle.blue {
  background: linear-gradient(155deg, var(--blue), var(--navy-mid));
}

.hwd2-icon-circle.green {
  background: linear-gradient(155deg, var(--green), var(--green-deep));
}

.hwd2-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hwd2-item h4 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--navy);
  margin: 0 0 4px;
}

.hwd2-item .hwd2-sub {
  font-size: .8rem;
  font-weight: 700;
  margin: 0 0 12px;
}

.hwd2-item .hwd2-sub.blue {
  color: var(--blue);
}

.hwd2-item .hwd2-sub.green {
  color: var(--green-deep);
}

.hwd2-item p.hwd2-desc {
  font-size: .86rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- diagonal outcome ribbon ---- */
.hwd2-ribbon {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
  padding: 26px 30px;
}

.hwd2-ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--navy) 0%, var(--navy) 55%, var(--green-deep) 55%, var(--green) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 18% 100%);
}

.hwd2-ribbon-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  justify-content: space-between;
}

.hwd2-ribbon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.hwd2-ribbon-item i {
  font-size: 16px;
  color: #fff;
  opacity: .9;
}

@media (max-width:640px) {
  .hwd2-ribbon-inner {
    justify-content: flex-start;
  }

  .hwd2-ribbon-item {
    white-space: normal;
  }
}


/* <!-- ================= IT-OT & INDUSTRIAL AUTOMATION DELIVERABLES (final) ================= --> */

.itotf-wrap {
  position: relative;
  overflow: hidden;
}

.itotf-layout {
  display: flex;
  align-items: stretch;
  gap: 28px;
  margin-bottom: 44px;
}

@media (max-width:1100px) {
  .itotf-layout {
    flex-direction: column;
  }
}

/* ---- side cards (Our Approach / Key Benefits) ---- */
.itotf-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  flex: 0 0 280px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

@media (max-width:1100px) {
  .itotf-card {
    flex: 1 1 auto;
  }
}

.itotf-card-head {
  padding: 12px 20px;
  text-align: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.itotf-card-head.blue {
  background: var(--navy);
}

.itotf-card-head.green {
  background: var(--green-deep);
}

.itotf-card-list {
  list-style: none;
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.itotf-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 6px 6px;
  border-radius: 10px;
  transition: background .18s ease, transform .18s ease;
}

.itotf-card-list li:hover {
  background: var(--bg);
  transform: translateX(2px);
}

.itotf-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
}

.itotf-card-icon.blue {
  background: var(--blue);
}

.itotf-card-icon.green {
  background: var(--green-deep);
}

.itotf-card-text h5 {
  font-family: var(--font-display);
  font-size: .92rem;
  margin: 0 0 3px;
  color: var(--navy);
  letter-spacing: .01em;
}

.itotf-card-text p {
  font-size: .82rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0;
}

/* ---- center venn ---- */
.itotf-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-width: 0;
}

.itotf-venn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
}

.itotf-arrow-row {
  display: flex;
  justify-content: space-between;
  width: 78%;
  position: absolute;
  top: -6px;
  left: 11%;
  z-index: 3;
  color: var(--ink-faint);
  font-size: 1.05rem;
  pointer-events: none;
}

.itotf-arrow-row.bottom {
  top: auto;
  bottom: -6px;
}

.itotf-circle {
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
  flex-shrink: 0;
}

.itotf-circle h4 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin: 0 0 8px;
  letter-spacing: .02em;
}

.itotf-circle .itotf-icon {
  font-size: 1.9rem;
  margin-bottom: 10px;
  opacity: .95;
}

.itotf-circle ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .74rem;
  line-height: 1.5;
}

.itotf-circle-it {
  width: 235px;
  height: 235px;
  background: radial-gradient(circle at 35% 30%, var(--blue-light), var(--blue) 70%);
  margin-right: -42px;
  z-index: 1;
}

.itotf-circle-ot {
  width: 235px;
  height: 235px;
  background: radial-gradient(circle at 65% 30%, #7fd15a, var(--green-deep) 75%);
  margin-left: -42px;
  z-index: 1;
}

.itotf-circle-auto {
  width: 198px;
  height: 198px;
  background: radial-gradient(circle at 50% 30%, #1c3f7a, var(--navy) 75%);
  z-index: 2;
  box-shadow: 0 12px 34px -8px rgba(13, 28, 61, .4);
}

@media (max-width:560px) {

  .itotf-circle-it,
  .itotf-circle-ot {
    width: 110px;
    height: 110px;
    margin: 0 -18px;
  }

  .itotf-circle-auto {
    width: 100px;
    height: 100px;
  }

  .itotf-circle h4 {
    font-size: .8rem;
  }

  .itotf-circle .itotf-icon {
    font-size: 1.3rem;
  }

  .itotf-circle ul {
    display: none;
  }
}

/* ---- diagonal outcome ribbon ---- */
.itotf-ribbon {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
  padding: 22px 28px;
  width: 100%;
  max-width: 600px;
}

.itotf-ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--navy) 0%, var(--navy) 55%, var(--green-deep) 55%, var(--green) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 18% 100%);
}

.itotf-ribbon-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  justify-content: center;
}

.itotf-ribbon-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.itotf-ribbon-item i {
  font-size: 14px;
  color: #fff;
  opacity: .9;
}







/* <!-- ================= INDUSTRIAL CONTROL & AUTOMATION ENGINEERING DELIVERABLES  */
.icd-wrap {
  position: relative;
  overflow: hidden;
}

/* ---- phase / approach / deliverables table ---- */
.icd-table-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.icd-table-head {
  display: grid;
  grid-template-columns: 230px 1fr 1.3fr;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.icd-table-head>div {
  padding: 12px 18px;
}

@media (max-width:900px) {
  .icd-table-head {
    display: none;
  }
}

.icd-row {
  display: grid;
  grid-template-columns: 230px 1fr 1.3fr;
  border-top: 1px solid var(--line);
}

.icd-row:nth-child(odd) {
  background: var(--bg);
}

@media (max-width:900px) {
  .icd-row {
    display: block;
    padding: 18px 18px;
  }

  .icd-row:nth-child(odd) {
    background: var(--bg);
  }
}

.icd-cell {
  padding: 16px 18px;
}

@media (max-width:900px) {
  .icd-cell {
    padding: 6px 0;
  }
}

.icd-phase {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.icd-phase-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
}

.icd-phase h5 {
  font-family: var(--font-display);
  font-size: .86rem;
  margin: 0;
  color: var(--navy);
  line-height: 1.35;
}

.icd-label {
  display: none;
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 4px;
}

@media (max-width:900px) {
  .icd-label {
    display: block;
  }
}

.icd-approach p,
.icd-deliverables p {
  margin: 0;
  font-size: .82rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.icd-deliverables p {
  color: var(--ink);
}

.icd-deliverables .sep {
  color: var(--green-deep);
  font-weight: 700;
  margin: 0 4px;
}

/* <!-- ================= TECHNOLOGY EXPERIENCE (v2) ================= --> */

.techexp2-wrap {
  position: relative;
  overflow: hidden;
}

/* ---- photo duo banner ---- */
.techexp2-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 40px;
}

.techexp2-photos img {
  width: 100%;
  height: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}

@media (max-width:700px) {
  .techexp2-photos {
    grid-template-columns: 1fr;
  }
}

/* ---- logo carousel ---- */
.techexp2-carousel-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px 8px 26px;
  box-shadow: var(--shadow-card);
  margin-bottom: 40px;
}

.techexp2-carousel-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  padding: 16px 0 4px;
}

.techexp2-swiper {
  padding: 20px 30px 6px;
}

.techexp2-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
}

.techexp2-slide img {
  max-width: 100%;
  max-height: 46px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(15%);
  opacity: .9;
  transition: opacity .2s ease, filter .2s ease;
}

.techexp2-slide:hover img {
  opacity: 1;
  filter: none;
}

.techexp2-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  cursor: pointer;
  z-index: 5;
  font-size: 12px;
}

.techexp2-nav.prev {
  left: -4px;
}

.techexp2-nav.next {
  right: -4px;
}

.techexp2-carousel-card {
  position: relative;
}

/* ---- two-column: compliance | outcomes ---- */
/* .techexp2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
} */

@media (max-width:900px) {
  .techexp2-cols {
    grid-template-columns: 1fr;
  }
}

.techexp2-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.techexp2-card-head {
  padding: 14px 22px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.techexp2-card-head.blue {
  background: var(--navy);
}

.techexp2-card-head.green {
  background: var(--green-deep);
}

.techexp2-card-body {
  padding: 22px;
}

.techexp2-compliance-grid {
    display: flex;
    gap: 18%;
    flex-wrap: wrap;
}

.techexp2-compliance-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.techexp2-compliance-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 14px;
}

.techexp2-compliance-item span {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
}

.techexp2-outcomes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

@media (max-width:520px) {
  .techexp2-outcomes-list {
    grid-template-columns: 1fr;
  }
}

.techexp2-outcomes-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
}

.techexp2-outcomes-list li i {
  color: var(--green-deep);
  font-size: 14px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

/* ================= UNIQUE FOOTER (ftr-) ================= */
.ftr-footer {
  position: relative;
  background: var(--navy);
  color: #B9C6E4;
  padding: 0 0 28px;
  overflow: hidden;
}

.ftr-accent {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.ftr-footer .deco-trace-tr {
  opacity: .35;
}

.ftr-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 192, 18, .14), transparent 70%);
  pointer-events: none;
}

.ftr-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 36px;
}

@media (max-width:900px) {
  .ftr-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .ftr-grid {
    grid-template-columns: 1fr;
  }
}

.ftr-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.ftr-brand-logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
  object-fit: contain;
}

.ftr-brand-logo .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.ftr-brand-logo .name .blue {
  color: #4E8DF7;
}

.ftr-brand-logo .name .green {
  color: var(--green);
}

.ftr-tagline {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7C8CB2;
  margin: 0 0 14px;
}

.ftr-desc {
  font-size: .88rem;
  line-height: 1.6;
  color: #B9C6E4;
  max-width: 280px;
  margin: 0 0 20px;
}

.ftr-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.ftr-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line-dark);
  font-size: .72rem;
  font-weight: 600;
  color: #C6D3EE;
}

.ftr-badge i {
  color: var(--green);
  font-size: 11px;
}

.ftr-social {
  display: flex;
  gap: 10px;
}

.ftr-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6D3EE;
  font-size: 14px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.ftr-social a:hover {
  background: var(--green);
  color: var(--navy);
  transform: translateY(-3px);
}

.ftr-col h5 {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 11.5px;
  color: #7C8CB2;
  margin-bottom: 18px;
}

.ftr-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ftr-col li {
  margin-bottom: 12px;
}

.ftr-col a {
  font-size: .9rem;
  color: #C6D3EE;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s ease, gap .2s ease;
}

.ftr-col a i {
  font-size: 10px;
  color: var(--green);
  /* opacity: 0; */
  /* transform: translateX(-4px); */
  transition: opacity .2s ease, transform .2s ease;
}

.ftr-col a:hover i {
  color: var(--white);
}

.ftr-col a:hover i {
  opacity: 1;
  transform: translateX(0);
}

.ftr-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.ftr-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 13px;
  flex-shrink: 0;
}

.ftr-contact-item div a {
  font-size: .88rem;
  color: #C6D3EE;
}

.ftr-contact-item div a:hover {
  color: var(--green);
}

.ftr-contact-item div span {
  display: block;
  font-size: .72rem;
  color: #7C8CB2;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-family: var(--font-body);
}

.ftr-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 14px;
}

.ftr-bottom p {
  margin: 0;
  font-size: .82rem;
  color: #7C8CB2;
}

.ftr-totop {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line-dark);
    color: #C6D3EE;
    font-size: .78rem;
    font-weight: 600;
    height: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
    height: 30px;
    width: 30px;
    justify-content: center;
    position: fixed;
    right: 20px;
    bottom: 30px;
}

.ftr-totop:hover {
  background: var(--green);
  color: var(--navy);
}

/* ================= SERVICES PAGE: TEAM STRENGTH ================= */
.tstr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width:900px) {
  .tstr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:520px) {
  .tstr-grid {
    grid-template-columns: 1fr;
  }
}

.tstr-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.tstr-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 20px;
}

.tstr-card:nth-child(even) .tstr-icon {
  background: var(--green-pale);
  color: var(--green-deep);
}

.tstr-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--navy);
  margin: 0 0 4px;
}

.tstr-label {
  font-size: .85rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.4;
}

/* ================= SERVICE DETAIL PAGE ================= */
.svcd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width:900px) {
  .svcd-grid {
    grid-template-columns: 1fr;
  }
}

.svcd-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svcd-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: var(--shadow-card);
}

.svcd-list li i {
  color: var(--green-deep);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.svcd-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.svcd-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
}

/* ================= EXPANDED SERVICES DROPDOWN ================= */
.dropdown-panel .dd-label {
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #9aa4bd;
  padding: 10px 14px 4px;
  margin: 0;
}

.dropdown-panel .dd-divider {
  height: 1px;
  background: var(--line);
  margin: 6px 4px;
}

/* ================= STRATEGIC PARTNER (KASATZ) ================= */
.kasatz-wrap {
  position: relative;
  overflow: hidden;
}

.kasatz-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.kasatz-head-left p.eyebrow {
  margin-bottom: 8px;
}

.kasatz-head-left h2 {
  margin: 0 0 10px;
}

.kasatz-head-left p.text-soft {
  margin: 0;
  max-width: 560px;
}

.kasatz-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--green-pale);
  color: var(--green-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.kasatz-badge i {
  font-size: 14px;
}

.kasatz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width:991px) {
  .kasatz-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:560px) {
  .kasatz-grid {
    grid-template-columns: 1fr;
  }
}

.kasatz-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.kasatz-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent, var(--blue));
}

.kasatz-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.kasatz-card:nth-child(2) {
  --accent: var(--green-deep);
}

.kasatz-card:nth-child(4) {
  --accent: var(--green-deep);
}

.kasatz-icon {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 18px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.kasatz-card:nth-child(2) .kasatz-icon,
.kasatz-card:nth-child(4) .kasatz-icon {
  background: var(--green-pale);
  color: var(--green-deep);
}

.kasatz-card:hover .kasatz-icon {
  transform: scale(1.08) rotate(-4deg);
}

.kasatz-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .02em;
  color: var(--navy);
  margin: 0 0 16px;
}

.kasatz-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kasatz-card li {
  position: relative;
  padding-left: 16px;
  font-size: .86rem;
  line-height: 1.4;
  color: var(--ink-soft);
}

.kasatz-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent, var(--blue));
}

.kasatz-footnote {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--ink-soft);
  justify-content: center;
  text-align: center;
}

.kasatz-footnote i {
  color: var(--blue);
}

/* ================= PRODUCTS PAGE ================= */
.prod-wrap {
  position: relative;
  overflow: hidden;
}

/* ================= PRODUCT TABS (v3) ================= */
.prodtabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}

.prodtabs-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: all .22s ease;
  box-shadow: var(--shadow-card);
}

.prodtabs-btn i {
  font-size: 15px;
  color: var(--blue);
}

.prodtabs-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.prodtabs-btn.active i {
  color: var(--green);
}

.prodtabs-btn:not(.active):hover {
  border-color: var(--blue);
  color: var(--navy);
}

/* ================= FEATURED SYSTEMS GALLERY (bento redesign) ================= */
.bento-item {
  position: relative;
  border-radius: 18px;
  display: block;
  padding: 3px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 65%, #08122b 100%);
  box-shadow: 0 14px 32px -10px rgba(13, 28, 61, .35);
  transition: transform .3s ease, box-shadow .3s ease;
}

.bento-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px -8px rgba(13, 28, 61, .45);
}

.bento-item::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 22px;
  height: 22px;
  z-index: 3;
  border-top: 2px solid rgba(255, 255, 255, .85);
  border-left: 2px solid rgba(255, 255, 255, .85);
  border-radius: 4px 0 0 0;
  pointer-events: none;
}

.bento-item .bento-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  display: block;
}

.bento-item.a {
  grid-area: a;
}

.bento-item.b {
  grid-area: b;
}

.bento-item.c {
  grid-area: c;
}

.bento-item.d {
  grid-area: d;
}

.bento-item.e {
  grid-area: e;
}

.bento-item.f {
  grid-area: f;
}

.bento-item.g {
  grid-area: g;
}

@media (max-width:900px) {
  .bento-item {
    grid-area: auto !important;
    height: 220px;
  }

  .bento-item.a {
    height: 320px;
  }
}

.bento-item .bento-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.bento-item:hover .bento-inner img {
  transform: scale(1.08);
}

.bento-item .bento-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 28, 61, .88) 0%, rgba(13, 28, 61, .35) 35%, transparent 65%);
  opacity: .75;
  transition: opacity .3s ease;
}

.bento-item:hover .bento-inner::after {
  opacity: .92;
}

.bento-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bento-caption i {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 14px;
  flex-shrink: 0;
}

.bento-caption span {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .01em;
  line-height: 1.25;
}

.bento-item.a .bento-caption span {
  font-size: 1.05rem;
}

.bento-expand {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .25s ease, transform .25s ease;
}

.bento-item:hover .bento-expand {
  opacity: 1;
  transform: scale(1);
}

/* ================= HEADER REDESIGN (clean/refined) ================= */
.site-header {
  transition: padding .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px -8px rgba(13, 28, 61, .12);
}

.site-header.is-scrolled .nav {
  padding: 9px 0;
}

.brand img {
  transition: transform .2s ease;
}

.brand:hover img {
  transform: scale(1.05);
}

/* nav links: soft pill hover instead of bare underline */
.nav-links a {
  border-radius: 8px;
  padding: 8px 12px !important;
  transition: background .18s ease, color .18s ease;
}

.nav-links a::after {
  display: none;
}

.nav-links a:hover {
  background: var(--blue-pale);
  color: var(--navy);
}

.nav-links a.active {
  background: var(--blue-pale);
  color: var(--blue);
  font-weight: 700;
}

.nav-item-head {
  display: flex;
  align-items: center;
}

.dropdown-toggle {
  padding: 8px 4px !important;
  margin-left: -6px;
}

/* CTA: elevate primary action */
.nav-cta .btn-ghost {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .86rem;
  transition: background .2s ease, transform .2s ease;
}

.nav-cta .btn-ghost:hover {
  background: var(--blue);
  transform: translateY(-1px);
}

/* dropdown panel polish */
.dropdown-panel {
  border-radius: 14px;
  padding: 10px;
  min-width: 260px;
}

.dropdown-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  transition: background .15s ease, padding-left .15s ease;
}

.dropdown-panel a:hover {
  padding-left: 16px;
}

.dropdown-panel a i {
  width: 16px;
  text-align: center;
  color: var(--blue);
  font-size: 13px;
  flex-shrink: 0;
}

.dropdown-panel a.active i {
  color: var(--blue);
}

/* mobile: slide-in drawer with overlay */
.nav-drawer-brand {
  display: none;
}

.nav-drawer-footer {
  display: none;
}

@media (max-width:900px) {
  .nav-drawer-brand {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 0 18px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }

  .nav-drawer-brand img {
    height: 32px;
    width: auto;
  }

  .nav-drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    /* margin-top: auto; */
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }

  .nav-drawer-footer .contact-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .nav-drawer-footer .contact-row a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--ink-soft);
    padding: 0;
    border-bottom: none !important;
    width: auto;
  }

  .nav-drawer-footer .contact-row a i {
    color: var(--blue);
    font-size: 13px;
    width: 16px;
    text-align: center;
  }

  .nav-drawer-footer .social-row {
    display: flex;
    gap: 10px;
  }

  .nav-drawer-footer .social-row a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 13px;
    border-bottom: none !important;
    width: 34px !important;
    padding: 0 !important;
  }

  .nav-drawer-footer .social-row a:hover {
    background: var(--green);
    color: #fff;
  }
}

.nav-close {
  display: none;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 28, 61, .45);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

@media (max-width:900px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    height: 100vh;
    width: min(320px, 84vw);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 020px 24px;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 160;
    overflow-y: auto;
    box-shadow: -16px 0 40px rgba(13, 28, 61, .12);
  }

  .nav-links a {
    border-bottom: 0;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    width: 100%;
  }

  .nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 16px;
    cursor: pointer;
  }

  .nav-item.has-dropdown {
    width: 100%;
  }

  .dropdown-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg);
    margin: 4px 0 8px;
    pointer-events: auto;
    display: none;
    width: 100%;
  }

  .nav-item.open .dropdown-panel {
    display: block;
    max-height: none !important;
    overflow: visible !important;
  }
}

.prod-wrap .kc-visual img {
  height: 250px;
}

/* ================= SERVICES OVERVIEW: CATEGORIZED PANEL CARDS (svcx-) — Bootstrap grid version ================= */
.svcx-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.svcx-row-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.svcx-media {
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column-reverse;
}

.svcx-media img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

@media (max-width:900px) {
  .svcx-media img {
    height: 220px;
  }
}

.svcx-caption {
  padding: 16px 20px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .88rem;
  color: var(--navy);
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-top: auto;
}

.svcx-panel.green {
  background: var(--green-pale);
}

.svcx-panel.blue {
  background: var(--blue);
}

.svcx-col {
  padding: 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width:576px) {
  .svcx-col {
    padding: 24px 22px;
  }
}

.svcx-panel.green .col-border {
  border-right: 1px solid rgba(13, 28, 61, .08);
}

.svcx-panel.blue .col-border {
  border-right: 1px solid rgba(255, 255, 255, .18);
}

@media (max-width:767px) {

  .svcx-panel.green .col-border,
  .svcx-panel.blue .col-border {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-bottom: 26px;
  }
  .kc-item {
    width: 48%;
}
}

.svcx-block h4 {
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.svcx-panel.green .svcx-block h4 {
  color: var(--green-deep);
}

.svcx-panel.blue .svcx-block h4 {
  color: #fff;
}

.svcx-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.svcx-block li {
  position: relative;
  padding-left: 18px;
  font-size: .86rem;
  line-height: 1.45;
}

.svcx-panel.green .svcx-block li {
  color: var(--ink);
}

.svcx-panel.blue .svcx-block li {
  color: #fff;
}

.svcx-block li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}

.svcx-panel.green .svcx-block li::before {
  color: var(--green-deep);
}

.svcx-panel.blue .svcx-block li::before {
  color: #fff;
}











/* ================= POSSIBLE ATTACKS & ATTACK VECTOR — final corrected v3 (avf-) ================= */
.avf-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 25px 0 25px 0;
  box-shadow: var(--shadow-card);
  padding: 30px 40px;
  margin-bottom: 24px;
  position: relative;
}

/* .avf-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 25px 0 0 0;
} */

/* .avf-diagram {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
} */

@media (max-width:900px) {
  .avf-diagram {
    display: none;
  }
    .kc-item {
    width: 45%;
}

}

/* ---- Top section: wraps Row 1 + gap so the center line can span both continuously ---- */
.avf-top-section {
  position: relative;
}

.avf-center-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2.5px;
  background: #5CC012;
  z-index: 0;
}

.avf-row {
  position: relative;
  display: flex;
  z-index: 2;
}

.avf-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12.5%;
  right: 12.5%;
  height: 2.5px;
  background: #5CC012;
  z-index: 3;
}

.avf-row-3::before {
  left: 16.66%;
  right: 16.66%;
}

/* NOTE: no background here — an opaque background would paint over
   the center connector line running behind this column */
.avf-col {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
}

.avf-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2.5px;
  height: 26px;
  background: #5CC012;
  z-index: 1;
}

.avf-col::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5CC012;
  box-shadow: 0 0 0 3px #fff;
  z-index: 1;
}

/* ---- Icon ---- */
.avf-icon-wrap {
  position: relative;
  width: 70px;
  height: 70px;
  margin-top: 26px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.avf-icon-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--blue-pale);
  transition: border-color .25s ease, transform .25s ease;
}

.avf-col:hover .avf-icon-wrap::before {
  border-color: var(--blue-light);
  transform: scale(1.08);
}

.avf-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--blue-light), var(--blue) 70%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 10px 22px -6px rgba(13, 28, 61, .38);
  transition: transform .25s ease, box-shadow .25s ease;
  flex-shrink: 0;
}

.avf-col:hover .avf-icon {
  transform: scale(1.07) rotate(-3deg);
  box-shadow: 0 14px 28px -6px rgba(13, 28, 61, .45);
}

/* ---- Label ---- */
.avf-label {
  background: linear-gradient(155deg, var(--green), var(--green-deep));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .015em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 8px;
  line-height: 1.3;
  width: 100%;
  max-width: 170px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px -4px rgba(71, 150, 13, .35);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  z-index: 2;
}

.avf-col:hover .avf-label {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -4px rgba(71, 150, 13, .42);
}

/* ---- Gap: covered by .avf-center-line above ---- */
.avf-gap {
  position: relative;
  height: 40px;
}

/* ---- Lower wrap: holds row 2 + the frame that surrounds it ---- */
.avf-lower-wrap {
  position: relative;
  /* padding: 0 24px 30px;
  margin: 0 -24px; */
}

/* .avf-frame {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-left: 1.5px solid var(--line);
  border-right: 1.5px solid var(--line);
  border-bottom: 1.5px solid var(--line);
  pointer-events: none;
  z-index: 0;
} */

.avf-row-3 {
  position: relative;
  z-index: 2;
}

/* ---- Mobile fallback: simple stacked grid, no connector lines ---- */
.avf-mobile-grid {
  display: none;
}

@media (max-width:900px) {
  .avf-mobile-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 26px 16px;
    justify-content: center;
  }

  .avf-mobile-grid .avf-col-m {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 45%;
  }

  .avf-mobile-grid .avf-icon-wrap {
    margin: 0 0 12px;
  }

  .avf-mobile-grid .avf-label {
    max-width: 100%;
  }
}

@media (max-width:520px) {
  .avf-mobile-grid .avf-col-m {
    width: 100%;
  }
}

/* ---- bottom certification strip ---- */
.avf-strip {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 12px;
  background: linear-gradient(180deg, #fff, var(--bg));
  box-shadow: var(--shadow-card);
  margin-top: 30px;
}

.avf-strip-item {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 8px 16px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  border-right: 1px solid var(--line);
  min-width: 150px;
  transition: color .2s ease;
}

.avf-strip-item:hover {
  color: var(--blue);
}

.avf-strip-item i {
  color: var(--green-deep);
  font-size: 13px;
  flex-shrink: 0;
}

.avf-strip-item:last-child {
  border-right: none;
}

@media (max-width:900px) {
  .avf-strip-item {
    flex: 1 1 45%;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .avf-strip-item:last-child {
    border-bottom: none;
  }
}

@media (max-width:560px) {
  .avf-strip-item {
    flex: 1 1 100%;
  }
}







/* ================= ATTACK VECTORS REACHING OT NETWORKS — panel exact design (avd-) ================= */
.avd-panel {
  padding: 10px 10px 0;
}

.avd-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.25;
  color: var(--blue);
  /* text-transform: uppercase; */
  letter-spacing: .01em;
  margin-bottom: 34px;
}

.avd-diagram {
    position: relative;
    /* max-width: 620px; */
    /* margin: 0 auto; */
    border-top: 3px solid #5cc012;
}

@media (max-width:700px) {
  .avd-diagram {
    display: none;
  }
}

/* ---- Row: flex columns ---- */
.avd-row {
  position: relative;
  display: flex;
  z-index: 2;
}

.avd-col {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}

.avd-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 20px;
  background: #3F8A0C;
  z-index: 1;
}

.avd-col::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3F8A0C;
  box-shadow: 0 0 0 3px #fff;
  z-index: 1;
}

/* ---- Icon ---- */
.avd-icon-wrap {
  position: relative;
  width: 58px;
  height: 58px;
  margin-top: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.avd-icon-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--blue-pale);
  transition: border-color .25s ease, transform .25s ease;
}

.avd-col:hover .avd-icon-wrap::before {
  border-color: var(--blue-light);
  transform: scale(1.08);
}

.avd-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--blue-light), var(--blue) 70%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 10px 22px -6px rgba(13, 28, 61, .38);
  transition: transform .25s ease, box-shadow .25s ease;
  flex-shrink: 0;
}

.avd-col:hover .avd-icon {
  transform: scale(1.07) rotate(-3deg);
  box-shadow: 0 14px 28px -6px rgba(13, 28, 61, .45);
}

/* ---- Label ---- */
.avd-label {
  background: #3F8A0C;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .01em;
  text-transform: uppercase;
  padding: 9px 10px;
  border-radius: 5px;
  line-height: 1.25;
  width: 100%;
  max-width: 165px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px -4px rgba(63, 138, 12, .3);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  z-index: 2;
}

.avd-col:hover .avd-label {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -4px rgba(63, 138, 12, .38);
}

/* ---- Outer frame ---- */
.avd-outer-wrap {
  position: relative;
  padding: 26px 26px 0;
  margin: 0 -26px;
}
/* 
.avd-outer-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-left: 1.5px solid #3F8A0C;
  border-right: 1.5px solid #3F8A0C;
  border-bottom: 1.5px solid #3F8A0C;
  z-index: 0;
  pointer-events: none;
} */

.avd-center-line {
  position: absolute;
  top: -26px;
  left: 50%;
  width: 2px;
  height: 52px;
  background: #3F8A0C;
  z-index: 1;
}

/* ---- Inner frame ---- */
.avd-inner-wrap {
    position: relative;
    padding: 0 18px 18px;
    margin: 0 -18px 0;
}

/* .avd-inner-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-left: 1.5px solid #3F8A0C;
  border-right: 1.5px solid #3F8A0C;
  border-bottom: 1.5px solid #3F8A0C;
  z-index: 0;
  pointer-events: none;
} */

.avd-row-2 {
  position: relative;
  z-index: 2;
}

.avd-row-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: #3F8A0C;
  z-index: 3;
}

/* ---- Mobile fallback ---- */
.avd-mobile-grid {
  display: none;
}

@media (max-width:700px) {
  .avd-mobile-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 14px;
    justify-content: center;
  }

  .avd-mobile-grid .avd-col-m {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 45%;
  }

  .avd-mobile-grid .avd-icon-wrap {
    margin: 0 0 10px;
  }

  .avd-mobile-grid .avd-label {
    max-width: 100%;
  }
}

@media (max-width:420px) {
  .avd-mobile-grid .avd-col-m {
    width: 100%;
  }
  .kc-item {
        width: 100%;
    }
}

/* ---- bottom certification strip ---- */
.avd-strip {
  display: flex;
  flex-wrap: wrap;
  border: 1.5px solid #3F8A0C;
  border-radius: 8px;
  padding: 16px 0;
  background: #fff;
  margin-top: 26px;
}

.avd-strip-item {
  flex: 1 1 auto;
  text-align: left;
  padding: 0 14px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--navy);
  border-right: 1px solid var(--line);
  line-height: 1.3;
}

.avd-strip-item:last-child {
  border-right: none;
}

@media (max-width:900px) {
  .avd-strip-item {
    flex: 1 1 45%;
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 8px 12px;
    text-align: center;
  }

  .avd-strip-item:last-child {
    border-bottom: none;
  }
}

@media (max-width:520px) {
  .avd-strip-item {
    flex: 1 1 100%;
  }
}





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

@media (max-width:900px) {
  .icdh-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:560px) {
  .icdh-grid {
    grid-template-columns: 1fr;
  }
}

.icdh-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-card);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
  overflow: hidden;
}

.icdh-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent, var(--blue));
}

.icdh-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--blue-pale);
}

/* alternate accent colors across the grid */
.icdh-card:nth-child(3n+2) {
  --accent: var(--green-deep);
}

.icdh-card:nth-child(3n+3) {
  --accent: #F5A623;
}

.icdh-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent, var(--blue));
  color: #fff;
  font-size: 20px;
  transition: transform .22s ease;
}

.icdh-card:hover .icdh-icon {
  transform: scale(1.08) rotate(-4deg);
}

.icdh-body {
  flex: 1;
  min-width: 0;
}

.icdh-num {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent, var(--blue));
  font-weight: 700;
  margin-bottom: 4px;
  display: block;
}

.icdh-body h5 {
  font-family: var(--font-display);
  font-size: .92rem;
  margin: 0;
  color: var(--navy);
  line-height: 1.3;
}

  .svc-strip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 30px;
  }

  .svc-strip-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* padding: 0 36px; */
    position: relative;
  }

  /* .svc-strip-item:not(:first-child) {
    border-left: 1px solid var(--line);
  } */

  @media (max-width: 860px) {
    .svc-strip-grid {
      grid-template-columns: 1fr;
      gap: 36px;
    }
    .svc-strip-item:not(:first-child) {
      border-left: none;
      border-top: 1px solid var(--line);
      padding-top: 30px;
    }
    .svc-strip-item {
      padding-left: 0;
      padding-right: 0;
    }
  }

  /* ---- icon badge: circular dotted/dashed ring behind a flat icon ---- */
  .svc-strip-icon-wrap {
    position: relative;
    width: 78px;
    height: 78px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .svc-strip-icon-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px dashed #C7D6EE;
  }

  .svc-strip-icon-wrap::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46,111,224,.06), transparent 70%);
  }

  .svc-strip-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: .01em;
    text-transform: uppercase;
    line-height: 1.35;
    margin: 0 0 12px;
  }

  .svc-strip-title .line-a { color: var(--green-deep); display: block; }
  .svc-strip-title .line-b { color: var(--blue); display: block; }

  .svc-strip-item.alt .svc-strip-title .line-a { color: var(--blue); }
  .svc-strip-item.alt .svc-strip-title .line-b { color: var(--green-deep); }

  .svc-strip-desc {
    font-size: .95rem;
    line-height: 1.55;
    color: var(--white);
    margin: 0;
  }

















  /* ================= GALLERY PAGE (gal-) ================= */
.gal-wrap {
  position: relative;
  overflow: hidden;
}

/* ---- filter tabs: reuse prodtabs-btn look, tighter spacing for a toolbar feel ---- */
.gal-filters {
  margin-bottom: 40px;
}

/* ---- grid ---- */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width:1100px) {
  .gal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:760px) {
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:480px) {
  .gal-grid {
    grid-template-columns: 1fr;
  }
}

.gal-item {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gal-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.gal-item:hover img {
  transform: scale(1.07);
}

/* category chip, top-left */
.gal-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 4px 12px rgba(13, 28, 61, .25);
}

.gal-cat-badge.green {
  background: var(--green-deep);
}

.gal-cat-badge.navy {
  background: var(--navy);
}

/* hover overlay with title + zoom cue */
.gal-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(13, 28, 61, .88) 0%, rgba(13, 28, 61, .25) 45%, transparent 70%);
  opacity: 0;
  transition: opacity .25s ease;
}

.gal-item:hover .gal-overlay {
  opacity: 1;
}

.gal-overlay-title {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  line-height: 1.3;
  max-width: 85%;
}

.gal-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(4px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  opacity: 0;
  transform: scale(.85);
  transition: opacity .2s ease, transform .2s ease;
}

.gal-item:hover .gal-zoom {
  opacity: 1;
  transform: scale(1);
}

.gal-empty {
  text-align: center;
  color: var(--ink-soft);
  font-size: .95rem;
  padding: 40px 0;
}



/* ================= TOP UTILITY BAR ================= */
.topbar {
  background: var(--navy);
  color: #C6D3EE;
  padding: 8px 0;
  font-size: .8rem;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #C6D3EE;
  transition: color .18s ease;
}

.topbar-contact a:hover {
  color: var(--green);
}

.topbar-contact a i {
  font-size: 12px;
  color: var(--green);
}

/* ---- single-icon contact group (one icon, multiple values) ---- */
.topbar-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.topbar-contact-item i {
  font-size: 12px;
  color: var(--green);
  flex-shrink: 0;
}

.topbar-contact-item a {
  color: #C6D3EE;
  transition: color .18s ease;
}

.topbar-contact-item a:hover {
  color: var(--green);
}

.topbar-contact-item .divider {
  color: #7C8CB2;
  padding: 0 2px;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-social a {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6D3EE;
  font-size: 11px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.topbar-social a:hover {
  background: var(--green);
  color: var(--navy);
  transform: translateY(-2px);
}

@media (max-width:700px) {
  .topbar-contact a span {
    display: none;
  }

  .topbar .topbar-contact-item a,
  .topbar .topbar-contact-item .divider {
    display: block;
  }

  .topbar .container {
    justify-content: center;
    gap: 14px;
  }
}

@media (max-width:480px) {
  .topbar {
    padding: 6px 0;
  }

  .topbar-social {
    display: none;
  }
}

.topbar-social a i {
  color: #fff !important;
}










/* ================= IT-OT-AUTOMATION OVERVIEW + KEY BENEFITS (itov-) ================= */
.itov-wrap {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

@media (max-width:1100px) {
  .itov-wrap {
    flex-direction: column;
  }
}

/* ---- Left card ---- */
.itov-card {
    flex: 1;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 34px 30px 0;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    justify-content: space-between;
}

.itov-circles {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0 30px;
}

.itov-circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 3px solid;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 20px 0 40px;
  position: relative;
  flex-shrink: 0;
}

.itov-circle.it {
  border-color: var(--blue);
  background: #fff;
  z-index: 1;
  margin-right: -34px;
}

.itov-circle.auto {
  border-color: var(--blue);
  background: var(--blue-pale);
  z-index: 2;
  padding-left: 62px;
}

.itov-circle.ot {
  border-color: var(--green);
  background: var(--green-pale);
  z-index: 1;
  margin-left: -34px;
  padding-left: 62px;
}

.itov-circle-icon {
  font-size: 1.7rem;
  color: var(--blue);
  margin-bottom: 8px;
}

.itov-circle.ot .itov-circle-icon {
  color: var(--green-deep);
}

.itov-circle h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 10px;
}

.itov-circle ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.itov-circle li {
  position: relative;
  padding-left: 12px;
  font-size: .78rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.itov-circle li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ink-faint);
}

@media (max-width:900px) {
  .itov-circles {
    flex-direction: column;
  }

  .itov-circle {
    width: 100%;
    max-width: 300px;
    margin: 0 0 -20px !important;
    padding-left: 40px !important;
    height: auto;
    min-height: 200px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .itov-circle:last-child {
    margin-bottom: 0 !important;
  }
}

/* ---- Bottom pill bar ---- */
.itov-pillbar {
  background: var(--navy);
  border-radius: 0 0 16px 16px;
  margin: 0 -30px;
  padding: 16px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.itov-pillbar span {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.itov-pillbar .div {
  color: rgba(255, 255, 255, .35);
  font-weight: 300;
}

/* ---- Right sidebar: Key Benefits ---- */
.itov-benefits {
  flex: 0 0 300px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

@media (max-width:1100px) {
  .itov-benefits {
    flex: 1;
  }
}

.itov-benefits-head {
  background: linear-gradient(90deg, var(--navy), var(--blue));
  color: #fff;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 16px 20px;
}

.itov-benefits-list {
  list-style: none;
  margin: 0;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.itov-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.itov-benefit-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 1px;
}

.itov-benefit-text h6 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  color: var(--blue);
  text-transform: uppercase;
  margin: 0 0 3px;
  letter-spacing: .01em;
  line-height: 1.3;
}

.itov-benefit-text p {
  font-size: .8rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.45;
}








/* ================= SERVICE SUPPORT & FIELD INSTRUMENTS (ssv-) ================= */
.ssv-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 44px;
  align-items: start;
}

@media (max-width:991px) {
  .ssv-layout {
    grid-template-columns: 1fr;
  }
}

/* ---- Left: bullet content ---- */
.ssv-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ssv-list > li {
  position: relative;
  padding-left: 26px;
  font-size: .96rem;
  line-height: 1.55;
  color: var(--ink);
}

.ssv-list > li::before {
  content: "❖";
  position: absolute;
  left: 0;
  top: .05em;
  color: var(--blue);
  font-size: .85rem;
}

.ssv-sublist {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ssv-sublist li {
  position: relative;
  padding-left: 22px;
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.ssv-sublist li::before {
  content: "➤";
  position: absolute;
  left: 0;
  top: .05em;
  color: var(--green-deep);
  font-size: .78rem;
}

/* ---- Right: 3-image gallery ---- */
.ssv-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ssv-gallery .kc-frame {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  aspect-ratio: 1/1.2;
}

.ssv-gallery .kc-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width:560px) {
  .ssv-gallery {
    grid-template-columns: 1fr;
  }

  .ssv-gallery .kc-frame {
    aspect-ratio: 16/10;
  }
}





/* ================= NESTED SUBMENU (services dropdown) ================= */

/* ---- Desktop: flyout submenu to the right ---- */
.nav-subitem {
  position: relative;
}

.nav-subitem > a.has-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.nav-subitem > a.has-sub .sub-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-subitem > a.has-sub .sub-caret {
  display: block;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--ink-soft);
  border-bottom: 2px solid var(--ink-soft);
  transform: rotate(-45deg);
  transition: transform .2s ease, border-color .2s ease;
  flex-shrink: 0;
}

.subdropdown-panel {
  position: absolute;
  top: -8px;
  left: calc(100% + 3px);
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(13, 28, 61, .14);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 130;
}

@media (min-width:901px) {
  .nav-subitem:hover > .subdropdown-panel,
  .nav-subitem.open > .subdropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-subitem:hover > a.has-sub .sub-caret,
  .nav-subitem.open > a.has-sub .sub-caret {
    transform: rotate(-135deg);
    border-color: var(--navy);
  }
}

.subdropdown-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: background .15s ease, padding-left .15s ease;
}

.subdropdown-panel a:hover {
  background: rgba(13, 28, 61, .06);
  color: var(--navy);
  padding-left: 16px;
}

.subdropdown-panel a i {
  width: 16px;
  text-align: center;
  color: var(--blue);
  font-size: 13px;
  flex-shrink: 0;
}

/* ---- Mobile: accordion-style nested panel ---- */
@media (max-width:900px) {
  .nav-subitem > a.has-sub {
    padding: 10px 12px;
    border-radius: 9px;
  }

  .nav-subitem > a.has-sub .sub-label {
    white-space: normal;
    line-height: 1.3;
  }

  .nav-subitem > a.has-sub .sub-caret {
    transform: rotate(45deg);
  }

  .nav-subitem.open > a.has-sub .sub-caret {
    transform: rotate(225deg);
    border-color: var(--navy);
  }

  .subdropdown-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: rgba(13, 28, 61, .03);
    border-radius: 8px;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0 0 0 10px;
    transition: max-height .25s ease, padding .25s ease;
  }

  .nav-subitem.open .subdropdown-panel {
    max-height: 220px;
    padding: 6px;
    margin-top: 4px;
    margin-bottom: 6px;
  }

  .subdropdown-panel a {
    padding: 9px 12px;
  }
}


/* ================= OUR DELIVERABLES MATRIX — enhanced (icdm-) ================= */
.icdm-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.icdm-head {
  position: relative;
  background: linear-gradient(120deg, var(--navy) 0%, var(--blue) 70%, var(--blue-light) 100%);
  color: #fff;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 22px 20px;
  overflow: hidden;
}

.icdm-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .14) 1px, transparent 1.3px);
  background-size: 20px 20px;
  opacity: .6;
}

.icdm-head span {
  position: relative;
  z-index: 1;
}

.icdm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 30px;
}

@media (max-width:1200px) {
  .icdm-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:900px) {
  .icdm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:560px) {
  .icdm-grid {
    grid-template-columns: 1fr;
  }
}

.icdm-col {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 20px 22px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.icdm-col:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--blue-pale);
  background: #fff;
}

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

.icdm-col-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  color: var(--green-deep);
  font-size: 14px;
  transition: transform .22s ease;
}

.icdm-col:hover .icdm-col-icon {
  transform: scale(1.08) rotate(-4deg);
}

.icdm-col h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}

.icdm-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.icdm-col li {
  position: relative;
  padding-left: 16px;
  font-size: .8rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.icdm-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

/* ---- Coverage column: visually distinct highlight card ---- */
.icdm-coverage {
  background: linear-gradient(155deg, var(--navy) 0%, #16264d 100%);
  border-color: var(--navy);
}

.icdm-coverage:hover {
  background: linear-gradient(155deg, var(--navy) 0%, #16264d 100%);
}

.icdm-coverage .icdm-col-icon {
  background: rgba(255, 255, 255, .12);
  color: var(--green);
}

.icdm-coverage h5 {
  color: #fff;
}

.icdm-coverage-block {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.icdm-coverage-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.icdm-coverage-block h6 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .76rem;
  color: var(--green);
  margin: 0 0 5px;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.icdm-coverage-block p {
  font-size: .78rem;
  line-height: 1.5;
  color: #C6D3EE;
  margin: 0;
}





/* ================= CYBRAUTIX PROFICIENCY IN INDUSTRIAL AUTOMATION — enhanced (cpia-) ================= */
.cpia-wrap {
  position: relative;
  overflow: hidden;
}

.cpia-intro-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 840px;
  margin: 0 auto 44px;
}

.cpia-intro-row p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

.cpia-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

@media (max-width:700px) {
  .cpia-grid {
    grid-template-columns: 1fr;
  }
}

.cpia-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.cpia-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: var(--blue-pale);
}

.cpia-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 16px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.cpia-item:nth-child(even) .cpia-item-icon {
  background: var(--green-pale);
  color: var(--green-deep);
}

.cpia-item:hover .cpia-item-icon {
  transform: scale(1.08) rotate(-4deg);
}

.cpia-item:hover:nth-child(odd) .cpia-item-icon {
  background: var(--blue);
  color: #fff;
}

.cpia-item:hover:nth-child(even) .cpia-item-icon {
  background: var(--green);
  color: var(--navy);
}

.cpia-item span {
  font-size: .94rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}





/* ================= BRAND PRODUCT LISTS (pbrand-) ================= */
.pbrand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width:800px) {
  .pbrand-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.pbrand-block h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--green-deep);
  margin: 0 0 18px;
}

.pbrand-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pbrand-block li {
  position: relative;
  padding-left: 20px;
  font-size: .95rem;
  line-height: 1.5;
  color: var(--ink);
}

.pbrand-block li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--ink-faint);
}

/* ================= 3-IMAGE PRODUCT SHOWCASE (pshow-) ================= */
.pshow-main {
  grid-row: 1 / 3;
}

.pshow-main .kc-visual {
  height: 100%;
}

/* .pshow-main .kc-frame {
  aspect-ratio: 4/5;
} */

@media (max-width:800px) {
  .pshow-main {
    grid-row: auto;
  }

  .pshow-main .kc-frame {
    aspect-ratio: 16/10;
  }
}

.pshow-sub .kc-frame {
  aspect-ratio: 4/3;
}

.pshow-main .kc-frame img,
.pshow-sub .kc-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ---- Mobile: show only ONE phone number and ONE email in topbar ---- */
@media (max-width:700px) {
  .topbar-secondary {
    display: none !important;
  }

.topbar-contact-item a:not(.topbar-secondary) {
    color: #5d6880;
    font-weight: 700;
    padding: 0 !important;
}

  .topbar-contact-item a:not(.topbar-secondary):hover {
    color: #fff;
  }
}


/* ================= GLOBAL INDUSTRY EXPOSURE — chip strip (gie-) ================= */
.gie-wrap {
  background: var(--green-pale);
  border: 1px solid #D7EFC4;
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.gie-label {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .84rem;
  letter-spacing: .01em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--ink);
  padding-right: 20px;
  border-right: 1px solid #C6E4AE;
}

@media (max-width:700px) {
  .gie-label {
    border-right: none;
    padding-right: 0;
    width: 100%;
  }
}

.gie-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.gie-chip {
  display: inline-flex;
  align-items: center;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .01em;
  padding: 9px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.gie-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -6px rgba(14, 77, 180, .45);
  background: var(--blue-light);
}

.gie-chip.emph {
  font-size: .88rem;
  padding: 11px 22px;
  background: var(--navy);
}

.gie-chip.emph:hover {
  background: var(--navy-mid);
}

@media (max-width:560px) {
  .gie-wrap {
    padding: 16px;
    gap: 14px;
  }

  .gie-chip {
    font-size: .78rem;
    padding: 8px 14px;
  }
}

/* ================= CONTACT FORM: AJAX submit states (send-mail.php) ================= */

/* Honeypot — invisible to real users, catches bots without hurting accessibility */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  display: none;
  background: #FEF3E2;
  border: 1px solid #F5A623;
  color: #B9770E;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: .9rem;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}

.form-error.show {
  display: flex;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #F5A623;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, .12);
}

.field-error-msg {
  margin: 6px 0 0;
  font-size: .78rem;
  color: #B9770E;
}

.contact-form button[type="submit"]:disabled {
  opacity: .7;
  cursor: not-allowed;
}
.tech-block img {
  height: 30px;
}