:root {
  --font-base: "Sora", sans-serif;
  --top-strip-height: 44px;
  --navbar-height: 86px;
  --header-offset: var(--navbar-height);
  --navbar-top: 0px;
  --color-page: #f4f4f6;
  --color-surface: #ffffff;
  --color-primary: #24227a;
  --color-primary-dark: #181857;
  --color-accent: #d5452f;
  --color-accent-dark: #b93522;
  --color-heading: #141414;
  --color-text: #5d6477;
  --color-line: rgba(20, 20, 20, 0.08);
  --color-yellow: #f3de08;
  --shadow-card: 0 18px 40px rgba(15, 21, 39, 0.08);
  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --section-space: clamp(3rem, 7vw, 5rem);
  --h1-size: 56px;
  --h2-size: 40px;
  --h3-size: 32px;
  --h4-size: 24px;
  --h5-size: 20px;
  --h6-size: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-page);
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top, rgba(213, 69, 47, 0.18), transparent 36%),
    linear-gradient(180deg, #f8f8fb 0%, #eef1f7 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.page-loader__logo-wrap {
  position: relative;
  width: clamp(130px, 18vw, 200px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.page-loader__logo-wrap::before,
.page-loader__logo-wrap::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(36, 34, 122, 0.14);
}

.page-loader__logo-wrap::before {
  animation: loaderPulse 1.9s ease-in-out infinite;
}

.page-loader__logo-wrap::after {
  inset: -8%;
  border-color: rgba(213, 69, 47, 0.18);
  animation: loaderSpin 5.8s linear infinite;
}

.page-loader__logo {
  width: min(100%, 132px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(20, 20, 20, 0.12));
  animation: loaderFloat 1.8s ease-in-out infinite;
}

.page-loader__text {
  color: #2d3276;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--color-heading);
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  font-size: var(--h1-size);
}

h2 {
  font-size: var(--h2-size);
}

h3 {
  font-size: var(--h3-size);
}

h4 {
  font-size: var(--h4-size);
}

h5 {
  font-size: var(--h5-size);
}

h6 {
  font-size: var(--h6-size);
}

p {
  margin: 0;
  line-height: 1.7;
}

.top-strip {
  position: relative;
  z-index: 30;
  background: var(--color-yellow);
  color: #111;
  overflow: hidden;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.top-strip-inner {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: 0.65rem 1rem;
  font-size: 14px;
  font-weight: 700;
}

.top-strip-label {
  flex: 0 0 auto;
  color: #111;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-strip-ticker {
  flex: 1;
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.top-strip-marquee {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  will-change: transform;
  animation: top-strip-marquee 24s linear infinite;
}

.top-strip-track {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 1.35rem;
  min-width: max-content;
  padding-right: 1.35rem;
}

.top-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #111;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.top-strip-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.45);
}

.top-strip:hover .top-strip-marquee {
  animation-play-state: paused;
}

@keyframes top-strip-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes loaderFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.45;
  }

  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes loaderSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.site-header {
  position: relative;
}

.navbar {
  position: fixed;
  top: var(--navbar-top);
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 0.7rem 0 0;
  transition: top 0.28s ease, background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar-scrolled {
  background: rgba(11, 21, 43, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(9, 18, 36, 0.2);
}

.nav-shell {
  min-height: 72px;
}

.brand-mark img{
  height: 65px;
}

.brand-icon {
  width: 2.15rem;
  height: 2.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: linear-gradient(135deg, #3141cb, #e13b30);
  color: #fff;
  font-size: 1rem;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #fff;
}

.page-navbar {
  padding-top: 0.45rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(15, 21, 39, 0.08);
}

.page-navbar.navbar-scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 36px rgba(15, 21, 39, 0.12);
}

.page-navbar .brand-mark img {
  height: 54px;
}

.page-navbar .nav-link {
  position: relative;
  color: #3f4452;
  font-size: 15px;
  font-weight: 500;
}

.page-navbar .nav-link:hover,
.page-navbar .nav-link:focus,
.page-navbar .nav-link.is-active {
  color: #1b1f28;
}

.page-navbar .nav-link.is-active {
  font-weight: 700;
}

.page-navbar .nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0.4rem;
  right: 0.4rem;
  bottom: -0.45rem;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent);
}

.nav-cta {
  font-size: 15px;
  border-radius: 10px !important;
}

.btn {
  font-weight: 600;
  border-width: 1px;
}

.btn-accent {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.btn-accent:hover,
.btn-accent:focus {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
}

.hero-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-slide {
  height: 100%;
}

.hero-swiper .swiper-wrapper {
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(15, 32, 67, 0.86), rgba(15, 32, 67, 0.62) 45%, rgba(15, 32, 67, 0.78));
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.24;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding-top: calc(var(--header-offset) + 2rem);
  padding-bottom: 3rem;
}

.hero-copy {
  max-width: 850px;
}

.section-tag,
.split-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.2rem 0.9rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin-top: 1rem;
  color: #fff;
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
}

.hero-copy p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  max-width: 860px;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-actions .btn {
  font-size: 18px;
  border-radius: 10px !important;
}

.hero-secondary-btn {
  color: var(--color-primary);
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.55rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-avatars {
  display: flex;
}

.proof-avatars span {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -0.35rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.63rem;
  font-weight: 700;
}

.proof-avatars span:first-child {
  margin-left: 0;
}

.proof-copy {
  display: grid;
  gap: 0.15rem;
}

.proof-copy strong {
  color: #fff;
  font-size: 11px;
}

.proof-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.hero-pagination {
  position: absolute;
  left: 50%;
  bottom: 1.45rem !important;
  transform: translateX(-50%);
  z-index: 8;
}

.hero-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 4px !important;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.58);
  opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

.section-block {
  position: relative;
  padding: var(--section-space) 0;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  left: 50%;
}

.hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 99px;
}

.about-section,
.gallery-section,
.team-section,
.careers-section {
  background: #f7f7f8;
}

.services-section,
.support-section {
  background: #f2f3f7;
}

.section-intro {
  /* max-width: 760px; */
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 16px;
  color: #1A1A1A;
}

.about-media {
  position: relative;
  min-height: 400px;
  padding-right: 60px;
}

.about-media-main,
.about-media-float {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  position: relative;
}


/* .about-media-main {
  height: 320px;
} */

.about-media-main img,
.about-media-float img,
.gallery-card img,
.support-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-media-float {
  position: absolute;
  right: 0;
  bottom: -50px;
  /* width: 42%;
  height: 160px; */
  border: 6px solid #f7f7f8;
}

.ring-pattern {
        position: absolute;
    content: '';
    left: -98px;
    bottom: -120px;
    z-index: -1;
    width: 300px;
}



/* .about-copy h2 {
  max-width: 15ch;
} */

.about-copy p {
     margin-top: 1rem;
    font-size: 16px;
    line-height: 34px;
}

.about-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.about-list li {
  position: relative;
  font-size: 13px;
  color: #444d61;
}

/* .about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  transform: translateY(-50%);
} */

.feature-strip {
  margin-top: 4rem;
}

.inner-certified h6{
  font-size: 15px;
}

.inner-certified p {
  margin-top: 2px;
  font-size: 14px;
  line-height: 24px;
}

.mini-feature {
  height: 100%;
  padding: 1.4rem 1rem 1.2rem;
  border-top: 4px solid var(--color-primary);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.mini-feature-icon {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: rgba(36, 34, 122, 0.08);
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 700;
}

.mini-feature h3,
.service-card h3,
.leader-card h3,
.expert-card h3,
.site-footer h3 {
  font-size: 18px;
}

.mini-feature p,
.service-card p,
.leader-card p,
.expert-card p {
  margin-top: 0.45rem;
  font-size: 14px;
}

.collaboration-section {
  position: relative;
  height: 100vh;
  background:  url(../img/img-3.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.collaboration-section::before {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #00000024;
  z-index: 0;
  content: '';
}

/* .collaboration-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(18, 25, 53, 0.32), rgba(18, 25, 53, 0.62)),
    url("https://images.unsplash.com/photo-1569629743817-70d8db6c323b?auto=format&fit=crop&w=1600&q=80");
  background-position: center;
  background-size: cover;
} */

.collaboration-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 46px 46px;
}

.collaboration-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* min-height: 430px; */
  /* padding: 2.5rem; */
  text-align: center;
  color: #fff;
}

.collaboration-inner h2 {
  color: #fff;
}

.collaboration-inner p {
  margin-top: 50px;
  color: #171371;
  font-size: 16px;
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  width: 100%;
  /* max-width: 900px; */
  margin-top: 12rem;
}

.partner-item {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
}

.partner-item img {
  height: 100px;
}

.partner-item strong {
  min-width: 58px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.05rem;
}

.partner-item span {
  color: #171371;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  height: 250px;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
}

.gallery-card h6 {
 position: absolute;
    /* left: 0.75rem; */
    right: 15px;
    bottom: 15px;
    z-index: 1;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.services-section .split-badge,
.team-section .split-badge,
.support-section .split-badge {
  margin-bottom: 1.5rem;
}

.service-card {
  position: relative;
  height: 100%;
  padding: 30px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.service-number {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
      position: absolute;
    right: 25px;
    top: -25px;
}

.work-icons {
  margin-bottom: 24px;
}

.mask-circle {
  position: absolute;
  right: 0;
  bottom: 0;
}

.team-section {
  background: url(../img/team-bg.png);
  background-repeat: no-repeat;
  background-position: top 
  center;
  height: 100%;
}

.team-header {
  text-align: center;
}

.team-header h2 {
  margin-top: 1rem;
}

.team-header p {
  max-width: 620px;
  margin: 0.7rem auto 0;
  font-size: 13px;
}

.team-subheader {
  margin-top: 2.75rem;
}

.team-row {
  margin-top: 2rem;
}

.leader-card {
  text-align: center;
}

.team-member-card {
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.team-member-card:hover {
  transform: translateY(-6px);
}

.team-member-card:focus-visible {
  outline: 3px solid rgba(36, 34, 122, 0.24);
  outline-offset: 8px;
}

.leader-card img {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  object-fit: cover;
}

.leader-card-small img {
  width: 86px;
  height: 86px;
}

.leader-card h3 {
  color: #393186;
}

.team-subheader h2 {
  font-size: 32px;
  font-weight: 500;
}

.experts-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  /* padding: 1.3rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card); */
}

.expert-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 14px;
    border: 1px solid #E2E8F0;
     border-radius: var(--radius-lg);
}

.expert-card img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
} 

.team-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.team-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.team-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(245, 246, 250, 0.35);
  backdrop-filter: blur(10px);
}

.team-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(88vh, 760px);
  overflow-y: auto;
  padding: clamp(1.75rem, 4vw, 2.8rem);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(18, 24, 52, 0.18);
}

.team-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #ef4d5a;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.team-modal__body {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

.team-modal__avatar {
  width: 108px;
  height: 108px;
  margin: 0 auto 1.2rem;
  padding: 6px;
  border-radius: 50%;
  border: 1px solid rgba(36, 34, 122, 0.12);
}

.team-modal__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.team-modal__name {
  color: #393186;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  text-transform: uppercase;
}

.team-modal__role {
  margin-top: 0.45rem;
  color: #2f2f2f;
  font-size: 0.95rem;
  font-weight: 600;
}

.team-modal__highlight {
  margin-top: 1rem;
  color: #212121;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.75;
}

.team-modal__highlight:empty {
  display: none;
}

.team-modal__description {
  margin-top: 1rem;
  text-align: left;
  color: #666b78;
  font-size: 0.95rem;
  line-height: 1.8;
}

.team-modal__description p {
  margin-top: 0.8rem;
  text-align: justify;
}

.expert-card h3 {
  text-transform: uppercase;
  color: #393186 ;
}

.support-visual {
  overflow: hidden;
  min-height: 380px;
  border-radius: 6px;
  box-shadow: var(--shadow-card);
}

.support-copy {
  font-size: 13px;
}

.support-copy > p {
  color: var(--color-heading);
  font-size: 1.05rem;
}

.support-list {
  margin-top: 0.8rem;
  display: block;
  padding-left: 1.25rem;
  list-style: disc;
}

.support-list li {
  padding-left: 0;
  font-size: 15px;
  color: #333b4d;
  margin-bottom: 16px;
}

.support-section .split-badge {
  margin-bottom: 0;
}

.hiring-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 230px;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.6rem, 4vw, 3.25rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, #2b2890, #33277f);
  color: #fff;
}

.hiring-banner::before,
.hiring-banner::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-50%);
}

.hiring-banner::before {
  left: -70px;
}

.hiring-banner::after {
  left: 23%;
  width: 360px;
  height: 360px;
  background: rgba(255, 255, 255, 0.05);
}

.hiring-copy,
.hiring-banner .btn {
  position: relative;
  z-index: 1;
}

.hiring-copy h2 {
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.hiring-copy p {
  max-width: 520px;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.9;
}

.hiring-banner .btn {
  min-width: 185px;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  font-size: 1.08rem;
  color: #1f2468;
}

.service-page {
  background: #fff;
}

.service-page-header {
  position: relative;
}

.service-hero {
  position: relative;
  min-height: 300px;
  margin-top: calc(var(--navbar-height) + 4px);
  background:
    linear-gradient(90deg, rgba(19, 19, 19, 0.72), rgba(19, 19, 19, 0.56)),
    url("../img/banner-1.png");
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(15, 15, 15, 0.18));
}

.service-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 300px;
}

.service-hero__copy {
  color: #fff;
}

.service-hero__copy h1 {
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: -0.03em;
}

.service-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 600;
}

.service-overview {
  padding-top: clamp(4.5rem, 7vw, 6rem);
  background: #fff;
}

.service-overview__heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.service-overview__heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

.service-overview__heading p {
  margin-top: 1.2rem;
  color: #7b8498;
  font-size: 1rem;
}

.service-detail-row {
  margin-top: clamp(3rem, 5vw, 4.5rem);
}

.service-collage {
  position: relative;
  min-height: 520px;
  padding-right: 4.8rem;
  padding-bottom: 4rem;
}

.service-collage__primary,
.service-collage__secondary {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(15, 21, 39, 0.12);
}

.service-collage__primary {
  height: 420px;
}

.service-collage__secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(42%, 250px);
  height: 220px;
  border: 8px solid #fff;
}

.service-collage__primary img,
.service-collage__secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-copy h3 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  letter-spacing: -0.04em;
}

.service-copy p {
  margin-top: 1rem;
  color: #6c7485;
  font-size: 1rem;
}

.service-copy strong {
  color: #30343d;
}

.service-checklist {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.service-checklist li {
  position: relative;
  padding-left: 1.9rem;
  color: #4c5363;
  font-size: 0.98rem;
}

.service-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: #2f7ed8;
  font-weight: 700;
}

.service-note-list {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.service-note {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: #566072;
}

.service-note__icon {
  color: #2f7ed8;
  font-weight: 800;
  line-height: 1.6;
}

.service-note p {
  font-size: 0.96rem;
}

.service-section-head h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  letter-spacing: -0.04em;
}

.service-tools-section {
  padding-top: clamp(2rem, 4vw, 3rem);
  background: #fff;
}

.tool-card {
  height: 100%;
  padding: 1.6rem 1.5rem 1.45rem;
  border: 1px solid #e6ebf2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(14, 19, 35, 0.04);
}

.tool-card__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f4f8ff;
}

.tool-card h3 {
  margin-top: 1.2rem;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.tool-card p {
  margin-top: 0.8rem;
  color: #7c8698;
  font-size: 0.96rem;
}

.tool-card ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.tool-card li {
  color: #7a8394;
  font-size: 0.95rem;
}

.tool-card li + li {
  margin-top: 0.45rem;
}

.service-gallery-section {
  background: #fff;
}

.tools-gallery-swiper {
  margin-top: 2rem;
  overflow: hidden;
}

.tools-gallery-card {
  overflow: hidden;
  border-radius: 18px;
  background: #eef3fa;
}

.tools-gallery-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.tools-gallery-pagination {
  position: relative;
  margin-top: 1.25rem;
  bottom: 0 !important;
  display: none;
}

.tools-gallery-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(36, 34, 122, 0.22);
  opacity: 1;
}

.tools-gallery-pagination .swiper-pagination-bullet-active {
  background: #24227a;
}

.service-footer {
  padding: 4.7rem 0 1.5rem;
  background: #2b2491;
}

.service-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.35fr) auto;
  gap: 2rem;
  align-items: end;
}

.service-footer__intro h2 {
  color: #fff;
  max-width: 12ch;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.05em;
}

.service-footer__intro p {
  max-width: 34ch;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
}

.service-footer__intro .btn {
  margin-top: 1.6rem;
}

.service-footer__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-footer__block {
  min-height: 100%;
}

.service-footer__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 600;
}

.service-footer__label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f47b6d;
}

.service-footer__block p {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  line-height: 1.6;
}

.service-footer__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-footer__social a {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.service-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
}

.service-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.certification-section {
  background: #fff;
}

.certificate-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 2.4rem;
}

.certificate-tab {
  padding: 0.85rem 1.45rem;
  border: 1px solid #e6e7ee;
  border-radius: 10px;
  background: #fff;
  color: #c43728;
  font-size: 0.98rem;
  font-weight: 500;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.certificate-tab:hover,
.certificate-tab:focus-visible {
  border-color: rgba(196, 55, 40, 0.32);
  box-shadow: 0 10px 24px rgba(196, 55, 40, 0.08);
}

.certificate-tab.is-active {
  border-color: #c43728;
  background: #c43728;
  color: #fff;
}

.certificate-panels {
  margin-top: 2.2rem;
}

.certificate-panel[hidden] {
  display: none !important;
}

.certificate-image-card {
  max-width: 980px;
  margin: 0 auto;
}

.certificate-image-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15, 21, 39, 0.08);
}

.certificate-image-card__placeholder {
  min-height: clamp(280px, 46vw, 720px);
  display: grid;
  place-items: center;
  gap: 0.55rem;
  padding: 2rem;
  border: 1px dashed #d7dce8;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  text-align: center;
}

.certificate-image-card__placeholder strong {
  color: #2c315f;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.certificate-image-card__placeholder span {
  color: #7a8294;
  font-size: 0.98rem;
}

.careers-page-section {
  background: #fff;
}

.careers-page__heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.careers-page__heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.55rem);
  letter-spacing: -0.05em;
}

.careers-page__heading p {
  max-width: 38ch;
  margin: 1.1rem auto 0;
  color: #888f9d;
  font-size: 1rem;
  line-height: 1.7;
}

.career-mail-shell {
  display: flex;
  justify-content: center;
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

.career-mail-card {
  position: relative;
  width: min(100%, 760px);
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #1f1a82 0%, #3a3198 100%);
  box-shadow: 0 24px 54px rgba(28, 27, 104, 0.16);
}

.career-mail-card__orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(107, 98, 225, 0.22);
}

.career-mail-card__orb--one {
  left: -14%;
  top: -8%;
  width: 320px;
  height: 320px;
}

.career-mail-card__orb--two {
  left: 14%;
  top: -4%;
  width: 300px;
  height: 300px;
  background: rgba(77, 64, 194, 0.22);
}

.career-mail-card__content {
  position: relative;
  z-index: 1;
  padding: clamp(2.4rem, 5vw, 3.2rem) 1.4rem;
  text-align: center;
}

.career-mail-card__content h3 {
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.7rem);
  letter-spacing: -0.04em;
}

.career-mail-card__content p {
  max-width: 32ch;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.7;
}

.career-mail-pill {
  min-width: min(100%, 300px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.7rem;
  padding: 1rem 1.35rem;
  border-radius: 10px;
  background: #fff;
  color: #1b2430;
  box-shadow: 0 16px 32px rgba(15, 21, 39, 0.14);
}

.career-mail-pill__icon {
  width: 1.65rem;
  height: 1.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.career-mail-pill span {
  font-size: clamp(1.05rem, 2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.footer-meta-grid {
  display: grid;
  gap: 1.3rem;
}

.qs-section {
  background: #fff;
}

.qs-heading {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.qs-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -0.05em;
}

.qs-heading p {
  margin-top: 1rem;
  color: #8a909c;
  font-size: 1rem;
}

.qs-heading strong {
  display: block;
  margin-top: 0.45rem;
  color: #1f2430;
  font-size: 1.02rem;
}

.qs-grid {
  margin-top: clamp(3rem, 5vw, 4rem);
}

.qs-column__image {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(15, 21, 39, 0.08);
}

.qs-column__image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.qs-column h3 {
  margin-top: 1.2rem;
  font-size: clamp(1em, 3vw, 1.5rem);
  letter-spacing: -0.04em;
}

.qs-card-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.qs-info-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid #e7eaf0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 21, 39, 0.03);
}

.qs-info-card__icon {
  width: 2.3rem;
  height: 2.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff8e8;
}

.qs-info-card h4 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.qs-info-card p {
  margin-top: 0.35rem;
  color: #8390a4;
  font-size: 0.98rem;
  line-height: 1.7;
}

.contact-section {
  background: #fff;
}

.contact-copy__eyebrow {
  display: inline-block;
  color: #c43728;
  font-size: 1rem;
  font-weight: 500;
}

.contact-copy h2 {
  margin-top: 1rem;
  font-size: clamp(2.2rem, 5vw, 3rem);
  letter-spacing: -0.06em;
}

.contact-copy > p {
  max-width: 34ch;
  margin-top: 1.4rem;
  color: #8d95a4;
  font-size: 1rem;
  line-height: 1.75;
}

.contact-info-list {
  display: grid;
  gap: 1.55rem;
  margin-top: 1.7rem;
}

.contact-info-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.contact-info-item__icon {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #2f2b8f, #4539ad);
  box-shadow: 0 14px 24px rgba(47, 43, 143, 0.18);
}

.contact-info-item h3 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.contact-info-item p {
  margin-top: 0.35rem;
  color: #9aa2b0;
  font-size: 0.98rem;
  line-height: 1.7;
}

.contact-form-card {
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 22px;
  background: #f1f1f4;
}

.contact-form-card h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

.contact-form-card > p {
  max-width: 34ch;
  margin-top: 0.9rem;
  color: #9c9fa7;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: #fff;
  padding: 1rem 1.1rem;
  color: #1f2430;
  font-size: 1rem;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b5bac4;
}

.contact-form__submit {
  justify-self: start;
  min-width: 158px;
  padding: 0.9rem 1.25rem;
  border-radius: 10px !important;
}

.contact-team-block {
  max-width: 860px;
  margin: clamp(4rem, 7vw, 5.5rem) auto 0;
  text-align: center;
}

.contact-team-block h2 {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  letter-spacing: -0.05em;
}


.site-footer {
  padding: 4.3rem 0 1.5rem;
  background: linear-gradient(180deg, #1d1f7b, #171965);
  color: rgba(255, 255, 255, 0.84);
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
}

.footer-btn {
  margin-top: 1.25rem;
}

.site-footer h2 {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.site-footer p {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.footer-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.footer-list li + li {
  margin-top: 0.5rem;
}

.footer-list li {
  line-height: 1.75;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  font-size: 11px;
  text-transform: none;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 1.8rem;
  height: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1060;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 16px 30px rgba(36, 34, 122, 0.28);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.3s ease;
}

.back-to-top:hover,
.back-to-top:focus {
  background: var(--color-accent-hover);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top span {
  font-size: 1.25rem;
  line-height: 1;
}

.hero-reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.mini-feature,
.gallery-card,
.service-card,
.leader-card,
.expert-card {
  opacity: 0;
}

@media (min-width: 992px) {
  .navbar-collapse {
    padding-top: 0;
  }
}

@media (max-width: 991.98px) {
  .top-strip-inner {
    gap: 0.75rem;
    padding-inline: 0.8rem;
  }

  .top-strip-marquee {
    animation-duration: 18s;
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(14, 22, 50, 0.96);
  }

  .page-navbar .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 30px rgba(15, 21, 39, 0.08);
  }

  .page-navbar .nav-link.is-active::after {
    left: 0;
    right: auto;
    width: 40px;
    bottom: -0.2rem;
  }

  .nav-cta {
    margin-top: 1rem;
  }

  .hero-section,
  .hero-content {
    min-height: 100vh;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-content {
    padding-top: calc(var(--header-offset) + 1.75rem);
  }

  .partner-row,
  .experts-box,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-hero {
    min-height: 320px;
  }

  .service-hero__inner {
    min-height: 320px;
  }

  .service-collage {
    min-height: 480px;
    padding-right: 3rem;
    padding-bottom: 3rem;
  }

  .service-footer__top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .service-footer__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-footer__social {
    justify-content: flex-start;
  }

  .career-mail-card__orb--one {
    width: 260px;
    height: 260px;
  }

  .career-mail-card__orb--two {
    width: 230px;
    height: 230px;
  }

  .qs-column__image img {
    height: 320px;
  }

  .contact-copy h2 {
    max-width: none;
  }

  .hiring-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {

  .footer-bottom p {
    text-align: center;
  }
  .top-strip-inner {
    gap: 0.55rem;
    padding: 0.55rem 0.75rem;
  }

  .top-strip-label {
    font-size: 0.7rem;
  }

  .top-strip-item {
    font-size: 0.76rem;
  }

  .hero-content {
    padding-top: calc(var(--header-offset) + 1.25rem);
  }

  .hero-proof {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-media {
    min-height: 350px;
    padding-right: 25px;
  }

  .about-media-main {
    height: 260px;
  }

  .about-media-float {
    width: 48%;
    height: 130px;
  }

  .service-hero {
    margin-top: calc(var(--navbar-height) + 2px);
    min-height: 280px;
  }

  .service-hero__inner {
    min-height: 280px;
  }

  .service-overview__heading h2,
  .service-section-head h2,
  .service-copy h3 {
    font-size: 1.9rem;
  }

  .service-collage {
    min-height: 390px;
    padding-right: 1rem;
    padding-bottom: 0;
  }

  .service-collage__primary {
    height: 300px;
  }

  .service-collage__secondary {
    position: relative;
    right: auto;
    bottom: auto;
    width: 68%;
    height: 180px;
    margin: -2.2rem 0 0 auto;
  }

  .service-note {
    align-items: flex-start;
  }

  .tools-gallery-card img {
    height: 280px;
  }

  .career-mail-card__content {
    padding: 2rem 1rem;
  }

  .career-mail-pill {
    min-width: 100%;
  }

  .career-mail-pill span:last-child {
    font-size: 1.15rem;
  }

  .qs-column h3 {
    font-size: 1.8rem;
  }

  .qs-info-card {
    padding: 1rem;
  }

  .contact-form-card {
    padding: 1.35rem 1rem;
  }

  .contact-form__submit {
    width: 100%;
    justify-self: stretch;
  }

  .certificate-tab {
    width: 100%;
    text-align: center;
  }

  .certificate-image-card__placeholder {
    min-height: 260px;
    padding: 1.4rem 1rem;
  }

  .tools-gallery-pagination {
    display: block;
  }

  .service-footer__meta {
    grid-template-columns: 1fr;
  }

  .support-list li {
    font-size: 14px;
  }

  .partner-row,
  .experts-box,
  .gallery-grid,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .experts-box {
    display: grid;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 2.75rem;
    height: 2.75rem;
  }

  .team-modal {
    padding: 1rem;
  }

  .team-modal__dialog {
    border-radius: 18px;
    padding: 1.5rem 1.15rem;
  }

  .team-modal__close {
    top: 0.6rem;
    right: 0.6rem;
  }

  .team-modal__description {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .site-header,
  .section-block,
  .site-footer,
  .service-footer {
    overflow-x: hidden;
  }

  .ring-pattern {
    display: none;
  }

  .about-media {
    min-height: auto;
    padding-right: 0;
  }

  .about-media-float {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(78%, 240px);
    height: 140px;
    margin: -2rem 0 0 auto;
  }

  .service-collage {
    min-height: auto;
    padding-right: 0;
    overflow: hidden;
  }

  .service-collage__secondary {
    width: min(72%, 220px);
  }

  .tools-gallery-swiper {
    overflow: hidden;
  }

  .tools-gallery-card img {
    height: 240px;
  }

  .certificate-tabs {
    gap: 0.65rem;
  }

  .certificate-image-card__placeholder {
    min-height: 220px;
  }

  .careers-page__heading h2 {
    font-size: 1.95rem;
  }

  .career-mail-card__orb--one {
    left: -24%;
  }

  .career-mail-card__orb--two {
    left: 8%;
  }

  .qs-column__image img {
    height: 250px;
  }

  .qs-info-card {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .contact-info-item {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .contact-copy h2,
  .contact-team-block h2 {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .top-strip-marquee {
    animation: none;
  }

  .page-loader__logo,
  .page-loader__logo-wrap::before,
  .page-loader__logo-wrap::after {
    animation: none;
  }
}
