.service-tabs-v1 {
  --st-navy: #10141f;
  --st-body: #39414f;
  --st-gray: #5a6472;
  --st-blue: #2f6bff;
  --st-border: #e6eaf1;
  --st-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --st-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  position: relative;
  padding: clamp(64px, 7vw, 96px) 40px;
}

.service-tabs-v1__link--static,
.service-tabs-v1__view-all-link--static {
  cursor: default;
}

.service-tabs-v1__container {
  max-width: 1180px;
  margin-inline: auto;
}

/* Section header
   ========================================================================== */

.service-tabs-v1__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
  margin-bottom: 40px;
}

.service-tabs-v1__header-left {
  min-width: 0;
}

.service-tabs-v1__header-right {
  min-width: 0;
  /* Lines up with the heading's first line, not the eyebrow above it. */
  padding-top: 15px;
}

.service-tabs-v1__eyebrow {
  margin: 0;
  color: var(--st-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: uppercase;
   text-align:left !important;
}

.service-tabs-v1__heading {
  margin: 14px 0 0;
  color: var(--st-navy);
  font-size: 41px;
  font-weight: 800;
  letter-spacing: normal;
  line-height: 1.05;
  max-width: 500px;
}

.service-tabs-v1__intro {
  margin: 14px 0 0;
  color: var(--st-gray);
  font-size: 16px;
  line-height: 1.7;
  text-align:left !important
}

.service-tabs-v1__card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  border: 1px solid var(--st-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px -40px rgba(16, 30, 80, 0.3);
}

/* Left nav
   ========================================================================== */

.service-tabs-v1__nav {
  background: linear-gradient(160deg, #2e5bf0, #1b39c4);
  color: #fff;
  padding: 48px 44px;
}

.service-tabs-v1__tablist {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-tabs-v1__tab-indicator {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateY(0);
  transition: transform 0.5s var(--st-ease-spring), height 0.35s var(--st-ease-out);
  will-change: transform, height;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
}

.service-tabs-v1__tablist.is-ready .service-tabs-v1__tab-indicator {
  opacity: 1;
}

.service-tabs-v1__tab {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 13px 16px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #c7d4ff;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease, font-weight 0.2s ease;
}

.service-tabs-v1__tab-label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.service-tabs-v1__tab-number {
  flex-shrink: 0;
}

.service-tabs-v1__tab-icon {
  flex-shrink: 0;
  font-size: 17px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.35s var(--st-ease-spring);
}

.service-tabs-v1__tab-arrow {
  flex-shrink: 0;
  color: #b9ccff;
  opacity: 0;
  transform: translateX(-6px) scale(0.85);
  transition: opacity 0.3s var(--st-ease-out), transform 0.4s var(--st-ease-spring), color 0.2s ease;
}

.service-tabs-v1__tab[aria-selected="true"] {
  color: #fff;
  font-weight: 700;
}

.service-tabs-v1__tab[aria-selected="true"] .service-tabs-v1__tab-icon {
  transform: scale(1.12);
}

.service-tabs-v1__tab[aria-selected="true"] .service-tabs-v1__tab-arrow {
  color: #fff;
  opacity: 1;
  transform: translateX(0) scale(1);
}

@media (hover: hover) {
  .service-tabs-v1__tab:not([aria-selected="true"]):hover {
    color: #fff;
  }

  .service-tabs-v1__tab:not([aria-selected="true"]):hover .service-tabs-v1__tab-arrow {
    color: #b9ccff;
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  .service-tabs-v1__tab:not([aria-selected="true"]):hover .service-tabs-v1__tab-icon {
    transform: scale(1.08);
  }
}

.service-tabs-v1__tab:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Right panels
   ========================================================================== */

.service-tabs-v1__panels {
  position: relative;
  box-sizing: border-box;
  background: #fff;
  padding: 48px 46px;
  overflow: hidden;
}

.service-tabs-v1__panel:not([hidden]) {
  display: flex;
  flex-direction: column;
}

/* Fallback keyframes used only when the JS crossfade (Web Animations API)
   is unavailable; kept in sync with the JS-driven motion so there is no
   visible difference between the two code paths. */
.service-tabs-v1__panel.is-panel-entering-down {
  animation: st1-panel-in-down 0.6s var(--st-ease-out) both;
}

.service-tabs-v1__panel.is-panel-entering-up {
  animation: st1-panel-in-up 0.6s var(--st-ease-out) both;
}

@keyframes st1-panel-in-down {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes st1-panel-in-up {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered reveal of panel content. Applied via the `is-content-entering`
   class, independent of whichever mechanism animates the panel container
   itself (JS Web Animations API or the CSS fallback above), so the two
   never fight over the same properties. */

.service-tabs-v1__panel-header,
.service-tabs-v1__panel-description,
.service-tabs-v1__links,
.service-tabs-v1__view-all {
  opacity: 0;
  transform: translateY(10px);
}

.service-tabs-v1__panel.is-content-entering .service-tabs-v1__panel-header {
  animation: st1-content-in 0.55s var(--st-ease-out) both;
  animation-delay: 0.05s;
}

.service-tabs-v1__panel.is-content-entering .service-tabs-v1__panel-description {
  animation: st1-content-in 0.55s var(--st-ease-out) both;
  animation-delay: 0.11s;
}

.service-tabs-v1__panel.is-content-entering .service-tabs-v1__links {
  animation: st1-content-in 0.55s var(--st-ease-out) both;
  animation-delay: 0.17s;
}

.service-tabs-v1__panel.is-content-entering .service-tabs-v1__view-all {
  animation: st1-content-in 0.55s var(--st-ease-out) both;
  animation-delay: 0.26s;
}

@keyframes st1-content-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-tabs-v1__panel-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-tabs-v1__badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eaf0ff;
  color: var(--st-blue);
  font-size: 18px;
  font-weight: 800;
}

.service-tabs-v1__badge [class^="icon-"],
.service-tabs-v1__badge i {
  font-size: 20px;
}

.service-tabs-v1__panel-title {
  margin: 0;
  color: var(--st-blue);
  font-size: 24px;
  font-weight: 800;
}

.service-tabs-v1__panel-description {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--st-gray);
  font-size: 15px;
  line-height: 1.7;
}

.service-tabs-v1__links {
  margin-top: 30px;
  column-count: 2;
  column-gap: 48px;
}

.service-tabs-v1__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #edf0f5;
  color: var(--st-body);
  font-size: 15px;
  text-decoration: none;
  break-inside: avoid;
  transition: color 0.25s ease;
}

.service-tabs-v1__link-icon {
  flex-shrink: 0;
  font-size: 0.7em;
  color: #b7c0ce;
  transition: color 0.25s ease, transform 0.25s var(--st-ease-spring);
}

.service-tabs-v1__link:focus-visible {
  color: var(--st-blue);
  outline: 2px solid var(--st-blue);
  outline-offset: 2px;
}

.service-tabs-v1__link:focus-visible .service-tabs-v1__link-icon {
  color: var(--st-blue);
  transform: translateX(3px);
}

@media (hover: hover) {
  .service-tabs-v1__link:hover {
    color: var(--st-blue);
  }

  .service-tabs-v1__link:hover .service-tabs-v1__link-icon {
    color: var(--st-blue);
    transform: translateX(4px);
  }
}

.service-tabs-v1__view-all {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 2px solid #eaf0ff;
}

.service-tabs-v1__view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--st-blue);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.service-tabs-v1__view-all-icon {
  transition: transform 0.25s var(--st-ease-spring);
}

.service-tabs-v1__view-all-link:focus-visible {
  outline: 2px solid var(--st-blue);
  outline-offset: 2px;
}

.service-tabs-v1__view-all-link:focus-visible .service-tabs-v1__view-all-icon {
  transform: translateX(3px);
}

@media (hover: hover) {
  .service-tabs-v1__view-all-link:hover .service-tabs-v1__view-all-icon {
    transform: translateX(3px);
  }
}

/* Mobile Swiper carousel (<=860px)
   Independent DOM (see module.html .service-tabs-v1__mobile) — its own
   copy of each category's content, never shared with the desktop
   JS-tabbed panels above. .service-tabs-v1__panel is reused for its
   (already-styled) header/description/links/view-all layout, but inside
   .service-tabs-v1__mobile it's just a normal swiper-slide's content and
   always visible — never [hidden], never touched by initTabs' crossfade.
   ========================================================================== */

.service-tabs-v1__mobile {
  display: none;
}

/* Entrance animation
   ========================================================================== */

.service-tabs-v1 [data-animate] {
  opacity: 0;
  transform: translateY(22px) scale(0.99);
  transition: opacity 0.7s var(--st-ease-out), transform 0.7s var(--st-ease-out);
}

.service-tabs-v1.is-visible [data-animate] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-tabs-v1.is-visible [data-animate-order="1"] { transition-delay: 0s; }
.service-tabs-v1.is-visible [data-animate-order="2"] { transition-delay: 0.08s; }
.service-tabs-v1.is-visible [data-animate-order="3"] { transition-delay: 0.16s; }
.service-tabs-v1.is-visible [data-animate-order="4"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .service-tabs-v1__panel.is-panel-entering-down,
  .service-tabs-v1__panel.is-panel-entering-up,
  .service-tabs-v1__panel-header,
  .service-tabs-v1__panel-description,
  .service-tabs-v1__links,
  .service-tabs-v1__view-all {
    animation: none;
  }

  .service-tabs-v1 [data-animate],
  .service-tabs-v1__tab,
  .service-tabs-v1__tab-icon,
  .service-tabs-v1__tab-arrow,
  .service-tabs-v1__tab-indicator,
  .service-tabs-v1__link,
  .service-tabs-v1__link-icon,
  .service-tabs-v1__view-all-icon {
    transition: none;
  }

  .service-tabs-v1 [data-animate] {
    opacity: 1;
    transform: none;
  }

  .service-tabs-v1__panel-header,
  .service-tabs-v1__panel-description,
  .service-tabs-v1__links,
  .service-tabs-v1__view-all {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 1024px) {
  .service-tabs-v1__heading {
    text-align:center;
  }
  
  
}
@media (max-width: 860px) {
  .service-tabs-v1__header {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .service-tabs-v1__header-right {
    padding-top: 0;
  }
.service-tabs-v1__heading
  { text-align: center;
    max-width: 550px;
    margin: 15px auto;
}

  .service-tabs-v1__eyebrow {
text-align: center  !important;
}
.service-tabs-v1__intro {
  text-align: center !important;
  max-width: 550px;
  margin: 16px auto;
}
  .service-tabs-v1__card {
    display: none;
  }

  .service-tabs-v1__mobile {
    display: block;
  }

  .service-tabs-v1__mobile-swiper {
    overflow: hidden;
    position: relative;
    min-width: 0;
    border: 1px solid var(--st-border);
    border-radius: 24px;
    box-shadow: 0 30px 70px -40px rgba(16, 30, 80, 0.3);
    background: #fff;
  }

  .service-tabs-v1__mobile-swiper .swiper-wrapper {
    display: flex;
    min-width: 0;
  }

  .service-tabs-v1__mobile-swiper .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    min-width: 0;
  }

  /* Inside .service-tabs-v1__mobile this is never JS-toggled — every
     slide's panel is always visible, Swiper alone controls which one is
     in view. */
  .service-tabs-v1__mobile .service-tabs-v1__panel {
    display: flex;
    flex-direction: column;
    padding: 32px 26px;
    min-width: 0;
  }

  /* .service-tabs-v1__panel-header/-description/__links/__view-all are
     opacity:0 by default (see the entrance-stagger rules above) - that's
     only ever cleared by initTabs adding .is-content-entering to a
     *desktop* panel, which these mobile copies never receive. Force them
     visible here instead. */
  .service-tabs-v1__mobile .service-tabs-v1__panel-header,
  .service-tabs-v1__mobile .service-tabs-v1__panel-description,
  .service-tabs-v1__mobile .service-tabs-v1__links,
  .service-tabs-v1__mobile .service-tabs-v1__view-all {
    opacity: 1;
    transform: none;
  }

  /* Title and description center on mobile - badge stays beside the
     title (row layout unchanged), links/view-all stay left-aligned. */
  .service-tabs-v1__mobile .service-tabs-v1__panel-header {
    justify-content: left;
  }

  .service-tabs-v1__mobile .service-tabs-v1__panel-title {
    text-align: left;
  }

  .service-tabs-v1__mobile .service-tabs-v1__panel-description {
    text-align: left;
    margin-right: auto;
  }

  .service-tabs-v1__mobile .service-tabs-v1__links {
    column-count: 1;
  }

  .service-tabs-v1__swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
  }

  .service-tabs-v1__swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b9c2d1;
    opacity: 1;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
  }

  .service-tabs-v1__swiper-pagination .swiper-pagination-bullet-active {
    background: var(--st-blue);
    transform: scale(1.35);
  }
}


@media (max-width: 460px) {
.service-tabs-v1__heading
  { text-align: center;
    font-size: 30px;
    }
}

  .service-tabs-v1__eyebrow {
text-align: center;
}
.service-tabs-v1__intro {
  text-align: center;

}

}

