/* =========================================================================
   OSHIN INFOTECH — HOME PAGE STYLESHEET
   Namespace: all selectors are scoped under .oh-page / prefixed "oh-"
   so this file can never collide with CSS written for other pages.
   ========================================================================= */

.oh-page {
  /* ---- Design tokens (scoped, not on :root, to avoid leaking) ---- */
  --oh-navy: #061e3d;
  --oh-blue: #004e8c;
  --oh-blue-deep: #003668;
  --oh-cyan: #1bb6c9;
  --oh-cyan-deep: #0ea5c0;
  --oh-ink: #0d1f35;
  --oh-muted: #5b6b7d;
  --oh-line: #dfeaf5;
  --oh-surface: #ffffff;
  --oh-surface-alt: #f4f9fd;
  --oh-surface-tint: #eef6fc;

  --oh-font-display: "Sora", "Segoe UI", sans-serif;
  --oh-font-body: "Manrope", "Segoe UI", sans-serif;

  --oh-radius-sm: 10px;
  --oh-radius-md: 16px;
  --oh-radius-lg: 24px;
  --oh-radius-pill: 999px;

  --oh-shadow-sm: 0 2px 14px rgba(0, 61, 110, 0.07);
  --oh-shadow-md: 0 10px 30px rgba(0, 61, 110, 0.12);
  --oh-shadow-lg: 0 24px 60px rgba(0, 61, 110, 0.16);

  --oh-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --oh-speed-fast: 180ms;
  --oh-speed-med: 320ms;
  --oh-speed-slow: 620ms;

  font-family: var(--oh-font-body);
  color: var(--oh-ink);
  background: var(--oh-surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- Reset (scoped) ----
   NOTE: everything here is wrapped in :where() so the reset carries
   ZERO specificity. Without this, selectors like ".oh-page button"
   (a class + a type = specificity 0,1,1) out-rank single-class
   component rules like ".oh-btn--gradient" (0,1,0) and silently
   cancel their border/background/color — regardless of source
   order. :where() guarantees component classes always win. */
:where(.oh-page, .oh-page *, .oh-page *::before, .oh-page *::after) {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:where(.oh-page ul, .oh-page ol) { list-style: none; }
:where(.oh-page a) { color: inherit; text-decoration: none; }
:where(.oh-page img) { display: block; max-width: 100%; height: auto; }
:where(.oh-page button, .oh-page input, .oh-page select, .oh-page textarea) {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
}
.oh-page button { cursor: pointer; }
.oh-page :focus-visible {
  outline: 2px solid var(--oh-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .oh-page *, .oh-page *::before, .oh-page *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- Shared building blocks ---- */
.oh-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--oh-speed-fast) var(--oh-ease);
}
.oh-icon--sm { width: 13px; height: 13px; stroke-width: 3; }
.oh-icon--accent { color: var(--oh-cyan); width: 18px; height: 18px; stroke-width: 2.4; }

.oh-eyebrow {
  font-family: var(--oh-font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oh-cyan-deep);
  margin-bottom: 10px;
}

.oh-heading {
  font-family: var(--oh-font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--oh-navy);
  font-size: clamp(26px, 3.2vw, 40px);
}

.oh-body-text {
  color: var(--oh-muted);
  font-size: 15.5px;
  line-height: 1.75;
  margin-top: 18px;
  margin-bottom: 28px;
  max-width: 100%;
}

.oh-section-intro {
  color: var(--oh-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  margin: 14px auto 0;
}

.oh-divider {
  width: 46px;
  height: 3px;
  border-radius: var(--oh-radius-pill);
  background: linear-gradient(90deg, var(--oh-blue), var(--oh-cyan));
  margin-bottom: 18px;
}
.oh-divider--center { margin-left: auto; margin-right: auto; }

.oh-section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.oh-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27, 182, 201, 0.12);
  color: var(--oh-cyan-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--oh-radius-pill);
}

/* ---- Buttons ---- */
.oh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--oh-font-display);
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 28px;
  border-radius: 12px;
  transition: transform var(--oh-speed-fast) var(--oh-ease),
              box-shadow var(--oh-speed-fast) var(--oh-ease),
              background-color var(--oh-speed-fast) var(--oh-ease),
              background-position var(--oh-speed-med) var(--oh-ease),
              border-color var(--oh-speed-fast) var(--oh-ease),
              color var(--oh-speed-fast) var(--oh-ease);
  white-space: nowrap;
}
.oh-btn:hover { transform: translateY(-2px); }
.oh-btn:active { transform: translateY(0); }

.oh-btn--primary {
  background: linear-gradient(90deg, var(--oh-blue) 0%, var(--oh-cyan) 100%);
  background-size: 160% 100%;
  background-position: 0% 0%;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 78, 140, 0.28);
}
.oh-btn--primary:hover {
  background-position: 100% 0%;
  box-shadow: 0 16px 34px rgba(0, 78, 140, 0.38);
}

.oh-btn--gradient {
  background: linear-gradient(135deg, var(--oh-blue) 0%, var(--oh-cyan) 100%);
  background-size: 160% 160%;
  background-position: 0% 0%;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 78, 140, 0.24);
  padding: 10px 22px;
}
.oh-btn--gradient:hover {
  background-position: 100% 100%;
  box-shadow: 0 14px 30px rgba(0, 78, 140, 0.34);
}

.oh-btn--outline {
  background: transparent;
  color: var(--oh-blue);
  border: 1.5px solid var(--oh-blue);
}
.oh-btn--outline:hover {
  background: linear-gradient(135deg, var(--oh-blue) 0%, var(--oh-cyan) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 78, 140, 0.28);
}

.oh-btn--ghost {
  background: rgba(0, 78, 140, 0.08);
  color: var(--oh-blue);
}
.oh-btn--ghost:hover { background: rgba(0, 78, 140, 0.16); }
.oh-btn--ghost:hover .oh-icon { transform: translateX(3px); }

.oh-btn--light {
  background: #fff;
  color: var(--oh-blue);
  box-shadow: var(--oh-shadow-md);
}
.oh-btn--light:hover {
  background: var(--oh-navy);
  color: #fff;
  box-shadow: var(--oh-shadow-lg);
}

.oh-textlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--oh-cyan-deep);
  transition: gap var(--oh-speed-fast) var(--oh-ease), color var(--oh-speed-fast) var(--oh-ease);
}
.oh-textlink:hover { gap: 10px; color: var(--oh-blue); }

/* ---- Scroll reveal ---- */
/* Scroll reveal — progressive enhancement only.
   Content is fully visible by default. The invisible "waiting to
   animate in" state is scoped under html.oh-js, a class added by a
   synchronous inline script in <head>. If JavaScript fails to load
   or run for any reason, .oh-js is never added, so every section
   simply stays visible — it can never get stuck hidden. */
.oh-reveal { opacity: 1; transform: none; }
.oh-js .oh-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--oh-speed-slow) var(--oh-ease), transform var(--oh-speed-slow) var(--oh-ease);
}
.oh-js .oh-reveal.oh-is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================================
   TOP UTILITY BAR
   ========================================================================= */
.oh-topbar {
  background: linear-gradient(90deg, #034ea1 0%, #00b7ac 100%);
  color: #fff;
}
.oh-topbar__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.oh-topbar__contacts { display: flex; align-items: center; gap: 28px; }
.oh-topbar__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.92;
  transition: opacity var(--oh-speed-fast) var(--oh-ease);
}
.oh-topbar__link:hover { opacity: 1; text-decoration: underline; }
.oh-topbar__actions { display: flex; align-items: center; gap: 14px; }

.oh-pillbtn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--oh-radius-sm);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  transition: background var(--oh-speed-fast) var(--oh-ease);
}
.oh-pillbtn:hover { background: rgba(255, 255, 255, 0.28); }
.oh-pillbtn--static { cursor: default; }

/* ---- Dropdowns (shared by topbar + navbar) ---- */
.oh-dropdown { position: relative; }
/* Invisible bridge so the pointer never leaves ".oh-dropdown" while
   travelling from the trigger down into the panel — without this,
   the small visual gap breaks :hover the instant the cursor leaves
   the trigger, before ever reaching the panel. */
.oh-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}
.oh-dropdown__panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--oh-line);
  border-radius: var(--oh-radius-sm);
  box-shadow: var(--oh-shadow-md);
  padding: 10px 0;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--oh-speed-fast) var(--oh-ease),
              transform var(--oh-speed-fast) var(--oh-ease),
              visibility var(--oh-speed-fast);
}
.oh-topbar .oh-dropdown__panel { left: auto; right: 0; }
.oh-dropdown:hover .oh-dropdown__panel,
.oh-dropdown:focus-within .oh-dropdown__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.oh-dropdown__panel--wide { display: flex; min-width: 480px; padding: 16px 0; }
.oh-dropdown__group { flex: 1; padding: 0 8px; }
.oh-dropdown__label {
  padding: 6px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--oh-muted);
}
.oh-dropdown__item {
  display: block;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--oh-blue);
  transition: background var(--oh-speed-fast) var(--oh-ease), padding-left var(--oh-speed-fast) var(--oh-ease);
}
.oh-dropdown__item:hover { background: var(--oh-surface-tint); padding-left: 22px; }

/* =========================================================================
   MAIN NAVIGATION
   ========================================================================= */
.oh-navbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #fff;
  border-bottom: 1px solid var(--oh-line);
}
.oh-navbar__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
/* .oh-navbar__brand img { height: 46px; width: auto; } */
.oh-navbar__brand img { height: 70px; width: auto; }
.oh-navbar__menu {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: 1;
  justify-content: flex-end;
}
.oh-navbar__link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--oh-blue);
  padding: 8px 2px;
  position: relative;
}
.oh-navbar__link::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--oh-blue), var(--oh-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--oh-speed-fast) var(--oh-ease);
}
.oh-navbar__link:hover::after { transform: scaleX(1); }
.oh-navbar__cta { display: flex; align-items: center; gap: 10px; margin-left: 12px; }

.oh-navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
.oh-navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--oh-blue);
  border-radius: 2px;
  transition: transform var(--oh-speed-fast) var(--oh-ease), opacity var(--oh-speed-fast) var(--oh-ease);
  margin: 0 auto;
}
.oh-navbar__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.oh-navbar__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.oh-navbar__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.oh-navbar__scrim { display: none; }

/* =========================================================================
   HERO
   ========================================================================= */
/* =========================================
   HERO SECTION
========================================= */

.oh-hero {
  position: relative;
  background: linear-gradient(
    135deg,
    #f0f7ff 0%,
    #e8f3f9 50%,
    #f5f9fd 100%
  );

  padding: clamp(60px, 7vw, 88px) clamp(20px, 4vw, 48px)
           clamp(70px, 9vw, 120px);

  overflow: hidden;
}


/* =========================================
   HERO SLIDES CONTAINER
========================================= */

.oh-hero__slides {
  width: 100%;
  max-width: 1344px;
  margin: 0 auto;
  position: relative;
}


/* =========================================
   HERO SLIDE
========================================= */

.oh-hero__slide {
  display: none;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(320px, 0.95fr);

  gap: clamp(40px, 5vw, 72px);

  align-items: center;
}

.oh-hero__slide--active {
  display: grid;
  animation: oh-slide-in 620ms var(--oh-ease) both;
}


/* =========================================
   HERO CONTENT
========================================= */

.oh-hero__content {
  width: 100%;
  min-width: 0;

  animation: oh-fade-up 900ms var(--oh-ease) both;
}

.oh-hero__title {
  font-family: var(--oh-font-display);

  font-size: clamp(36px, 4vw, 42px);
  font-weight: 800;

  letter-spacing: -0.03em;
  line-height: 1.12;

  color: var(--oh-navy);

  margin: 16px 0;
  max-width: 700px;
}

.oh-hero__subtitle {
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 600;
  line-height: 1.4;

  color: var(--oh-blue);

  margin-bottom: 18px;
}

.oh-hero__desc {
  width: 100%;
  max-width: 560px;

  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;

  color: var(--oh-muted);

  margin-bottom: 34px;
}


/* =========================================
   HERO BUTTONS
========================================= */

.oh-hero__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;

  margin-bottom: 34px;
}


/* =========================================
   HERO TRUST
========================================= */

.oh-hero__trust {
  display: flex;
  align-items: center;

  gap: clamp(18px, 3vw, 32px);

  padding-top: 26px;

  border-top: 1px solid rgba(0, 91, 154, 0.12);

  flex-wrap: wrap;
}

.oh-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 9px;

  font-size: clamp(13px, 1vw, 14.5px);
  line-height: 1.4;

  color: var(--oh-muted);
  font-weight: 500;
}


/* =========================================
   HERO VISUAL
========================================= */

.oh-hero__visual {
  position: relative;

  width: 100%;
  min-width: 0;
  min-height: 380px;

  display: flex;
  align-items: center;
  justify-content: center;

  animation: oh-fade-in 1200ms var(--oh-ease) both;
}


/* =========================================
   HERO GLOW
========================================= */

.oh-hero__glow {
  position: absolute;

  top: -10%;
  right: -10%;

  width: clamp(220px, 28vw, 340px);
  height: clamp(220px, 28vw, 340px);

  border-radius: 50%;

  background: linear-gradient(
    135deg,
    rgba(27, 182, 201, 0.4),
    rgba(0, 91, 154, 0.2)
  );

  filter: blur(90px);

  animation: oh-pulse 6s ease-in-out infinite;

  pointer-events: none;
}


/* =========================================
   HERO IMAGE
========================================= */

.oh-hero__image-frame {
  position: relative;

  width: 100%;
  max-width: 680px;

  aspect-ratio: 4 / 3;

  border-radius: var(--oh-radius-lg);

  overflow: hidden;

  box-shadow: var(--oh-shadow-lg);

  z-index: 1;
}

.oh-hero__image-frame img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 900ms var(--oh-ease);
}

.oh-hero__image-frame:hover img {
  transform: scale(1.05);
}


/* =========================================
   HERO CONTROLS
========================================= */

.oh-hero__controls {
  position: relative;
  z-index: 5;

  margin-top: clamp(40px, 5vw, 64px);

  display: flex;
  align-items: center;
  justify-content: center;

  gap: clamp(20px, 3vw, 34px);
}

.oh-hero__arrow {
  width: 46px;
  height: 46px;

  flex-shrink: 0;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.92);

  border: 1px solid rgba(0, 91, 154, 0.15);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--oh-blue);

  box-shadow: var(--oh-shadow-sm);

  transition:
    transform var(--oh-speed-fast) var(--oh-ease),
    box-shadow var(--oh-speed-fast) var(--oh-ease);
}

.oh-hero__arrow:hover {
  transform: scale(1.08);
  box-shadow: var(--oh-shadow-md);
}


/* =========================================
   HERO DOTS
========================================= */

.oh-hero__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.oh-hero__dot {
  width: 10px;
  height: 10px;

  flex-shrink: 0;

  border-radius: 50%;

  background: rgba(0, 91, 154, 0.3);

  transition:
    background var(--oh-speed-fast) var(--oh-ease),
    transform var(--oh-speed-fast) var(--oh-ease),
    width var(--oh-speed-fast) var(--oh-ease);
}

.oh-hero__dot:hover {
  transform: scale(1.2);
}

.oh-hero__dot--active {
  width: 26px;

  border-radius: var(--oh-radius-pill);

  background: linear-gradient(
    90deg,
    var(--oh-blue),
    var(--oh-cyan)
  );
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes oh-slide-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes oh-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes oh-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes oh-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}


/* =========================================
   LARGE TABLET / SMALL DESKTOP
   <= 1200px
========================================= */

@media (max-width: 1200px) {

  .oh-hero {
    padding-left: 32px;
    padding-right: 32px;
  }

  .oh-hero__slide {
    gap: 48px;
  }

  .oh-hero__visual {
    min-height: 340px;
  }

  .oh-hero__title {
    font-size: clamp(34px, 4vw, 40px);
  }

  .oh-hero__desc {
    max-width: 500px;
  }
}


/* =========================================
   TABLET
   <= 992px
========================================= */

@media (max-width: 992px) {

  .oh-hero {
    padding-top: 65px;
    padding-bottom: 80px;
  }

  .oh-hero__slide {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .oh-hero__content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .oh-hero__title {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .oh-hero__desc {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }

  .oh-hero__buttons {
    justify-content: center;
  }

  .oh-hero__trust {
    justify-content: center;
  }

  .oh-hero__visual {
    min-height: auto;
    width: 100%;
  }

  .oh-hero__image-frame {
    width: min(100%, 720px);
    aspect-ratio: 16 / 10;
    margin: 0 auto;
  }

  .oh-hero__glow {
    top: 0;
    right: 5%;
  }

  .oh-hero__controls {
    margin-top: 45px;
  }
}


/* =========================================
   SMALL TABLET
   <= 768px
========================================= */

@media (max-width: 768px) {

  .oh-hero {
    padding: 55px 24px 65px;
  }

  .oh-hero__slide {
    gap: 34px;
  }

  .oh-hero__title {
    font-size: clamp(32px, 6vw, 38px);
    line-height: 1.15;
    margin: 12px 0 16px;
  }

  .oh-hero__subtitle {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .oh-hero__desc {
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .oh-hero__buttons {
    gap: 12px;
    margin-bottom: 28px;
  }

  .oh-hero__trust {
    gap: 16px 24px;
    padding-top: 20px;
  }

  .oh-hero__trust-item {
    font-size: 13px;
  }

  .oh-hero__image-frame {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .oh-hero__glow {
    width: 240px;
    height: 240px;
    filter: blur(70px);
  }
}


/* =========================================
   MOBILE
   <= 576px
========================================= */

@media (max-width: 576px) {

  .oh-hero {
    padding: 48px 18px 58px;
  }

  .oh-hero__slide {
    gap: 28px;
  }

  .oh-hero__title {
    font-size: clamp(29px, 8vw, 34px);
    letter-spacing: -0.025em;
  }

  .oh-hero__subtitle {
    font-size: 16px;
  }

  .oh-hero__desc {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .oh-hero__buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .oh-hero__buttons > * {
    width: 100%;
  }

  .oh-hero__trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .oh-hero__trust-item {
    justify-content: center;
  }

  .oh-hero__image-frame {
    aspect-ratio: 1 / 1;
    border-radius: 14px;
  }

  .oh-hero__glow {
    width: 190px;
    height: 190px;
    right: -5%;
    top: 5%;
    filter: blur(60px);
  }

  .oh-hero__controls {
    margin-top: 32px;
    gap: 18px;
  }

  .oh-hero__arrow {
    width: 42px;
    height: 42px;
  }

  .oh-hero__dots {
    gap: 8px;
  }

  .oh-hero__dot {
    width: 8px;
    height: 8px;
  }

  .oh-hero__dot--active {
    width: 22px;
  }
}


/* =========================================
   SMALL MOBILE
   <= 400px
========================================= */

@media (max-width: 400px) {

  .oh-hero {
    padding: 42px 14px 50px;
  }

  .oh-hero__title {
    font-size: 28px;
  }

  .oh-hero__subtitle {
    font-size: 15px;
  }

  .oh-hero__desc {
    font-size: 13.5px;
  }

  .oh-hero__buttons {
    gap: 10px;
  }

  .oh-hero__trust-item {
    font-size: 12px;
  }

  .oh-hero__image-frame {
    border-radius: 12px;
  }

  .oh-hero__controls {
    margin-top: 28px;
  }

  .oh-hero__arrow {
    width: 40px;
    height: 40px;
  }
}


/* =========================================
   TOUCH DEVICES
   Disable hover-only transforms
========================================= */

@media (hover: none) {

  .oh-hero__image-frame:hover img {
    transform: none;
  }

  .oh-hero__arrow:hover {
    transform: none;
    box-shadow: var(--oh-shadow-sm);
  }

  .oh-hero__dot:hover {
    transform: none;
  }
}


/* =========================================
   REDUCED MOTION
   Accessibility
========================================= */

@media (prefers-reduced-motion: reduce) {

  .oh-hero__slide--active,
  .oh-hero__content,
  .oh-hero__visual,
  .oh-hero__glow {
    animation: none;
  }

  .oh-hero__image-frame img,
  .oh-hero__arrow,
  .oh-hero__dot {
    transition: none;
  }
}   

@media (max-width: 767px) {
  .oh-hero__slide {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .oh-hero__visual {
    order: 1;
  }

  .oh-hero__content {
    order: 2;
  }
  .oh-about {
      padding: 40px 20px !important;
  }
}
   
/*.oh-hero {*/
/*  position: relative;*/
/*  background: linear-gradient(135deg, #f0f7ff 0%, #e8f3f9 50%, #f5f9fd 100%);*/
/*  padding: 88px 48px 120px;*/
/*  overflow: hidden;*/
/*}*/
/*.oh-hero__slides {*/
/*  max-width: 1344px;*/
/*  margin: 0 auto;*/
/*  position: relative;*/
/*}*/
/*.oh-hero__slide {*/
/*  display: none;*/
/*  grid-template-columns: 1.05fr 0.95fr;*/
/*  gap: 72px;*/
/*  align-items: center;*/
/*}*/
/*.oh-hero__slide--active {*/
/*  display: grid;*/
/*  animation: oh-slide-in 620ms var(--oh-ease) both;*/
/*}*/
/*@keyframes oh-slide-in {*/
/*  from { opacity: 0; transform: translateY(18px); }*/
/*  to { opacity: 1; transform: translateY(0); }*/
/*}*/
/*.oh-hero__content { animation: oh-fade-up 900ms var(--oh-ease) both; }*/
/*.oh-hero__title {*/
/*  font-family: var(--oh-font-display);*/
/*  font-size: clamp(38px, 5vw, 42px);*/
/*  font-weight: 800;*/
/*  letter-spacing: -0.03em;*/
/*  line-height: 1.12;*/
/*  color: var(--oh-navy);*/
/*  margin: 16px 0;*/
/*}*/
/*.oh-hero__subtitle {*/
/*  font-size: clamp(18px, 2vw, 22px);*/
/*  font-weight: 600;*/
/*  color: var(--oh-blue);*/
/*  margin-bottom: 18px;*/
/*}*/
/*.oh-hero__desc {*/
/*  font-size: 16px;*/
/*  line-height: 1.8;*/
/*  color: var(--oh-muted);*/
/*  max-width: 520px;*/
/*  margin-bottom: 34px;*/
/*}*/
/*.oh-hero__buttons { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }*/
/*.oh-hero__trust {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 32px;*/
/*  padding-top: 26px;*/
/*  border-top: 1px solid rgba(0, 91, 154, 0.12);*/
/*  flex-wrap: wrap;*/
/*}*/
/*.oh-hero__trust-item { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--oh-muted); font-weight: 500; }*/

/*.oh-hero__visual { position: relative; min-height: 380px; display: flex; align-items: center; justify-content: center; animation: oh-fade-in 1200ms var(--oh-ease) both; }*/
/*.oh-hero__glow {*/
/*  position: absolute;*/
/*  top: -10%;*/
/*  right: -10%;*/
/*  width: 340px;*/
/*  height: 340px;*/
/*  border-radius: 50%;*/
/*  background: linear-gradient(135deg, rgba(27, 182, 201, 0.4), rgba(0, 91, 154, 0.2));*/
/*  filter: blur(90px);*/
/*  animation: oh-pulse 6s ease-in-out infinite;*/
/*}*/
/*.oh-hero__image-frame {*/
/*  position: relative;*/
/*  width: 100%;*/
/*  aspect-ratio: 4 / 3;*/
/*  border-radius: var(--oh-radius-lg);*/
/*  overflow: hidden;*/
/*  box-shadow: var(--oh-shadow-lg);*/
/*}*/
/*.oh-hero__image-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--oh-ease); }*/
/*.oh-hero__image-frame:hover img { transform: scale(1.05); }*/

/*.oh-hero__controls {*/
/*  position: relative;*/
/*  z-index: 5;*/
/*  margin-top: 64px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  gap: 34px;*/
/*}*/
/*.oh-hero__arrow {*/
/*  width: 46px;*/
/*  height: 46px;*/
/*  border-radius: 50%;*/
/*  background: rgba(255, 255, 255, 0.92);*/
/*  border: 1px solid rgba(0, 91, 154, 0.15);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  color: var(--oh-blue);*/
/*  box-shadow: var(--oh-shadow-sm);*/
/*  transition: transform var(--oh-speed-fast) var(--oh-ease), box-shadow var(--oh-speed-fast) var(--oh-ease);*/
/*}*/
/*.oh-hero__arrow:hover { transform: scale(1.08); box-shadow: var(--oh-shadow-md); }*/
/*.oh-hero__dots { display: flex; gap: 10px; }*/
/*.oh-hero__dot {*/
/*  width: 10px;*/
/*  height: 10px;*/
/*  border-radius: 50%;*/
/*  background: rgba(0, 91, 154, 0.3);*/
/*  transition: background var(--oh-speed-fast) var(--oh-ease), transform var(--oh-speed-fast) var(--oh-ease);*/
/*}*/
/*.oh-hero__dot:hover { transform: scale(1.2); }*/
/*.oh-hero__dot--active { background: linear-gradient(90deg, var(--oh-blue), var(--oh-cyan)); width: 26px; border-radius: var(--oh-radius-pill); }*/

/*@keyframes oh-fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }*/
/*@keyframes oh-fade-in { from { opacity: 0; } to { opacity: 1; } }*/
/*@keyframes oh-pulse { 0%, 100% { transform: scale(1); opacity: 0.9; } 50% { transform: scale(1.12); opacity: 1; } }*/

/* =========================================================================
   ABOUT
   ========================================================================= */
.oh-about { background: var(--oh-surface-alt); padding: 100px 48px; }
.oh-about__inner {
  max-width: 1344px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 76px;
  align-items: center;
}
.oh-about__media { position: relative; }
.oh-about__frame {
  border-radius: var(--oh-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3.5;
  box-shadow: var(--oh-shadow-md);
  border: 1px solid var(--oh-line);
}
.oh-about__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--oh-ease); }
.oh-about__media:hover .oh-about__frame img { transform: scale(1.04); }
.oh-about__decor {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(27, 182, 201, 0.18), rgba(0, 91, 154, 0.1));
  z-index: -1;
}

.oh-about__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.oh-mini-card {
  background: #fff;
  border: 1px solid var(--oh-line);
  border-radius: var(--oh-radius-md);
  padding: 24px;
  box-shadow: var(--oh-shadow-sm);
  transition: transform var(--oh-speed-med) var(--oh-ease), box-shadow var(--oh-speed-med) var(--oh-ease), border-color var(--oh-speed-med) var(--oh-ease);
}
.oh-mini-card:hover { transform: translateY(-6px); box-shadow: var(--oh-shadow-md); border-color: rgba(0, 91, 154, 0.25); }
.oh-mini-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh-blue);
  background: linear-gradient(135deg, rgba(0, 78, 140, 0.08), rgba(27, 182, 201, 0.12));
  margin-bottom: 16px;
  transition: transform var(--oh-speed-med) var(--oh-ease);
}
.oh-mini-card:hover .oh-mini-card__icon {
  background: linear-gradient(135deg, var(--oh-blue), var(--oh-cyan));
  color: #fff;
  transform: rotate(-6deg) scale(1.08);
}
.oh-mini-card h3 { font-family: var(--oh-font-display); font-size: 15px; font-weight: 600; margin-bottom: 8px; color: var(--oh-navy); }
.oh-mini-card p { font-size: 13.5px; color: var(--oh-muted); line-height: 1.6; }

/* =========================================================================
   CARD GRIDS — Specialized services / Core services / Segments (shared patterns)
   ========================================================================= */
.oh-specialized { background: var(--oh-surface-alt); padding: 100px 48px; }
.oh-specialized__grid, .oh-core__grid {
  max-width: 1344px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}
.oh-specialized__grid { grid-template-columns: repeat(3, 1fr); }

.oh-service-card {
  background: #fff;
  border: 1px solid var(--oh-line);
  border-radius: var(--oh-radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--oh-shadow-sm);
  transition: transform var(--oh-speed-med) var(--oh-ease), box-shadow var(--oh-speed-med) var(--oh-ease);
}
.oh-service-card:hover { transform: translateY(-8px); box-shadow: var(--oh-shadow-lg); }
.oh-service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh-blue);
  background: linear-gradient(135deg, rgba(0, 78, 140, 0.08), rgba(27, 182, 201, 0.12));
  transition: transform var(--oh-speed-med) var(--oh-ease), background var(--oh-speed-med) var(--oh-ease);
}
.oh-service-card__icon .oh-icon { width: 24px; height: 24px; }
.oh-service-card:hover .oh-service-card__icon { transform: scale(1.1) rotate(4deg); background: linear-gradient(135deg, var(--oh-blue), var(--oh-cyan)); color: #fff; }
.oh-service-card h3 { font-family: var(--oh-font-display); font-size: 18px; font-weight: 600; line-height: 1.25; color: var(--oh-navy); flex-grow: 0; }
.oh-service-card p { font-size: 14px; color: var(--oh-muted); line-height: 1.65; flex-grow: 1; }

.oh-core { background: var(--oh-surface-alt); padding: 0 48px 100px; }
.oh-core__grid { grid-template-columns: repeat(4, 1fr); }
.oh-core-card {
  background: #fff;
  border: 1px solid var(--oh-line);
  border-radius: var(--oh-radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--oh-speed-med) var(--oh-ease), box-shadow var(--oh-speed-med) var(--oh-ease);
}
.oh-core-card:hover { transform: translateY(-6px); box-shadow: var(--oh-shadow-md); }
.oh-core-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh-blue);
  background: linear-gradient(135deg, rgba(0, 78, 140, 0.08), rgba(27, 182, 201, 0.12));
  transition: transform var(--oh-speed-med) var(--oh-ease);
}
.oh-core-card:hover .oh-core-card__icon {
  background: linear-gradient(135deg, var(--oh-blue), var(--oh-cyan));
  color: #fff;
  transform: scale(1.1);
}
.oh-core-card h3 { font-family: var(--oh-font-display); font-size: 16px; font-weight: 600; color: var(--oh-navy); }
.oh-core-card p { font-size: 13.5px; color: var(--oh-muted); line-height: 1.6; flex-grow: 1; }

/* =========================================================================
   HEALTHCARE SEGMENTS
   ========================================================================= */
.oh-segments { background: #fff; padding: 100px 48px; }
.oh-segments__head {
  max-width: 1344px;
  margin: 0 auto 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.oh-segments__intro { color: var(--oh-muted); font-size: 15.5px; max-width: 380px; line-height: 1.7; }
.oh-segments__grid { max-width: 1344px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.oh-segment-card {
  background: #fff;
  border: 1px solid var(--oh-line);
  border-radius: var(--oh-radius-md);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--oh-shadow-sm);
  transition: transform var(--oh-speed-med) var(--oh-ease), box-shadow var(--oh-speed-med) var(--oh-ease);
}
.oh-segment-card--alt { background: var(--oh-surface-alt); }
.oh-segment-card:hover { transform: translateY(-5px); box-shadow: var(--oh-shadow-md); }
.oh-segment-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--oh-blue), var(--oh-cyan));
  transition: transform var(--oh-speed-med) var(--oh-ease);
}
.oh-segment-card:hover .oh-segment-card__icon { transform: rotate(-8deg) scale(1.06); }
.oh-segment-card h3 { font-family: var(--oh-font-display); font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--oh-navy); }
.oh-segment-card p { font-size: 13.5px; color: var(--oh-muted); line-height: 1.6; }

/* =========================================================================
   GLOBAL PRESENCE
   ========================================================================= */
.oh-global { background: var(--oh-surface-alt); padding: 100px 48px; }
.oh-global__inner { max-width: 1344px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 76px; align-items: center; }
.oh-global__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 34px; }
.oh-region-card {
  background: #fff;
  border: 1px solid var(--oh-line);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform var(--oh-speed-fast) var(--oh-ease), box-shadow var(--oh-speed-fast) var(--oh-ease);
}
.oh-region-card:hover { transform: translateX(4px); box-shadow: var(--oh-shadow-sm); }
.oh-region-card__flag { font-size: 22px; }
.oh-region-card__title { font-size: 14px; font-weight: 600; color: var(--oh-navy); }
.oh-region-card__sub { font-size: 12px; color: var(--oh-muted); }
.oh-global__media {
  border-radius: var(--oh-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--oh-shadow-md);
  border: 1px solid var(--oh-line);
}
.oh-global__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--oh-ease); }
.oh-global__media:hover img { transform: scale(1.04); }

/* =========================================================================
   WORKFLOW
   ========================================================================= */
.oh-workflow { background: #fff; padding: 100px 48px; }
.oh-flow {
  max-width: 1344px;
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
/* Per-step accent colours, echoing the original 7-stage palette */
.oh-flow-step[data-oh-accent="1"] { --oh-accent: #004e8c; }
.oh-flow-step[data-oh-accent="2"] { --oh-accent: #7c3aed; }
.oh-flow-step[data-oh-accent="3"] { --oh-accent: #0891b2; }
.oh-flow-step[data-oh-accent="4"] { --oh-accent: #ea580c; }
.oh-flow-step[data-oh-accent="5"] { --oh-accent: #dc2626; }
.oh-flow-step[data-oh-accent="6"] { --oh-accent: #277eff; }
.oh-flow-step[data-oh-accent="7"] { --oh-accent: #059669; }

.oh-flow-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--oh-line);
  border-radius: var(--oh-radius-md);
  padding: 22px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: var(--oh-shadow-sm);
  cursor: default;
  transition: transform var(--oh-speed-med) var(--oh-ease),
              box-shadow var(--oh-speed-med) var(--oh-ease),
              border-color var(--oh-speed-med) var(--oh-ease);
}
.oh-flow-step:hover,
.oh-flow-step:focus-visible,
.oh-flow-step:focus-within,
.oh-flow-step.oh-is-expanded {
  transform: translateY(-6px);
  box-shadow: var(--oh-shadow-md);
  box-shadow: 0 18px 34px -8px color-mix(in srgb, var(--oh-accent) 45%, transparent);
  border-color: var(--oh-accent);
  z-index: 5;
}

/* Connector between consecutive steps — glows toward the active step */
.oh-flow-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 40px;
  right: -11px;
  width: 14px;
  height: 14px;
  z-index: 6;
  background-color: #fff;
  border: 2px solid var(--oh-line);
  border-radius: 50%;
  transition: border-color var(--oh-speed-med) var(--oh-ease), background-color var(--oh-speed-med) var(--oh-ease), transform var(--oh-speed-med) var(--oh-ease);
}
.oh-flow-step:hover::before,
.oh-flow-step:focus-within::before,
.oh-flow-step.oh-is-expanded::before {
  border-color: var(--oh-accent);
  background-color: var(--oh-accent);
  transform: scale(1.25);
}

.oh-flow-step__num {
  font-family: var(--oh-font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--oh-cyan-deep);
  transition: color var(--oh-speed-med) var(--oh-ease);
}
.oh-flow-step:hover .oh-flow-step__num,
.oh-flow-step:focus-within .oh-flow-step__num,
.oh-flow-step.oh-is-expanded .oh-flow-step__num { color: var(--oh-accent); }

.oh-flow-step__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 78, 140, 0.08);
  color: var(--oh-blue);
  transition: transform var(--oh-speed-med) var(--oh-ease), background var(--oh-speed-med) var(--oh-ease), color var(--oh-speed-med) var(--oh-ease);
}
.oh-flow-step:hover .oh-flow-step__icon,
.oh-flow-step:focus-within .oh-flow-step__icon,
.oh-flow-step.oh-is-expanded .oh-flow-step__icon {
  transform: scale(1.12) rotate(-4deg);
  background: var(--oh-accent);
  color: #fff;
}
.oh-flow-step h3 { font-family: var(--oh-font-display); font-size: 13.5px; font-weight: 600; line-height: 1.3; color: var(--oh-navy); }

/* Inline expanding reveal (grid-rows trick gives a smooth auto-height
   animation with no JS and no risk of overflowing the viewport) */
.oh-flow-step__reveal {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  width: 100%;
  transition: grid-template-rows 420ms var(--oh-ease), opacity 260ms var(--oh-ease);
}
.oh-flow-step__reveal p {
  overflow: hidden;
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
  color: var(--oh-muted);
}
.oh-flow-step:hover .oh-flow-step__reveal,
.oh-flow-step:focus-within .oh-flow-step__reveal,
.oh-flow-step.oh-is-expanded .oh-flow-step__reveal {
  grid-template-rows: 1fr;
  opacity: 1;
  transition: grid-template-rows 420ms var(--oh-ease), opacity 380ms var(--oh-ease) 80ms;
}

.oh-qa {
  max-width: 1344px;
  margin: 0 auto 72px;
  background: var(--oh-surface-alt);
  border: 1px solid var(--oh-line);
  border-radius: var(--oh-radius-lg);
  padding: 44px;
}
.oh-qa__head { text-align: center; margin-bottom: 36px; }
.oh-qa__head h3 { font-family: var(--oh-font-display); font-size: 24px; font-weight: 700; color: var(--oh-navy); }
.oh-qa__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 26px; }
.oh-qa-step { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.oh-qa-step__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 182, 201, 0.12);
  color: var(--oh-cyan-deep);
  transition: transform var(--oh-speed-med) var(--oh-ease);
}
.oh-qa-step:hover .oh-qa-step__icon {
  background: linear-gradient(135deg, var(--oh-cyan), var(--oh-blue));
  color: #fff;
  transform: rotate(8deg) scale(1.1);
}
.oh-qa-step h4 { font-family: var(--oh-font-display); font-size: 14px; font-weight: 600; color: var(--oh-navy); }
.oh-qa-step p { font-size: 12.5px; color: var(--oh-muted); line-height: 1.5; }

.oh-features { max-width: 1344px; margin: 0 auto; text-align: center; }
.oh-features__label { margin-bottom: 30px; }
.oh-features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.oh-feature-tile {
  background: #fff;
  border: 1px solid var(--oh-line);
  border-radius: var(--oh-radius-md);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: var(--oh-shadow-sm);
  transition: transform var(--oh-speed-med) var(--oh-ease), box-shadow var(--oh-speed-med) var(--oh-ease);
}
.oh-feature-tile:hover { transform: translateY(-6px); box-shadow: var(--oh-shadow-md); }
.oh-feature-tile__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh-blue);
  background: linear-gradient(135deg, rgba(0, 78, 140, 0.08), rgba(27, 182, 201, 0.12));
  transition: transform var(--oh-speed-med) var(--oh-ease), background var(--oh-speed-med) var(--oh-ease), color var(--oh-speed-med) var(--oh-ease);
}
.oh-feature-tile:hover .oh-feature-tile__icon {
  background: linear-gradient(135deg, var(--oh-blue), var(--oh-cyan));
  color: #fff;
  transform: scale(1.1);
}
.oh-feature-tile h4 { font-family: var(--oh-font-display); font-size: 14.5px; font-weight: 600; color: var(--oh-navy); }
.oh-feature-tile p { font-size: 12.5px; color: var(--oh-muted); line-height: 1.5; }

.oh-workflow__tagline {
  text-align: center;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--oh-line);
  max-width: 1344px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--oh-font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--oh-blue);
}

/* =========================================================================
   TECHNOLOGY PLATFORM
   ========================================================================= */
   /* ================================
   TECHNOLOGY SECTION
================================ */

.oh-tech {
  background: var(--oh-surface-alt);
  padding: clamp(60px, 7vw, 100px) clamp(20px, 4vw, 48px);
}

.oh-tech__inner {
  width: 100%;
  max-width: 1344px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(40px, 5vw, 76px);
  align-items: center;
}

/* ================================
   TECHNOLOGY GRID
================================ */

.oh-tech__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.oh-tech-card {
  width: 100%;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--oh-line);
  border-radius: 14px;
  padding: 20px;

  display: flex;
  align-items: flex-start;
  gap: 16px;

  transition:
    transform var(--oh-speed-fast) var(--oh-ease),
    box-shadow var(--oh-speed-fast) var(--oh-ease);
}

.oh-tech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--oh-shadow-sm);
}

/* ================================
   CARD ICON
================================ */

.oh-tech-card__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--oh-blue);
  background: linear-gradient(
    135deg,
    rgba(0, 78, 140, 0.08),
    rgba(27, 182, 201, 0.12)
  );

  transition:
    transform var(--oh-speed-med) var(--oh-ease),
    background var(--oh-speed-med) var(--oh-ease),
    color var(--oh-speed-med) var(--oh-ease);
}

.oh-tech-card:hover .oh-tech-card__icon {
  background: linear-gradient(
    135deg,
    var(--oh-blue),
    var(--oh-cyan)
  );
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}

/* ================================
   CARD CONTENT
================================ */

.oh-tech-card__content {
  min-width: 0;
  flex: 1;
}

.oh-tech-card__title {
  font-size: clamp(13px, 1vw, 14.5px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--oh-navy);
  margin-bottom: 4px;
}

.oh-tech-card__desc {
  font-size: clamp(12px, 0.9vw, 12.5px);
  color: var(--oh-muted);
  line-height: 1.55;
}

/* ================================
   MEDIA
================================ */

.oh-tech__media {
  width: 100%;
  border-radius: var(--oh-radius-lg);
  overflow: hidden;

  aspect-ratio: 1 / 1;

  box-shadow: var(--oh-shadow-md);
  border: 1px solid var(--oh-line);
}

.oh-tech__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 700ms var(--oh-ease);
}

.oh-tech__media:hover img {
  transform: scale(1.04);
}


/* =========================================
   LARGE TABLETS / SMALL DESKTOP
   1200px and below
========================================= */

@media (max-width: 1200px) {
  .oh-tech {
    padding-left: 32px;
    padding-right: 32px;
  }

  .oh-tech__inner {
    gap: 48px;
  }

  .oh-tech__grid {
    gap: 14px;
  }

  .oh-tech-card {
    padding: 18px;
    gap: 13px;
  }
}


/* =========================================
   TABLET
   992px and below
========================================= */

@media (max-width: 992px) {
  .oh-tech {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .oh-tech__inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .oh-tech__media {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 16 / 10;
  }

  .oh-tech__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* =========================================
   SMALL TABLET / LARGE MOBILE
   768px and below
========================================= */

@media (max-width: 768px) {
  .oh-tech {
    padding: 60px 24px;
  }

  .oh-tech__inner {
    gap: 36px;
  }

  .oh-tech__grid {
    gap: 12px;
    margin-top: 28px;
  }

  .oh-tech-card {
    padding: 16px;
    gap: 12px;
    border-radius: 12px;
  }

  .oh-tech-card__icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
  }

  .oh-tech__media {
    aspect-ratio: 4 / 3;
  }
}


/* =========================================
   MOBILE
   576px and below
========================================= */

@media (max-width: 576px) {
  .oh-tech {
    padding: 50px 18px;
  }

  .oh-tech__inner {
    gap: 30px;
  }

  .oh-tech__grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .oh-tech-card {
    padding: 15px;
    gap: 12px;
  }

  .oh-tech-card__icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .oh-tech-card__title {
    font-size: 14px;
  }

  .oh-tech-card__desc {
    font-size: 12px;
  }

  .oh-tech__media {
    aspect-ratio: 1 / 1;
    border-radius: 14px;
  }
}


/* =========================================
   SMALL MOBILE
   400px and below
========================================= */

@media (max-width: 400px) {
  .oh-tech {
    padding: 42px 14px;
  }

  .oh-tech-card {
    padding: 13px;
    gap: 10px;
  }

  .oh-tech-card__icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 9px;
  }

  .oh-tech-card__title {
    font-size: 13.5px;
  }

  .oh-tech-card__desc {
    font-size: 11.5px;
  }
}


/* =========================================
   TOUCH DEVICES
   Prevent hover transforms from causing
   unwanted behaviour on mobile
========================================= */

@media (hover: none) {
  .oh-tech-card:hover {
    transform: none;
    box-shadow: none;
  }

  .oh-tech-card:hover .oh-tech-card__icon {
    transform: none;
    background: linear-gradient(
      135deg,
      rgba(0, 78, 140, 0.08),
      rgba(27, 182, 201, 0.12)
    );
    color: var(--oh-blue);
  }

  .oh-tech__media:hover img {
    transform: none;
  }
}
   
   
/*.oh-tech { background: var(--oh-surface-alt); padding: 100px 48px; }*/
/*.oh-tech__inner { max-width: 1344px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 76px; align-items: center; }*/
/*.oh-tech__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 34px; }*/
/*.oh-tech-card {*/
/*  background: #fff;*/
/*  border: 1px solid var(--oh-line);*/
/*  border-radius: 14px;*/
/*  padding: 20px;*/
/*  display: flex;*/
/*  align-items: flex-start;*/
/*  gap: 16px;*/
/*  transition: transform var(--oh-speed-fast) var(--oh-ease), box-shadow var(--oh-speed-fast) var(--oh-ease);*/
/*}*/
/*.oh-tech-card:hover { transform: translateY(-4px); box-shadow: var(--oh-shadow-sm); }*/
/*.oh-tech-card__icon {*/
/*  width: 40px;*/
/*  height: 40px;*/
/*  border-radius: 12px;*/
/*  flex-shrink: 0;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  color: var(--oh-blue);*/
/*  background: linear-gradient(135deg, rgba(0, 78, 140, 0.08), rgba(27, 182, 201, 0.12));*/
/*  transition: transform var(--oh-speed-med) var(--oh-ease), background var(--oh-speed-med) var(--oh-ease), color var(--oh-speed-med) var(--oh-ease);*/
/*}*/
/*.oh-tech-card:hover .oh-tech-card__icon {*/
/*  background: linear-gradient(135deg, var(--oh-blue), var(--oh-cyan));*/
/*  color: #fff;*/
/*  transform: scale(1.08) rotate(-4deg);*/
/*}*/
/*.oh-tech-card__title { font-size: 14.5px; font-weight: 700; color: var(--oh-navy); margin-bottom: 4px; }*/
/*.oh-tech-card__desc { font-size: 12.5px; color: var(--oh-muted); line-height: 1.55; }*/
/*.oh-tech__media {*/
/*  border-radius: var(--oh-radius-lg);*/
/*  overflow: hidden;*/
/*  aspect-ratio: 1 / 1;*/
/*  box-shadow: var(--oh-shadow-md);*/
/*  border: 1px solid var(--oh-line);*/
/*}*/
/*.oh-tech__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--oh-ease); }*/
/*.oh-tech__media:hover img { transform: scale(1.04); }*/

/* =========================================================================
   ASSOCIATED PARTNERS
   ========================================================================= */
.oh-partners { background: #f5f9fc; padding: 100px 48px; }
.oh-partners__grid { max-width: 1344px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.oh-partner-card {
  background: #fff;
  border: 1px solid var(--oh-line);
  border-radius: var(--oh-radius-lg);
  padding: 40px;
  display: flex;
  gap: 32px;
  border-top: 4px solid var(--oh-blue);
  transition: transform var(--oh-speed-med) var(--oh-ease), box-shadow var(--oh-speed-med) var(--oh-ease);
}
.oh-partner-card--barco { border-top-color: #e63946; }
.oh-partner-card:hover { transform: translateY(-6px); box-shadow: var(--oh-shadow-lg); }
.oh-partner-card__logo {
  flex-shrink: 0;
  width: 128px;
  height: 128px;
  border-radius: var(--oh-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 78, 140, 0.06);
}
.oh-partner-card--barco .oh-partner-card__logo { background: rgba(230, 57, 70, 0.06); }
.oh-partner-card__logo img { max-width: 82%; max-height: 82%; object-fit: contain; }
.oh-partner-card__body { display: flex; flex-direction: column; gap: 14px; }
.oh-partner-card__body h3 { font-family: var(--oh-font-display); font-size: 19px; font-weight: 700; color: var(--oh-navy); }
.oh-partner-card__tag { font-size: 13px; font-weight: 700; letter-spacing: 0.02em; color: var(--oh-blue); }
.oh-partner-card--barco .oh-partner-card__tag { color: #e63946; }
.oh-partner-card__body p:not(.oh-partner-card__tag) { font-size: 14px; color: var(--oh-muted); line-height: 1.65; flex-grow: 1; }
.oh-partner-card--barco .oh-textlink { color: #e63946; }

/* =========================================================================
   TRUSTED BY
   ========================================================================= */
.oh-trusted { background: #fff; padding: 100px 48px; }
.oh-trusted__grid { max-width: 1344px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.oh-trusted-tile {
  background: #fff;
  border: 1px solid var(--oh-line);
  border-radius: var(--oh-radius-md);
  padding: 28px;
  height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: transform var(--oh-speed-fast) var(--oh-ease), box-shadow var(--oh-speed-fast) var(--oh-ease);
}
.oh-trusted-tile:hover { transform: translateY(-4px); box-shadow: var(--oh-shadow-sm); }
.oh-trusted-tile__letter { font-family: var(--oh-font-display); font-size: 28px; font-weight: 700; color: var(--oh-muted); opacity: 0.55; }
.oh-trusted-tile p { font-size: 12px; color: var(--oh-muted); }

/* =========================================================================
   DOCTOR ONBOARDING CTA
   ========================================================================= */
.oh-cta { padding: 64px 48px; }
.oh-cta__panel {
  max-width: 1344px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: var(--oh-radius-lg);
  background: linear-gradient(135deg, var(--oh-blue) 0%, var(--oh-cyan) 100%);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.oh-cta__ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.12); pointer-events: none; }
.oh-cta__ring--1 { width: 320px; height: 320px; top: -30%; right: 0; }
.oh-cta__ring--2 { width: 220px; height: 220px; bottom: -40%; right: 15%; border-color: rgba(255, 255, 255, 0.08); }
.oh-cta__content { position: relative; z-index: 2; max-width: 560px; }
.oh-cta__content .oh-tag { background: rgba(255, 255, 255, 0.18); color: #fff; margin-bottom: 18px; }
.oh-cta__content h2 { font-family: var(--oh-font-display); font-size: clamp(24px, 3vw, 34px); font-weight: 700; letter-spacing: -0.02em; color: #fff; margin-bottom: 14px; }
.oh-cta__content p { font-size: 15px; line-height: 1.7; color: rgba(255, 255, 255, 0.85); }
.oh-cta__actions { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.oh-cta__link { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: #fff; opacity: 0.85; transition: opacity var(--oh-speed-fast) var(--oh-ease), gap var(--oh-speed-fast) var(--oh-ease); }
.oh-cta__link:hover { opacity: 1; gap: 10px; }

/* =========================================================================
   BLOG / KNOWLEDGE HUB
   ========================================================================= */
.oh-blog { background: var(--oh-surface-alt); padding: 100px 48px; }
.oh-blog__head { max-width: 1344px; margin: 0 auto 48px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.oh-blog__grid { max-width: 1344px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.oh-blog-card {
  background: #fff;
  border: 1px solid var(--oh-line);
  border-radius: var(--oh-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--oh-shadow-sm);
  transition: transform var(--oh-speed-med) var(--oh-ease), box-shadow var(--oh-speed-med) var(--oh-ease);
}
.oh-blog-card:hover { transform: translateY(-8px); box-shadow: var(--oh-shadow-lg); }
.oh-blog-card__media { height: 190px; overflow: hidden; }
.oh-blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--oh-ease); }
.oh-blog-card:hover .oh-blog-card__media img { transform: scale(1.08); }
.oh-blog-card__body { padding: 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.oh-blog-card__meta { display: flex; align-items: center; gap: 12px; }
.oh-blog-card__meta time { font-size: 12px; color: var(--oh-muted); }
.oh-blog-card__body h3 { font-family: var(--oh-font-display); font-size: 16px; font-weight: 600; line-height: 1.4; color: var(--oh-navy); flex-grow: 1; letter-spacing: -0.005em; }

/* =========================================================================
   CONTACT
   ========================================================================= */
.oh-contact { background: #fff; padding: 100px 48px; }
.oh-contact__inner { max-width: 1344px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: flex-start; }
.oh-contact__list { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.oh-contact__list li { display: flex; align-items: center; gap: 16px; }
.oh-contact__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh-blue);
  background: linear-gradient(135deg, rgba(0, 78, 140, 0.08), rgba(27, 182, 201, 0.12));
  flex-shrink: 0;
}
.oh-contact__label { font-size: 12px; color: var(--oh-muted); font-weight: 500; }
.oh-contact__value { font-size: 14.5px; font-weight: 600; color: var(--oh-navy); }

.oh-form {
  background: #fff;
  border: 1px solid var(--oh-line);
  border-radius: var(--oh-radius-lg);
  padding: 40px;
  box-shadow: var(--oh-shadow-md);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.oh-form h3 { font-family: var(--oh-font-display); font-size: 21px; font-weight: 700; color: var(--oh-navy); margin-bottom: 6px; }
.oh-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.oh-form__field { display: flex; flex-direction: column; gap: 6px; }
.oh-form__field label { font-size: 12.5px; font-weight: 600; color: var(--oh-muted); }
.oh-form__field input,
.oh-form__field select,
.oh-form__field textarea {
  background: var(--oh-surface-tint);
  border: 1px solid var(--oh-line);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--oh-ink);
  transition: border-color var(--oh-speed-fast) var(--oh-ease), box-shadow var(--oh-speed-fast) var(--oh-ease);
}
.oh-form__field textarea { resize: vertical; min-height: 96px; }
.oh-form__field input::placeholder,
.oh-form__field textarea::placeholder { color: #94a5b8; }
.oh-form__field input:hover,
.oh-form__field select:hover,
.oh-form__field textarea:hover { border-color: rgba(0, 91, 154, 0.35); }
.oh-form__field input:focus,
.oh-form__field select:focus,
.oh-form__field textarea:focus {
  outline: none;
  border-color: var(--oh-blue);
  box-shadow: 0 0 0 3px rgba(0, 78, 140, 0.14);
}
.oh-form__submit { margin-top: 6px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.oh-footer { background: var(--oh-surface-alt); border-top: 1px solid var(--oh-line); padding: 72px 48px 40px; }
.oh-footer__top { max-width: 100%; margin: 0 auto; display: flex; gap: 64px; margin-bottom: 48px; flex-wrap: wrap; }
.oh-footer__brand { flex: 0 0 400px; max-width: 400px; }
/* .oh-footer__brand img { height: 40px; width: auto; margin-bottom: 18px; } */
.oh-footer__brand img { height: 70px; width: auto; margin-bottom: 18px; }
.oh-footer__brand p { font-size: 14px; color: var(--oh-muted); line-height: 1.65; margin-bottom: 22px; }
.oh-footer__social { display: flex; align-items: center; gap: 12px; }
.oh-footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--oh-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh-blue);
  transition: transform var(--oh-speed-fast) var(--oh-ease), background var(--oh-speed-fast) var(--oh-ease), color var(--oh-speed-fast) var(--oh-ease);
}
.oh-footer__social a:hover { transform: translateY(-3px); background: var(--oh-blue); color: #fff; }
.oh-footer__social .oh-icon { width: 14px; height: 14px; }

.oh-footer__cols { flex: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; min-width: 0; }
.oh-footer__col { display: flex; flex-direction: column; gap: 12px; }
.oh-footer__heading { font-size: 14px; font-weight: 700; color: var(--oh-navy); margin-bottom: 6px; }
.oh-footer__col a { font-size: 13.5px; color: var(--oh-muted); transition: color var(--oh-speed-fast) var(--oh-ease), padding-left var(--oh-speed-fast) var(--oh-ease); }
.oh-footer__col a:hover { color: var(--oh-blue); padding-left: 4px; }

.oh-footer__bottom {
  max-width: 100%;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--oh-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.oh-footer__bottom p { font-size: 13.5px; color: var(--oh-muted); }
.oh-footer__tagline { font-weight: 600; color: var(--oh-cyan-deep) !important; }

/* =========================================================================
   BACK TO TOP
   ========================================================================= */
.oh-backtotop {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--oh-blue), var(--oh-cyan));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--oh-shadow-md);
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--oh-speed-fast) var(--oh-ease), transform var(--oh-speed-fast) var(--oh-ease), visibility var(--oh-speed-fast);
}
.oh-backtotop.oh-is-shown { opacity: 1; visibility: visible; transform: translateY(0); }
.oh-backtotop:hover { transform: translateY(-4px); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1200px) {
  .oh-flow { grid-template-columns: repeat(4, 1fr); }
  .oh-qa__grid { grid-template-columns: repeat(3, 1fr); }
  .oh-features__grid { grid-template-columns: repeat(3, 1fr); }
  .oh-core__grid { grid-template-columns: repeat(3, 1fr); }
  .oh-trusted__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
  .oh-topbar__inner, .oh-navbar__inner,
  .oh-hero, .oh-about, .oh-specialized, .oh-core, .oh-segments,
  .oh-global, .oh-workflow, .oh-tech, .oh-partners, .oh-trusted,
  .oh-cta, .oh-blog, .oh-contact, .oh-footer {
    padding-left: 28px;
    padding-right: 28px;
  }
  .oh-hero__inner, .oh-about__inner, .oh-global__inner, .oh-tech__inner, .oh-contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .oh-about__media { max-width: 460px; margin: 0 auto; width: 100%; }
  .oh-specialized__grid, .oh-segments__grid, .oh-partners__grid, .oh-blog__grid { grid-template-columns: repeat(2, 1fr); }
  .oh-core__grid, .oh-features__grid { grid-template-columns: repeat(2, 1fr); }
  .oh-flow { grid-template-columns: repeat(2, 1fr); }
  .oh-qa__grid { grid-template-columns: repeat(2, 1fr); }
  .oh-trusted__grid { grid-template-columns: repeat(3, 1fr); }
  .oh-cta__panel { padding: 44px; }
}

@media (max-width: 860px) {
  .oh-topbar { display: none; }

  .oh-navbar__inner { height: 100px; }
  .oh-navbar__brand img { height: 70px; }
  .oh-navbar__toggle { display: flex; }

  /* The menu drops down from the sticky navbar itself (top: 100%),
     so it always sits exactly below the header regardless of its
     height — no magic pixel offsets, no overlap bugs. */
  .oh-navbar__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 95;
    background: #fff;
    border-top: 1px solid var(--oh-line);
    box-shadow: var(--oh-shadow-lg);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 6px 24px 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 420ms var(--oh-ease), opacity 280ms var(--oh-ease), visibility 420ms;
  }
  .oh-navbar__menu.oh-is-open {
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    padding-bottom: 28px;
  }
  .oh-navbar__link { padding: 15px 2px; border-bottom: 1px solid var(--oh-line); justify-content: flex-start; }
  .oh-navbar__link::after { display: none; }
  .oh-dropdown { width: 100%; }
  .oh-dropdown > .oh-navbar__link svg:last-child { margin-left: auto; transition: transform var(--oh-speed-fast) var(--oh-ease); }
  .oh-dropdown.oh-is-open > .oh-navbar__link svg:last-child { transform: rotate(180deg); }
  .oh-dropdown__panel {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 4px 0 8px 14px;
    background: var(--oh-surface-alt);
    border-radius: 10px;
  }
  .oh-dropdown.oh-is-open .oh-dropdown__panel { display: block; }
  .oh-navbar__cta { margin: 18px 0 4px; flex-direction: column; align-items: stretch; gap: 10px; }
  .oh-navbar__cta .oh-btn { width: 100%; }

  /* Scrim behind the open menu, tap to dismiss */
  .oh-navbar__scrim {
    display: block;
    position: fixed;
    inset: 68px 0 0 0;
    background: rgba(6, 30, 61, 0.35);
    z-index: 89;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--oh-speed-med) var(--oh-ease), visibility var(--oh-speed-med);
  }
  .oh-navbar__scrim.oh-is-open { opacity: 1; visibility: visible; }

  .oh-hero { padding-top: 56px; padding-bottom: 80px; }
  .oh-hero__trust { gap: 20px; }
  .oh-about__cards { grid-template-columns: 1fr; }
  .oh-specialized__grid, .oh-segments__grid, .oh-partners__grid, .oh-blog__grid,
  .oh-core__grid, .oh-features__grid, .oh-global__grid { grid-template-columns: 1fr; }
  .oh-flow { grid-template-columns: repeat(2, 1fr); }
  .oh-qa { padding: 30px; }
  .oh-qa__grid { grid-template-columns: 1fr; }
  .oh-trusted__grid { grid-template-columns: repeat(2, 1fr); padding: 0 10px; }
  .oh-segments__head { flex-direction: column; align-items: flex-start; }
  .oh-partner-card { flex-direction: column; }
  .oh-partner-card__logo { width: 100px; height: 100px; }
  .oh-form__row { grid-template-columns: 1fr; }
  .oh-footer__top { flex-direction: column; gap: 40px; }
  .oh-footer__cols { grid-template-columns: repeat(2, 1fr); }
  .oh-cta__panel { flex-direction: column; align-items: flex-start; }
  
  .oh-trusted__slider {
    width: calc(100% - 0px) !important;
}
}

@media (max-width: 560px) {
  .oh-topbar__inner, .oh-navbar__inner,
  .oh-hero, .oh-about, .oh-specialized, .oh-core, .oh-segments,
  .oh-global, .oh-workflow, .oh-tech, .oh-partners, .oh-trusted,
  .oh-cta, .oh-blog, .oh-contact, .oh-footer {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .oh-hero__buttons { flex-direction: column; align-items: stretch; }
  .oh-hero__buttons .oh-btn { justify-content: center; }
  .oh-flow { grid-template-columns: 1fr 1fr; }
  .oh-trusted__grid { grid-template-columns: 1fr 1fr; }
  .oh-footer__cols { grid-template-columns: 1fr; }
  .oh-cta__panel { padding: 32px 24px; }
  .oh-form { padding: 26px; }
  .oh-backtotop { right: 16px; bottom: 16px; width: 42px; height: 42px; }
}


/* =========================================================
   TRUSTED BY / RADIOLOGY CAPACITY SECTION
   ========================================================= */

.oh-trusted {
    position: relative;
    padding: 100px 6%;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================================
   BACKGROUND DECORATION
   ========================================================= */

.oh-trusted::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -320px;
    right: -220px;
    border-radius: 50%;
    background: rgba(0, 145, 210, 0.045);
    pointer-events: none;
}

.oh-trusted::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    bottom: -280px;
    left: -200px;
    border-radius: 50%;
    background: rgba(0, 83, 155, 0.035);
    pointer-events: none;
}


/* =========================================================
   SECTION HEADER
   ========================================================= */

.oh-section-head {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto 65px;
    text-align: center;
}


/* Divider */

.oh-divider--center {
    width: 48px;
    height: 3px;
    margin: 0 auto 18px;
    background: #087db5;
    border-radius: 20px;
}


/* Eyebrow */

.oh-eyebrow {
    margin: 0 0 15px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #0786bb;
}


/* Heading */

.oh-heading {
    max-width: 850px;
    margin: 0 auto 20px;

    color: #062b55;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;

    font-weight: 800;
    letter-spacing: -1.5px;
}


/* Intro */

.oh-section-intro {
    max-width: 680px;
    margin: 0 auto;

    color: #6c8095;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   FEATURE GRID
   ========================================================= */

.oh-trusted__grid {
    position: relative;
    z-index: 2;

    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #dfe8ef;
    border-left: 1px solid #dfe8ef;
}


/* =========================================================
   FEATURE CARD
   ========================================================= */

.oh-trusted-tile {
    position: relative;

    min-height: 185px;
    padding: 30px 32px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #ffffff;

    border-right: 1px solid #dfe8ef;
    border-bottom: 1px solid #dfe8ef;

    overflow: hidden;

    opacity: 0;
    transform: translateY(35px);

    animation: ohTileReveal 0.7s ease forwards;

    transition:
        background 0.45s ease,
        box-shadow 0.45s ease;
}


/* =========================================================
   STAGGERED ENTRANCE
   ========================================================= */

.oh-trusted-tile:nth-child(1) {
    animation-delay: 0.05s;
}

.oh-trusted-tile:nth-child(2) {
    animation-delay: 0.12s;
}

.oh-trusted-tile:nth-child(3) {
    animation-delay: 0.19s;
}

.oh-trusted-tile:nth-child(4) {
    animation-delay: 0.26s;
}

.oh-trusted-tile:nth-child(5) {
    animation-delay: 0.33s;
}

.oh-trusted-tile:nth-child(6) {
    animation-delay: 0.40s;
}

.oh-trusted-tile:nth-child(7) {
    animation-delay: 0.47s;
}

.oh-trusted-tile:nth-child(8) {
    animation-delay: 0.54s;
}

.oh-trusted-tile:nth-child(9) {
    animation-delay: 0.61s;
}


@keyframes ohTileReveal {

    0% {
        opacity: 0;
        transform: translateY(35px);
    }

    70% {
        opacity: 1;
        transform: translateY(-4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   SCANNING LINE
   ========================================================= */

.oh-trusted-tile::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        #00a8d8,
        #ffffff,
        #00a8d8,
        transparent
    );

    transition: left 0.7s ease;

    z-index: 4;
}


/* =========================================================
   SOFT GLOW
   ========================================================= */

.oh-trusted-tile::after {
    content: "";

    position: absolute;

    width: 200px;
    height: 200px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%) scale(0);

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(0, 157, 210, 0.10),
        transparent 70%
    );

    transition: transform 0.6s ease;

    pointer-events: none;

    z-index: 1;
}


/* =========================================================
   NUMBER
   ========================================================= */

.oh-trusted-tile__letter {
    position: relative;
    z-index: 5;

    display: block;
    width: fit-content;

    margin-bottom: 20px;

    color: #0a8bc1;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1px;

    transition:
        transform 0.5s cubic-bezier(.2, .8, .2, 1),
        color 0.4s ease;
}


/* Number underline */

.oh-trusted-tile__letter::after {
    content: "";

    display: block;

    width: 28px;
    height: 2px;

    margin-top: 8px;

    background: #c9e7f2;

    transition:
        width 0.4s ease,
        background 0.4s ease;
}


/* =========================================================
   CARD TEXT
   ========================================================= */

.oh-trusted-tile p {
    position: relative;
    z-index: 5;

    max-width: 290px;

    margin: 0;

    color: #294863;

    font-size: 15px;
    line-height: 1.6;

    font-weight: 500;

    transition:
        transform 0.5s cubic-bezier(.2, .8, .2, 1),
        color 0.4s ease;
}


/* =========================================================
   HOVER EFFECT
   ========================================================= */

.oh-trusted-tile:hover {
    z-index: 5;

    background: #f7fcff;

    box-shadow:
        inset 0 0 0 1px rgba(0, 139, 190, 0.15),
        0 20px 45px rgba(0, 80, 120, 0.10);
}


/* Scanner line */

.oh-trusted-tile:hover::before {
    left: 100%;
}


/* Glow */

.oh-trusted-tile:hover::after {
    transform: translate(-50%, -50%) scale(1);
}


/* Number movement */

.oh-trusted-tile:hover .oh-trusted-tile__letter {
    transform: translateX(8px);
    color: #0088bd;
}


/* Underline animation */

.oh-trusted-tile:hover
.oh-trusted-tile__letter::after {
    width: 48px;
    background: #00a8d8;
}


/* Text movement */

.oh-trusted-tile:hover p {
    transform: translateX(8px);
    color: #062b55;
}


/* =========================================================
   NUMBER FLOAT ANIMATION
   ========================================================= */

.oh-trusted-tile__letter {
    animation: ohNumberFloat 3s ease-in-out infinite;
}


.oh-trusted-tile:nth-child(1)
.oh-trusted-tile__letter {
    animation-delay: 0s;
}

.oh-trusted-tile:nth-child(2)
.oh-trusted-tile__letter {
    animation-delay: 0.3s;
}

.oh-trusted-tile:nth-child(3)
.oh-trusted-tile__letter {
    animation-delay: 0.6s;
}

.oh-trusted-tile:nth-child(4)
.oh-trusted-tile__letter {
    animation-delay: 0.9s;
}

.oh-trusted-tile:nth-child(5)
.oh-trusted-tile__letter {
    animation-delay: 1.2s;
}

.oh-trusted-tile:nth-child(6)
.oh-trusted-tile__letter {
    animation-delay: 1.5s;
}

.oh-trusted-tile:nth-child(7)
.oh-trusted-tile__letter {
    animation-delay: 1.8s;
}

.oh-trusted-tile:nth-child(8)
.oh-trusted-tile__letter {
    animation-delay: 2.1s;
}

.oh-trusted-tile:nth-child(9)
.oh-trusted-tile__letter {
    animation-delay: 2.4s;
}


@keyframes ohNumberFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .oh-trusted {
        padding: 85px 5%;
    }

    .oh-trusted__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .oh-trusted-tile {
        min-height: 175px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .oh-trusted {
        padding: 70px 20px;
    }


    .oh-section-head {
        margin-bottom: 45px;
    }


    .oh-divider--center {
        width: 42px;
        height: 3px;
        margin-bottom: 15px;
    }


    .oh-eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }


    .oh-heading {
        font-size: 32px;
        line-height: 1.15;
        letter-spacing: -0.8px;
        margin-bottom: 17px;
    }


    .oh-section-intro {
        font-size: 15px;
        line-height: 1.7;
    }


    .oh-trusted__grid {
        grid-template-columns: 1fr;

        border-top: 1px solid #dfe8ef;
        border-left: 1px solid #dfe8ef;
        padding: 0 10px;
    }


    .oh-trusted-tile {
        min-height: 150px;
        padding: 25px;
    }


    .oh-trusted-tile__letter {
        margin-bottom: 16px;
        font-size: 12px;
    }


    .oh-trusted-tile p {
        font-size: 14px;
        line-height: 1.55;
    }


    .oh-trusted-tile:hover
    .oh-trusted-tile__letter {
        transform: translateX(5px);
    }


    .oh-trusted-tile:hover p {
        transform: translateX(5px);
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .oh-trusted-tile,
    .oh-trusted-tile__letter {
        animation: none !important;
        opacity: 1;
        transform: none;
    }

    .oh-trusted-tile,
    .oh-trusted-tile::before,
    .oh-trusted-tile::after,
    .oh-trusted-tile__letter,
    .oh-trusted-tile p {
        transition: none !important;
    }

}


/* =========================================
		ASSOCIATED PARTNERS
		========================================= */

		.oh-partners {
		width: 100%;
		padding: 75px 20px 85px;
		background: #f6f9fd;
		box-sizing: border-box;
		}


		/* =========================================
		HEADING
		========================================= */

		.oh-section-head {
		text-align: center;
		margin-bottom: 70px;
		}

		.oh-heading {
		margin: 0;
		color: #10366d;
		font-size: clamp(36px, 4vw, 52px);
		line-height: 1.15;
		font-weight: 800;
		letter-spacing: -1.5px;
		}

		.oh-divider {
		width: 74px;
		height: 4px;
		margin-top: 14px;
		border-radius: 20px;
		background: #1764b5;
		}

		.oh-divider--center {
		margin-left: auto;
		margin-right: auto;
		}


		/* =========================================
		PARTNERS GRID
		========================================= */

		/* =========================================
   ASSOCIATED PARTNERS
========================================= */

.oh-partners {
    width: 100%;
    padding: 70px 20px 85px;
    background: #f5f9fd;
    box-sizing: border-box;
}


/* =========================================
   SECTION HEADING
========================================= */

.oh-section-head {
    text-align: center;
    margin-bottom: 68px;
}

.oh-heading {
    margin: 0;
    color: #0b315e;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.oh-divider {
    width: 56px;
    height: 4px;
    margin-top: 12px;
    border-radius: 10px;
    background: #087db8;
}

.oh-divider--center {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================
   PARTNERS GRID
========================================= */

.oh-partners__grid {
    width: min(1060px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 36px;

    align-items: center;
}


/* =========================================
   PARTNERS GRID
========================================= */

.oh-partners__grid {
    width: 100%;
    max-width: 850px;
    margin: 35px auto 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 38px;

    justify-content: center;
    align-items: center;
}


/* =========================================
   PARTNER CARD
========================================= */

.oh-partner-card {
    position: relative;

    width: 100%;
    height: 175px;

    padding: 20px 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 1px solid #dfe8f1;
    border-top: 5px solid #075a98;

    border-radius: 28px;

    box-shadow:
        0 8px 25px rgba(20, 55, 90, 0.055);

    box-sizing: border-box;
    overflow: hidden;

    transition:
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* =========================================
   BOTH LOGOS — CENTERED
========================================= */

.oh-partner-card img {
    display: block;

    width: auto;
    height: 110px;

    max-width: 75%;

    object-fit: contain;
    object-position: center;

    margin: 0 auto;

    transition: transform 0.3s ease;
}


/* =========================================
   HOVER
========================================= */

.oh-partner-card:hover {
    border-top-color: #064f89;

    box-shadow:
        0 14px 35px rgba(20, 55, 90, 0.10);
}

.oh-partner-card:hover img {
    transform: scale(1.025);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .oh-partners__grid {
        max-width: 500px;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .oh-partner-card {
        height: 165px;
    }

    .oh-partner-card img {
        height: 100px;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .oh-partners {
        padding: 60px 25px 70px;
    }

    .oh-section-head {
        margin-bottom: 50px;
    }

    .oh-partners__grid {
        gap: 25px;
    }

    .oh-partner-card {
        height: 240px;
        border-radius: 24px;
    }

    .oh-partner-card img {
        height: 155px;
    }

    .oh-partner-card:nth-child(2) img {
        height: 155px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .oh-partners {
        padding: 55px 18px 65px;
    }

    .oh-section-head {
        margin-bottom: 38px;
    }

    .oh-heading {
        font-size: 34px;
        letter-spacing: -0.8px;
    }

    .oh-divider {
        width: 55px;
        height: 3px;
        margin-top: 11px;
    }

    .oh-partners__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }

    .oh-partner-card {
        height: 210px;
        padding: 18px 25px;
        border-top-width: 4px;
        border-radius: 22px;
    }

    .oh-partner-card img {
        height: 145px;
        max-width: 88%;
    }

    .oh-partner-card:nth-child(2) img {
        height: 145px;
        max-width: 78%;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .oh-partners {
        padding: 48px 15px 55px;
    }

    .oh-heading {
        font-size: 30px;
    }

    .oh-partner-card {
        height: 185px;
        border-radius: 19px;
    }

    .oh-partner-card img {
        height: 125px;
    }

    .oh-partner-card:nth-child(2) img {
        height: 125px;
    }

}

		 /* =========================================
			GALLERY & AWARDS
		========================================= */

		.oh-gallery {
		position: relative;
		padding: 75px 0 70px;
		background: #ffffff;
		overflow: hidden;
		}


		/* =========================================
		HEADING
		========================================= */

		.oh-gallery__head {
		width: min(1180px, 92%);
		margin: 0 auto 28px;
		text-align: center;
		}

		.oh-gallery__eyebrow {
		display: block;
		margin-bottom: 8px;

		color: #07579f;
		font-size: 14px;
		font-weight: 700;
		letter-spacing: 1.5px;
		text-transform: uppercase;
		}

		.oh-gallery__title {
		margin: 0;

		color: #07579f;
		font-size: clamp(32px, 3.2vw, 48px);
		line-height: 1.15;
		font-weight: 700;
		}

		.oh-gallery__line {
		width: 74px;
		height: 4px;

		margin: 14px auto 18px;

		border-radius: 20px;
		background: #1768b5;
		}

		.oh-gallery__intro {
		max-width: 900px;
		margin: 0 auto;

		color: #4b5563;
		font-size: 18px;
		line-height: 1.6;
		}


		/* =========================================
		GALLERY WRAPPER
		========================================= */

		.oh-gallery__wrapper {
		position: relative;

		width: 100%;
		margin-top: 25px;

		display: flex;
		align-items: center;
		}


		/* =========================================
		TRACK
		========================================= */

		.oh-gallery__track {
		width: 100%;

		display: flex;
		align-items: center;
		justify-content: center;

		gap: 34px;

		padding: 0 4.5%;

		box-sizing: border-box;

		overflow: hidden;
		}


		/* =========================================
		IMAGE CARD
		========================================= */

		.oh-gallery__item {
		position: relative;

		flex: 0 0 31%;

		height: 330px;

		overflow: hidden;

		background: #f4f7fa;

		border-radius: 22px;

		box-shadow:
			0 10px 30px rgba(15, 45, 75, 0.08);

		transition:
			transform 0.45s ease,
			opacity 0.45s ease,
			box-shadow 0.45s ease;
		}


		/* Center image */

		.oh-gallery__item:nth-child(2) {
		transform: scale(1.04);
		z-index: 2;
		}


		/* Side images */

		.oh-gallery__item:nth-child(1),
		.oh-gallery__item:nth-child(3) {
		opacity: 0.96;
		}


		/* =========================================
		IMAGE
		========================================= */

		.oh-gallery__item img {
		width: 100%;
		height: 100%;

		display: block;

		object-fit: cover;

		transition: transform 0.5s ease;
		}

		.oh-gallery__item:hover img {
		transform: scale(1.04);
		}


		/* =========================================
		NAVIGATION
		========================================= */

		.oh-gallery__nav {
		position: absolute;
		z-index: 10;

		top: 50%;
		transform: translateY(-50%);

		width: 58px;
		height: 58px;

		display: flex;
		align-items: center;
		justify-content: center;

		border: 0;
		border-radius: 50%;

		background: rgba(255, 255, 255, 0.95);

		box-shadow:
			0 8px 25px rgba(15, 45, 75, 0.12);

		cursor: pointer;

		transition:
			transform 0.3s ease,
			background 0.3s ease,
			box-shadow 0.3s ease;
		}

		.oh-gallery__nav:hover {
		background: #ffffff;

		box-shadow:
			0 10px 30px rgba(15, 45, 75, 0.18);
		}

		.oh-gallery__nav--prev {
		left: 40px;
		}

		.oh-gallery__nav--next {
		right: 40px;
		}

		.oh-gallery__nav:hover {
		transform: translateY(-50%) scale(1.05);
		}

		.oh-gallery__nav svg {
		width: 24px;
		height: 24px;

		fill: none;
		stroke: #4b5563;
		stroke-width: 2;
		stroke-linecap: round;
		stroke-linejoin: round;
		}


		/* =========================================
		DOTS
		========================================= */

		.oh-gallery__dots {
		display: flex;
		justify-content: center;
		align-items: center;

		gap: 8px;

		margin-top: 28px;
		}

		.oh-gallery__dot {
		width: 8px;
		height: 8px;

		padding: 0;

		border: 0;
		border-radius: 50%;

		background: #cbd5e1;

		cursor: pointer;

		transition:
			width 0.3s ease,
			background 0.3s ease;
		}

		.oh-gallery__dot.is-active {
		width: 25px;
		border-radius: 20px;
		background: #07579f;
		}


		/* =========================================
		TABLET
		========================================= */

		@media (max-width: 1000px) {

		.oh-gallery {
			padding: 65px 0;
		}

		.oh-gallery__intro {
			font-size: 16px;
		}

		.oh-gallery__track {
			gap: 22px;
			padding: 0 5%;
		}

		.oh-gallery__item {
			flex-basis: 32%;
			height: 270px;
		}

		.oh-gallery__nav--prev {
			left: 18px;
		}

		.oh-gallery__nav--next {
			right: 18px;
		}

		}


		/* =========================================
		MOBILE
		========================================= */

		@media (max-width: 700px) {

		.oh-gallery {
			padding: 55px 0 60px;
		}

		.oh-gallery__head {
			width: 90%;
			margin-bottom: 25px;
		}

		.oh-gallery__eyebrow {
			font-size: 11px;
			letter-spacing: 1px;
		}

		.oh-gallery__title {
			font-size: 32px;
		}

		.oh-gallery__line {
			width: 55px;
			height: 3px;
			margin: 11px auto 15px;
		}

		.oh-gallery__intro {
			font-size: 14px;
			line-height: 1.55;
		}

		.oh-gallery__track {
			gap: 15px;
			padding: 0 8%;
		}

		.oh-gallery__item {
			flex: 0 0 84%;
			height: 260px;

			border-radius: 18px;
		}

		.oh-gallery__item:nth-child(2) {
			transform: none;
		}

		.oh-gallery__nav {
			width: 44px;
			height: 44px;
		}

		.oh-gallery__nav svg {
			width: 19px;
			height: 19px;
		}

		.oh-gallery__nav--prev {
			left: 12px;
		}

		.oh-gallery__nav--next {
			right: 12px;
		}

		}


		/* =========================================
		SMALL MOBILE
		========================================= */

		@media (max-width: 450px) {

		.oh-gallery__title {
			font-size: 28px;
		}

		.oh-gallery__item {
			height: 230px;
		}

		.oh-gallery__nav {
			width: 40px;
			height: 40px;
		}

		.oh-gallery__nav--prev {
			left: 8px;
		}

		.oh-gallery__nav--next {
			right: 8px;
		}

		}
		
		
		
/*Optimized css for media queries*/


/* =========================================================
   OSHIN INFOTECH — FINAL RESPONSIVE OPTIMIZATION
   Paste this block at the VERY END of the stylesheet.
   ========================================================= */

/* ---------------------------------------------------------
   GLOBAL SAFETY
--------------------------------------------------------- */

.oh-page,
.oh-page * {
  max-width: 100%;
}

.oh-page {
  width: 100%;
  overflow-x: hidden;
}

.oh-page img,
.oh-page svg,
.oh-page video {
  max-width: 100%;
}

.oh-page h1,
.oh-page h2,
.oh-page h3,
.oh-page h4,
.oh-page p {
  overflow-wrap: anywhere;
}


/* =========================================================
   LARGE DESKTOP
   1200px and below
========================================================= */

@media (max-width: 1200px) {

  .oh-topbar__inner,
  .oh-navbar__inner,
  .oh-hero,
  .oh-about,
  .oh-specialized,
  .oh-core,
  .oh-segments,
  .oh-global,
  .oh-workflow,
  .oh-tech,
  .oh-partners,
  .oh-trusted,
  .oh-cta,
  .oh-blog,
  .oh-contact,
  .oh-footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .oh-hero__slide,
  .oh-about__inner,
  .oh-global__inner,
  .oh-tech__inner,
  .oh-contact__inner {
    gap: 48px;
  }

  .oh-specialized__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .oh-core__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .oh-segments__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .oh-blog__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .oh-trusted__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .oh-footer__cols {
    gap: 28px;
  }

  .oh-footer__brand {
    flex-basis: 320px;
    max-width: 320px;
  }

}


/* =========================================================
   TABLET / SMALL LAPTOP
   1024px and below
========================================================= */

@media (max-width: 1024px) {

  /* Section spacing */

  .oh-about,
  .oh-specialized,
  .oh-segments,
  .oh-global,
  .oh-workflow,
  .oh-tech,
  .oh-trusted,
  .oh-blog,
  .oh-contact {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  /* Main two-column layouts */

  .oh-about__inner,
  .oh-global__inner,
  .oh-tech__inner,
  .oh-contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Keep media centered */

  .oh-about__media,
  .oh-global__media,
  .oh-tech__media {
    width: 100%;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Service grids */

  .oh-specialized__grid,
  .oh-segments__grid,
  .oh-blog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oh-core__grid,
  .oh-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Workflow */

  .oh-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oh-flow-step:not(:last-child)::before {
    display: none;
  }

  /* QA */

  .oh-qa {
    padding: 36px;
  }

  .oh-qa__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* Trusted */

  .oh-trusted__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Partners */

  .oh-partners__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* CTA */

  .oh-cta__panel {
    padding: 44px;
  }

  /* Contact */

  .oh-form {
    width: 100%;
  }

}


/* =========================================================
   NAVIGATION
   860px and below
========================================================= */

@media (max-width: 860px) {

  .oh-topbar {
    display: none;
  }

  .oh-navbar {
    position: sticky;
    top: 0;
  }

  .oh-navbar__inner {
    height: 76px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .oh-navbar__brand img {
    height: 58px;
    width: auto;
  }

  .oh-navbar__toggle {
    display: flex;
    flex-shrink: 0;
  }

  .oh-navbar__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 0;

    padding: 0 20px;

    max-height: 0;
    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    background: #fff;
    border-top: 1px solid var(--oh-line);
    box-shadow: var(--oh-shadow-lg);

    transition:
      max-height 420ms var(--oh-ease),
      opacity 280ms var(--oh-ease),
      visibility 420ms;
  }

  .oh-navbar__menu.oh-is-open {
    max-height: calc(100vh - 76px);
    overflow-y: auto;

    padding-bottom: 24px;

    opacity: 1;
    visibility: visible;
  }

  .oh-navbar__link {
    width: 100%;
    padding: 15px 4px;
    border-bottom: 1px solid var(--oh-line);
    justify-content: flex-start;
  }

  .oh-navbar__link::after {
    display: none;
  }

  .oh-dropdown {
    width: 100%;
  }

  .oh-dropdown__panel {
    position: static;

    width: 100%;
    min-width: 0;

    display: none;

    padding: 5px 0 10px 14px;

    border: 0;
    border-radius: 10px;

    background: var(--oh-surface-alt);
    box-shadow: none;

    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .oh-dropdown.oh-is-open .oh-dropdown__panel {
    display: block;
  }

  .oh-dropdown__panel--wide {
    min-width: 0;
    flex-direction: column;
  }

  .oh-navbar__cta {
    width: 100%;
    margin: 18px 0 4px;

    flex-direction: column;
    align-items: stretch;
  }

  .oh-navbar__cta .oh-btn {
    width: 100%;
  }

}


/* =========================================================
   TABLET
   768px and below
========================================================= */

@media (max-width: 768px) {

  /* Section padding */

  .oh-about,
  .oh-specialized,
  .oh-core,
  .oh-segments,
  .oh-global,
  .oh-workflow,
  .oh-tech,
  .oh-trusted,
  .oh-blog,
  .oh-contact {
    padding-left: 24px;
    padding-right: 24px;
  }

  /* Typography */

  .oh-heading {
    font-size: clamp(28px, 5vw, 36px);
    line-height: 1.15;
  }

  .oh-section-head {
    margin-bottom: 42px;
  }

  .oh-section-intro {
    font-size: 15px;
    line-height: 1.7;
  }

  .oh-body-text {
    font-size: 14.5px;
    line-height: 1.7;
  }

  /* About */

  .oh-about__cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .oh-mini-card {
    padding: 20px;
  }

  /* Services */

  .oh-specialized__grid,
  .oh-segments__grid,
  .oh-core__grid,
  .oh-features__grid,
  .oh-blog__grid {
    grid-template-columns: 1fr;
  }

  .oh-service-card {
    padding: 24px;
  }

  .oh-core-card {
    padding: 22px;
  }

  /* Global */

  .oh-global__grid {
    grid-template-columns: 1fr;
  }

  /* Workflow */

  .oh-flow {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .oh-flow-step {
    padding: 20px 14px;
  }

  /* QA */

  .oh-qa {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .oh-qa__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
  }

  /* Trusted */

  .oh-trusted__grid {
    grid-template-columns: 1fr;
  }

  .oh-trusted-tile {
    min-height: 145px;
    padding: 24px;
  }

  /* Partners */

  .oh-partners__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .oh-partner-card {
    min-height: 180px;
    height: auto;
  }

  /* CTA */

  .oh-cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .oh-cta__panel {
    padding: 36px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .oh-cta__content {
    max-width: 100%;
  }

  .oh-cta__actions {
    width: 100%;
    align-items: stretch;
  }

  .oh-cta__actions .oh-btn {
    width: 100%;
  }

  /* Contact */

  .oh-contact__inner {
    grid-template-columns: 1fr;
  }

  .oh-form {
    padding: 28px 22px;
  }

  .oh-form__row {
    grid-template-columns: 1fr;
  }

  /* Footer */

  .oh-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .oh-footer__top {
    flex-direction: column;
    gap: 36px;
  }

  .oh-footer__brand {
    flex: none;
    width: 100%;
    max-width: 520px;
  }

  .oh-footer__cols {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

}


/* =========================================================
   HERO — MOBILE IMAGE FIRST
   767px and below
========================================================= */

@media (max-width: 767px) {

  .oh-hero__slide {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /* IMAGE FIRST */

  .oh-hero__visual {
    order: 1;
    width: 100%;
  }

  .oh-hero__content {
    order: 2;
    width: 100%;
  }

  .oh-hero__image-frame {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
  }

  .oh-hero__content {
    text-align: center;
  }

  .oh-hero__title {
    margin-left: auto;
    margin-right: auto;
  }

  .oh-hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .oh-hero__buttons {
    justify-content: center;
  }

  .oh-hero__trust {
    justify-content: center;
  }

}


/* =========================================================
   MOBILE
   576px and below
========================================================= */

@media (max-width: 576px) {

  .oh-hero,
  .oh-about,
  .oh-specialized,
  .oh-core,
  .oh-segments,
  .oh-global,
  .oh-workflow,
  .oh-tech,
  .oh-partners,
  .oh-trusted,
  .oh-cta,
  .oh-blog,
  .oh-contact,
  .oh-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  /* General spacing */

  .oh-about,
  .oh-specialized,
  .oh-core,
  .oh-segments,
  .oh-global,
  .oh-workflow,
  .oh-tech,
  .oh-trusted,
  .oh-blog,
  .oh-contact {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  /* Typography */

  .oh-heading {
    font-size: clamp(27px, 8vw, 34px);
  }

  .oh-section-head {
    margin-bottom: 34px;
  }

  .oh-section-intro {
    font-size: 14px;
  }

  /* Cards */

  .oh-service-card,
  .oh-core-card,
  .oh-segment-card,
  .oh-feature-tile {
    padding: 20px;
  }

  /* Workflow */

  .oh-flow {
    grid-template-columns: 1fr;
    margin-bottom: 45px;
  }

  .oh-flow-step {
    padding: 20px;
  }

  /* QA */

  .oh-qa {
    padding: 24px 18px;
  }

  .oh-qa__grid {
    grid-template-columns: 1fr;
  }

  /* Trusted */

  .oh-trusted__grid {
    padding: 0;
  }

  .oh-trusted-tile {
    min-height: 135px;
    padding: 22px;
  }

  /* Partners */

  .oh-partner-card {
    min-height: 175px;
    padding: 20px;
    border-radius: 18px;
  }

  .oh-partner-card img {
    max-width: 88%;
    height: 110px;
  }

  /* Gallery */

  .oh-gallery__head {
    width: calc(100% - 36px);
  }

  .oh-gallery__track {
    padding-left: 7%;
    padding-right: 7%;
  }

  .oh-gallery__item {
    flex: 0 0 86%;
    height: 240px;
  }

  .oh-gallery__nav {
    width: 42px;
    height: 42px;
  }

  /* CTA */

  .oh-cta__panel {
    padding: 30px 22px;
    border-radius: 20px;
  }

  /* Contact */

  .oh-contact__list li {
    align-items: flex-start;
  }

  .oh-form {
    padding: 24px 18px;
    border-radius: 18px;
  }

  /* Footer */

  .oh-footer__cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .oh-footer__brand img {
    height: 58px;
  }

  .oh-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Back to top */

  .oh-backtotop {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
  }

}


/* =========================================================
   VERY SMALL MOBILE
   400px and below
========================================================= */

@media (max-width: 400px) {

  .oh-hero,
  .oh-about,
  .oh-specialized,
  .oh-core,
  .oh-segments,
  .oh-global,
  .oh-workflow,
  .oh-tech,
  .oh-partners,
  .oh-trusted,
  .oh-cta,
  .oh-blog,
  .oh-contact,
  .oh-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  /* Typography */

  .oh-heading {
    font-size: 28px;
  }

  .oh-body-text {
    font-size: 13.5px;
  }

  /* Hero */

  .oh-hero__title {
    font-size: 28px;
    line-height: 1.16;
  }

  .oh-hero__subtitle {
    font-size: 15px;
  }

  .oh-hero__desc {
    font-size: 13.5px;
    line-height: 1.65;
  }

  /* Buttons */

  .oh-btn {
    width: 100%;
    min-height: 46px;
    padding: 12px 18px;
  }

  /* Cards */

  .oh-service-card,
  .oh-core-card,
  .oh-segment-card,
  .oh-feature-tile {
    padding: 18px;
  }

  /* Technology */

  .oh-tech-card {
    padding: 13px;
    gap: 10px;
  }

  .oh-tech-card__icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  /* Partners */

  .oh-partner-card {
    min-height: 160px;
    padding: 16px;
  }

  .oh-partner-card img {
    height: 105px;
  }

  /* Gallery */

  .oh-gallery__title {
    font-size: 28px;
  }

  .oh-gallery__item {
    height: 220px;
  }

  .oh-gallery__nav {
    width: 38px;
    height: 38px;
  }

  /* CTA */

  .oh-cta__panel {
    padding: 26px 18px;
  }

  /* Form */

  .oh-form {
    padding: 22px 16px;
  }

}


/* =========================================================
   TOUCH DEVICES
   Remove hover-only movement
========================================================= */

@media (hover: none) {

  .oh-page .oh-btn:hover,
  .oh-page .oh-mini-card:hover,
  .oh-page .oh-service-card:hover,
  .oh-page .oh-core-card:hover,
  .oh-page .oh-segment-card:hover,
  .oh-page .oh-feature-tile:hover,
  .oh-page .oh-flow-step:hover,
  .oh-page .oh-partner-card:hover,
  .oh-page .oh-trusted-tile:hover,
  .oh-page .oh-blog-card:hover {
    transform: none;
  }

  .oh-page .oh-about__media:hover img,
  .oh-page .oh-global__media:hover img,
  .oh-page .oh-tech__media:hover img,
  .oh-page .oh-hero__image-frame:hover img,
  .oh-page .oh-blog-card:hover img,
  .oh-page .oh-gallery__item:hover img {
    transform: none;
  }

  .oh-page .oh-navbar__link:hover::after {
    transform: none;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .oh-page *,
  .oh-page *::before,
  .oh-page *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

}