/* =========================================================
           HERO SECTION
        ========================================================= */

.hero {
  position: relative;
  min-height: 820px;
  padding: 170px 6% 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #008c94;
}

/* GRID */

.hero::before {
  content: "";

  position: absolute;

  inset: 0;

  opacity: 0.35;

  background-image:
    linear-gradient(rgba(0, 151, 165, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 151, 165, 0.045) 1px, transparent 1px);

  background-size: 55px 55px;

  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

/* =========================================================
           HERO CONTENT
        ========================================================= */

.hero-container {
  position: relative;

  z-index: 2;

  width: min(1280px, 100%);

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  align-items: center;

  gap: 70px;
}

.hero-content {
  animation: heroContentIn 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes heroContentIn {
  from {
    opacity: 0;

    transform: translateY(35px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/* EYEBROW */

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 23px;
  color: #ffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--teal);

  box-shadow: 0 0 0 6px rgba(0, 151, 165, 0.1);

  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(0, 151, 165, 0.1);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(0, 151, 165, 0.03);
  }
}

/* HEADING */

.hero-title {
  max-width: 700px;
  margin-bottom: 25px;
  color: #ffff;
  font-size: clamp(48px, 5.2vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 750;
}

/* SUBTEXT */

.hero-description {
  max-width: 650px;
  margin-bottom: 34px;
  color: #ffff;
  font-size: 18px;
  line-height: 1.5;
}

/* =========================================================
           HERO BUTTONS
        ========================================================= */

.hero-actions {
  display: flex;

  align-items: center;

  gap: 14px;

  flex-wrap: wrap;
}

.hero-primary {
  min-height: 55px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0097a4;
  background: white;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 151, 165, 0.2);
  transition: 0.35s ease;
}

.hero-primary:hover {
  transform: translateY(-4px);

  /* background:
                var(--teal-dark); */

  box-shadow: 0 18px 35px rgba(0, 151, 165, 0.28);
}

.hero-secondary {
  min-height: 55px;

  padding: 0 20px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  color: var(--teal);

  background: rgba(255, 255, 255, 0.65);

  border: 1px solid rgba(88, 89, 91, 0.22);

  border-radius: 12px;

  font-size: 16px;

  font-weight: 700;

  transition: 0.35s ease;
}

.hero-secondary:hover {
  color: var(--teal);

  border-color: var(--teal);

  transform: translateY(-4px);

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

/* =========================================================
           3D VISUAL
        ========================================================= */

.hero-visual {
  position: relative;

  min-height: 540px;

  display: flex;

  align-items: center;

  justify-content: center;

  perspective: 1200px;

  animation: visualIn 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s both;
}

@keyframes visualIn {
  from {
    opacity: 0;

    transform: translateX(50px) scale(0.92);
  }

  to {
    opacity: 1;

    transform: translateX(0) scale(1);
  }
}

/* ORBIT */

.orbit {
  position: absolute;
  width: 450px;
  height: 450px;
  border: 1px solid rgb(255 255 255 / 50%);
  border-radius: 50%;
  transform: rotateX(65deg) rotateZ(15deg);
  animation: orbitRotate 18s linear infinite;
}

.orbit::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 20px rgb(219 234 235 / 45%);
}

.orbit-two {
  width: 360px;
  height: 360px;
  border-color: rgb(225 225 225 / 70%);
  transform: rotateX(65deg) rotateZ(-25deg);
  animation-duration: 14s;
  animation-direction: reverse;
}

.orbit-two::before {
  background: #fff;
  box-shadow: 0 0 20px rgb(232 237 247 / 25%);
}

@keyframes orbitRotate {
  from {
    transform: rotateX(65deg) rotateZ(0deg);
  }

  to {
    transform: rotateX(65deg) rotateZ(360deg);
  }
}

/* CENTRAL 3D CARD */

.research-core {
  position: relative;
  max-width: 430px;
  height: 480px;
  border-radius: 34px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.96),
    rgba(230, 248, 249, 0.82)
  );
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 40px 90px rgb(237 247 246),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: rotateY(-10deg) rotateX(5deg);
  transform-style: preserve-3d;
  animation: floatingCore 5s ease-in-out infinite;
  width: 100%;
}

@keyframes floatingCore {
  0%,
  100% {
    transform: rotateY(-10deg) rotateX(5deg) translateY(0);
  }

  50% {
    transform: rotateY(-5deg) rotateX(8deg) translateY(-12px);
  }
}

.core-glow {
  position: absolute;

  width: 220px;

  height: 220px;

  left: 50%;

  top: 50%;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background: rgba(0, 151, 165, 0.14);

  filter: blur(35px);
}

.core-inner {
  position: absolute;
  inset: 25px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(0, 151, 165, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.core-inner img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 10px;
}

/* =========================================================
           FLOATING INFORMATION CARDS
        ========================================================= */

.floating-card {
  position: absolute;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 13px 17px;

  background: rgba(255, 255, 255, 0.82);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.95);

  border-radius: 14px;

  box-shadow: 0 18px 40px rgba(0, 80, 90, 0.1);

  z-index: 5;

  animation: cardFloat 4s ease-in-out infinite;
}

.floating-card-icon {
  width: 38px;

  height: 38px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 10px;

  color: var(--teal);

  background: var(--teal-light);

  font-size: 17px;
}

.floating-card strong {
  display: block;

  color: var(--dark);

  font-size: 12px;

  margin-bottom: 3px;
}

.floating-card small {
  color: #777;

  font-size: 10px;
}

.card-one {
  top: 88px;
  right: -33px;
  animation-delay: -0.8s;
}

.card-two {
  left: 0;

  bottom: 80px;

  animation-delay: -1.7s;
}

.card-three {
  right: -20px;

  bottom: 40px;

  animation-delay: -2.5s;
}

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

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

/* =========================================================
           REGULATORY PROOF RIBBON
        ========================================================= */

.regulatory-ribbon {
  position: relative;

  z-index: 5;

  width: 100%;

  padding: 25px 6%;

  background: #ffffff;

  border-top: 1px solid rgba(88, 89, 91, 0.08);

  border-bottom: 1px solid rgba(88, 89, 91, 0.08);

  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.025);
}

.regulatory-container {
  max-width: 1280px;

  margin: 0 auto;

  display: flex;

  align-items: center;

  gap: 24px;
}

.regulatory-label {
  flex-shrink: 0;

  color: var(--teal);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.regulatory-badges {
  display: flex;

  align-items: center;

  justify-content: space-between;

  width: 100%;

  gap: 10px;
}

.regulatory-badge {
  min-width: 92px;

  padding: 10px 13px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #626466;

  background: #f8fafa;

  border: 1px solid rgba(88, 89, 91, 0.1);

  border-radius: 9px;

  font-size: 11px;

  font-weight: 700;

  white-space: nowrap;

  transition: 0.3s ease;
}

.regulatory-badge:hover {
  color: var(--teal);

  border-color: rgba(0, 151, 165, 0.3);

  background: var(--teal-light);

  transform: translateY(-3px);

  box-shadow: 0 8px 20px rgba(0, 151, 165, 0.08);
}


@keyframes mobileMenuOpen {
  from {
    opacity: 0;

    transform: translateY(-8px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/* -------------------------------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx----------------------------------- */

/* =========================================================
   SECTION 2 — PROVEN CRO EXCELLENCE
========================================================= */

.excellence-section {
  position: relative;

  padding: 120px 6% 70px;

  overflow: hidden;

  /* background:
                linear-gradient(135deg,
                    #f7fbfb 0%,
                    #ffffff 48%,
                    #eef9fa 100%); */
}

/* =========================================================
   BACKGROUND 3D GLOW
========================================================= */

.excellence-glow {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(5px);

  opacity: 0.55;
}

.excellence-glow-one {
  width: 430px;
  height: 430px;

  top: -240px;
  right: -100px;

  background: radial-gradient(
    circle,
    rgba(0, 151, 165, 0.16),
    rgba(0, 151, 165, 0)
  );

  animation: excellenceGlowOne 8s ease-in-out infinite;
}

.excellence-glow-two {
  width: 350px;
  height: 350px;

  bottom: -200px;
  left: -100px;

  background: radial-gradient(
    circle,
    rgba(88, 89, 91, 0.09),
    rgba(88, 89, 91, 0)
  );

  animation: excellenceGlowTwo 9s ease-in-out infinite;
}

@keyframes excellenceGlowOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-30px, 25px, 0) scale(1.08);
  }
}

@keyframes excellenceGlowTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(25px, -20px, 0) scale(1.1);
  }
}

/* =========================================================
   CONTAINER
========================================================= */

.excellence-container {
  position: relative;

  z-index: 2;

  width: min(1280px, 100%);

  margin: 0 auto;
}

/* =========================================================
   HEADING
========================================================= */

.excellence-heading {
  max-width: 700px;

  margin: 0 auto 65px;

  text-align: center;
}

.section-kicker {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 18px;

  color: var(--teal);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}

.kicker-line {
  width: 24px;

  height: 1px;

  background: var(--teal);

  opacity: 0.55;
}

/* =========================================================
   COUNTER GRID
========================================================= */

.counter-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 18px;
}

/* =========================================================
   COUNTER CARD
========================================================= */

.counter-card {
  position: relative;

  min-height: 230px;

  padding: 35px 28px;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.76);

  border: 1px solid rgba(0, 151, 165, 0.1);

  border-radius: 22px;

  box-shadow: 0 15px 45px rgba(0, 70, 80, 0.055);

  backdrop-filter: blur(12px);

  -webkit-backdrop-filter: blur(12px);

  transform-style: preserve-3d;

  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

/* TOP TEAL LINE */

.counter-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2px;
  width: 100%;
  height: 3px;
  border-radius: 0 0 10px 10px;
  background: var(--teal);
  transition: width 0.4s ease;
}

.counter-card:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);

  border-color: rgba(0, 151, 165, 0.22);

  box-shadow: 0 28px 65px rgba(0, 80, 90, 0.12);
}

/* =========================================================
   COUNTER NUMBER
========================================================= */

.counter-number {
  display: flex;
  align-items: baseline;
  margin-bottom: 16px;
  color: var(--dark);
  font-size: clamp(48px, 4vw, 65px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 400;
  font-size: 50px;
}

.counter {
  display: inline-block;
}

.counter-symbol {
  margin-left: 3px;

  color: var(--teal);

  font-size: 34px;

  font-weight: 750;
}

/* =========================================================
   CARD LINE
========================================================= */

.counter-line {
  width: 35px;

  height: 2px;

  margin-bottom: 20px;

  border-radius: 20px;

  background: var(--teal);

  opacity: 0.65;
}

/* =========================================================
   CARD CONTENT
========================================================= */

.counter-card h3 {
  margin: 0 0 10px;

  color: var(--charcoal);

  font-size: 17px;

  line-height: 1.35;

  font-weight: 750;
}

.counter-card p {
  max-width: 230px;

  margin: 0;

  color: #7a7c7e;

  font-size: 12px;

  line-height: 1.65;
}

/* =========================================================
   WATERMARK NUMBER
========================================================= */

.counter-watermark {
  position: absolute;

  right: -10px;

  bottom: -22px;

  color: rgb(0 151 165 / 10%);

  font-size: 120px;

  line-height: 1;

  font-weight: 900;

  letter-spacing: -0.08em;

  pointer-events: none;

  transition:
    color 0.4s ease,
    transform 0.4s ease;
}

.counter-card:hover .counter-watermark {
  transform: translateY(-5px);
}

/* =========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .counter-card,
  .excellence-glow,
  .counter-watermark {
    animation: none !important;

    transition: none !important;
  }
}

/* =========================================================
Responsive For Mobile
========================================================= */



/* ----------------------------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxx--------------------------------------- */

/* =========================================================
   SECTION 3 — ABOUT ORDOCLIN
========================================================= */

.about-ordoclin {
  position: relative;
  padding: 125px 6% 70px;
  overflow: hidden;
  /* background: linear-gradient(
    145deg,
    #008c93d6 0%,
    #ffffff 48%,
    #008c93bd 100%
  ); */
  /* background: radial-gradient(circle at 18% 35%, rgba(8, 166, 181, 0.12), transparent 35%), linear-gradient(110deg, #e3f4f8 0%, #cdecf0 55%, #dff1f5 100%); */
}

/* =========================================================
   BACKGROUND ORBS
========================================================= */

.about-bg-orb {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(10px);

  opacity: 0.65;
}

.about-bg-orb-one {
  width: 480px;
  height: 480px;

  top: -260px;
  left: -220px;

  background: radial-gradient(circle, rgba(0, 151, 165, 0.1), transparent 70%);

  animation: aboutOrbOne 10s ease-in-out infinite;
}

.about-bg-orb-two {
  width: 400px;
  height: 400px;

  right: -200px;
  bottom: -230px;

  background: radial-gradient(circle, rgba(0, 151, 165, 0.08), transparent 70%);

  animation: aboutOrbTwo 11s ease-in-out infinite;
}

@keyframes aboutOrbOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(45px, 35px, 0);
  }
}

@keyframes aboutOrbTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-35px, -30px, 0);
  }
}

/* =========================================================
   CONTAINER
========================================================= */
.about-container {
  position: relative;
  z-index: 2;
  width: min(1280px, 100%);
  margin: 0 auto;
  display: flex;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 90px;
}

/* =========================================================
   LEFT VISUAL
========================================================= */

.about-visual {
  position: relative;
  min-height: 490px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  max-width: 540px;
  width: 100%;
}

/* Background grid */

.about-visual-grid {
  position: absolute;

  width: 460px;

  height: 500px;

  opacity: 0.5;

  background-image:
    linear-gradient(rgba(0, 151, 165, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 151, 165, 0.06) 1px, transparent 1px);

  background-size: 35px 35px;

  mask-image: radial-gradient(ellipse, black 20%, transparent 75%);

  transform: perspective(600px) rotateX(10deg) rotateY(-12deg);
}

/* =========================================================
   EXPERIENCE CARD
========================================================= */

.experience-card {
  position: relative;

  /* width:
                    360px;

                height:
                    450px; */

  padding: 36px;

  overflow: hidden;

  border-radius: 32px;

  background: linear-gradient(145deg, #ffffff 0%, #edf9fa 100%);

  border: 1px solid rgba(0, 151, 165, 0.12);

  /* box-shadow:

                    0 35px 80px rgba(0, 75, 85, .13),

                    inset 0 1px 0 rgba(255, 255, 255, .9); */

  transform: rotateY(-10deg) rotateX(4deg);

  transform-style: preserve-3d;

  animation: experienceFloat 6s ease-in-out infinite;

  z-index: 3;
}

@keyframes experienceFloat {
  0%,
  100% {
    transform: rotateY(-10deg) rotateX(4deg) translateY(0);
  }

  50% {
    transform: rotateY(-5deg) rotateX(7deg) translateY(-12px);
  }
}

/* Card glow */

.experience-glow {
  position: absolute;

  width: 270px;

  height: 270px;

  right: -100px;

  bottom: -80px;

  border-radius: 50%;

  background: rgba(0, 151, 165, 0.13);

  filter: blur(30px);
}

/* Top label */

.experience-top {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  justify-content: space-between;

  color: var(--teal);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.15em;
}

.experience-dot {
  width: 8px;

  height: 8px;

  border-radius: 50%;

  background: var(--teal);

  box-shadow: 0 0 0 6px rgba(0, 151, 165, 0.09);

  animation: experiencePulse 2s infinite;
}

@keyframes experiencePulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(0, 151, 165, 0.08);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(0, 151, 165, 0.02);
  }
}

/* Number */

.experience-number {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: baseline;

  margin-top: 95px;
}

.experience-number strong {
  color: var(--dark);

  font-size: 112px;

  line-height: 0.8;

  font-weight: 800;

  letter-spacing: -0.08em;
}

.experience-number span {
  margin-left: 5px;

  color: var(--teal);

  font-size: 48px;

  font-weight: 750;
}

.experience-label {
  position: relative;

  z-index: 2;

  max-width: 230px;

  margin-top: 23px;

  color: var(--charcoal);

  font-size: 18px;

  line-height: 1.35;

  font-weight: 700;
}

.experience-line {
  width: 45px;

  height: 3px;

  margin: 25px 0 18px;

  border-radius: 20px;

  background: var(--teal);
}

.experience-description {
  position: relative;

  z-index: 2;

  max-width: 245px;

  color: #777;

  font-size: 12px;

  line-height: 1.7;
}

/* =========================================================
   DECORATIVE RINGS
========================================================= */

.experience-ring {
  position: absolute;

  border: 1px solid rgba(0, 151, 165, 0.12);

  border-radius: 50%;

  pointer-events: none;
}

.ring-one {
    width: 280px;
    height: 280px;
    right: -3px;
    top: 3px;
    animation: ringRotation 15s linear infinite;
}

.ring-two {
    width: 190px;
    height: 190px;
    right: 26px;
    top: 40px;
    border-color: rgba(88, 89, 91, 0.1);
    animation: ringRotation 11s linear infinite reverse;
}

.ring-three {
  width: 105px;

  height: 105px;

  right: -55px;

  top: 187px;

  background: rgba(0, 151, 165, 0.04);

  animation: ringRotation 8s linear infinite;
}

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

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

/* =========================================================
   FLOATING CAPABILITY CARDS
========================================================= */

.capability-card {
  position: absolute;

  z-index: 6;

  display: flex;

  align-items: center;

  gap: 11px;

  padding: 12px 15px;

  background: rgba(255, 255, 255, 0.88);

  backdrop-filter: blur(14px);

  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.95);

  border-radius: 13px;

  box-shadow: 0 15px 35px rgba(0, 70, 80, 0.1);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.capability-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 22px 45px rgba(0, 70, 80, 0.15);
}

.capability-icon {
  width: 34px;

  height: 34px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  border-radius: 9px;

  color: var(--teal);

  background: var(--teal-light);

  font-size: 16px;

  font-weight: 700;
}

.capability-card strong {
  display: block;

  color: var(--dark);

  font-size: 11px;

  margin-bottom: 3px;
}

.capability-card small {
  display: block;

  color: #858789;

  font-size: 9px;
}

.capability-one {
  top: 75px;

  left: -5px;

  animation: capabilityFloat 4.5s ease-in-out infinite;
}

.capability-two {
  top: 180px;

  right: -35px;

  animation: capabilityFloat 5s ease-in-out -0.8s infinite;
}

.capability-three {
  bottom: 130px;

  left: -40px;

  animation: capabilityFloat 5.5s ease-in-out -1.5s infinite;
}

.capability-four {
  bottom: 55px;

  right: -5px;

  animation: capabilityFloat 4.8s ease-in-out -2s infinite;
}

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

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

/* =========================================================
   RIGHT CONTENT
========================================================= */

.about-content {
  max-width: 650px;
}

/* Eyebrow */

.about-eyebrow {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 19px;

  color: var(--teal);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}

.about-eyebrow span {
  width: 28px;

  height: 2px;

  border-radius: 20px;

  background: var(--teal);
}

/* Heading */

.about-title span {
  color: var(--teal);
}

/* =========================================================
   REGULATORY MARKERS
========================================================= */

.about-regulatory {
  margin-top: 29px;

  padding: 19px 0;

  border-top: 1px solid rgba(88, 89, 91, 0.1);

  border-bottom: 1px solid rgba(88, 89, 91, 0.1);
}

.regulatory-label-small {
  display: block;

  margin-bottom: 12px;

  color: #858789;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.13em;
}

.regulatory-markers {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;
}

.regulatory-markers span {
  padding: 7px 11px;

  color: #646668;

  background: #f5fafa;

  border: 1px solid rgba(0, 151, 165, 0.09);

  border-radius: 7px;

  font-size: 10px;

  font-weight: 700;

  transition: 0.3s ease;
}

.regulatory-markers span:hover {
  color: var(--teal);

  background: var(--teal-light);

  border-color: rgba(0, 151, 165, 0.25);

  transform: translateY(-2px);
}

/* =========================================================
   BUTTON
========================================================= */

.about-button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 6px;
  padding: 0 21px;
  min-height: 50px;
  color: white;
  background: var(--teal);
  /* background: #58595b; */
  border-radius: 11px;
  font-size: 16px;
  font-weight: 700;

  transition: 0.35s ease;
}

.about-button:hover {
  background: var(--teal-dark);

  transform: translateY(-3px);

  box-shadow: 0 16px 32px rgba(0, 151, 165, 0.25);
}

.button-arrow {
  font-size: 18px;

  transition: transform 0.3s ease;
}

.about-button:hover .button-arrow {
  transform: translateX(5px);
}


/* =========================================================
   SECTION 4 — SERVICES
========================================================= */

.services-section {
    position: relative;
    padding: 125px 6% 70px;
    overflow: hidden;
    /* background: linear-gradient(145deg,
                        #f5fbfb 0%,
                        #ffffff 48%,
                        #f2f9f9 100%); */
}
/* =========================================================
   BACKGROUND
========================================================= */

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 151, 165, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 151, 165, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.45;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

.services-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
}

.services-circle-one {
  width: 500px;
  height: 500px;
  top: -280px;
  right: -180px;
  /* background:
                    radial-gradient(circle,
                        rgba(0, 151, 165, .12),
                        transparent 70%); */
  animation: serviceBackgroundFloat 10s ease-in-out infinite;
}

.services-circle-two {
  width: 420px;
  height: 420px;
  bottom: -250px;
  left: -170px;
  /* background:
                    radial-gradient(circle,
                        rgba(88, 89, 91, .07),
                        transparent 70%); */
  animation: serviceBackgroundFloat 12s ease-in-out -3s infinite;
}

@keyframes serviceBackgroundFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(30px, -20px, 0) scale(1.08);
  }
}

/* =========================================================
   CONTAINER
========================================================= */

.services-container {
  position: relative;
  z-index: 2;
  width:min(1320px, 100%);
  margin: 0 auto;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.services-heading {
  max-width: 760px;
  margin: 0 auto 65px;
  text-align: center;
}

.services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-line {
  width: 25px;
  height: 1px;
  background: var(--teal);
  opacity: 0.6;
}

.services-heading p {
  margin: 0;
  color: #6f7173;
  font-size: 17px;
  line-height: 1.6;
}

/* =========================================================
   SERVICE GRID
========================================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
  position: relative;
  /* min-height: 610px; */
  padding: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgb(0 151 165 / 24%);
  border-radius: 28px;
  /* box-shadow: 0 20px 55px rgba(0, 70, 80, 0.065); */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transform-style: preserve-3d;
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}
.service-card:hover {
  border-color: rgba(0, 151, 165, 0.25);
  box-shadow: 0 35px 75px rgba(0, 70, 80, 0.13);
}

/* =========================================================
   CARD TOP
========================================================= */

.service-card-top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-number {
  color: rgba(0, 151, 165, 0.35);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-category {
  padding: 7px 10px;
  color: var(--teal);
  background: var(--teal-light);
  border-radius: 7px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

/* =========================================================
   SERVICE 3D VISUAL
========================================================= */

.service-visual {
  position: relative;
  width: 210px;
  height: 145px;
  margin: 0px auto 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 700px;
}

/* Orbit */

.service-orbit {
    position: absolute;
    border: 1px solid rgb(0 151 165 / 49%);
    border-radius: 50%;
    transform: rotateX(68deg) rotateZ(20deg);
    animation: serviceOrbit 12s linear infinite;
}

.service-orbit-one {
  width: 180px;
  height: 180px;
}

.service-orbit-two {
    width: 135px;
    height: 135px;
    border-color: rgb(88 89 91 / 57%);
    transform: rotateX(68deg) rotateZ(-25deg);
    animation-duration: 9s;
    animation-direction: reverse;
}

@keyframes serviceOrbit {
  from {
    transform: rotateX(68deg) rotateZ(0);
  }

  to {
    transform: rotateX(68deg) rotateZ(360deg);
  }
}

/* Orbit dots */

.service-orbit::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: -4px;
  left: 50%;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 15px rgba(0, 151, 165, 0.35);
}

/* Central core */

.service-core {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background: linear-gradient(145deg, #ffffff, #e8f7f8);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 45px rgba(0, 100, 110, 0.14);
  transform: rotateX(8deg) rotateY(-8deg) translateZ(20px);
  transition: transform 0.5s ease;
}

.service-card:hover .service-core {
  transform: rotateX(12deg) rotateY(-12deg) translateZ(38px) scale(1.05);
}

.core-symbol {
  color: var(--teal);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

/* =========================================================
   SERVICE CONTENT
========================================================= */

.service-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-content h3 {
  margin: 0 0 16px;
  color: var(--dark);
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 750;
}

.service-content p {
  margin: 0 0 23px;
  color: #707274;
  font-size: 15px;
  line-height: 1.5;
}

/* =========================================================
   CAPABILITIES
========================================================= */

.capabilities-title {
  margin-bottom: 20px;
  color: #76797c;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.capability-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.capability-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 650;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.capability-list li span {
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  background: var(--teal-light);
  border-radius: 6px;
  font-size: 17px;
  font-weight: 700;
}

.service-card:hover .capability-list li {
  transform: translateX(4px);
}

/* =========================================================
   SERVICE LINK
========================================================= */

.service-link {
  margin-top: 22px;
  border-radius: 15px;
  background: #0097a5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: start;
  /* margin-top: auto; */
  /* padding-top: 24px; */
  color: white;
  font-size: 15px;
  font-weight: 750;
  transition:
    gap 0.3s ease,
    color 0.3s ease;
  padding: 15px;
}

.service-link span {
  font-size: 17px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.service-link:hover {
  gap: 14px;
}

.service-link:hover span {
  transform: translateX(3px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1400px) {
  .regulatory-container {
    /* max-width: 775px; */
    /* margin: 0 auto; */
    display: inline;
    /* align-items: center; */
    gap: 24px;
  }
  .regulatory-label {
    margin-bottom: 20px;
    text-align: center;
  }
  .excellence-section {
    padding: 100px 6% 50px;
  }
  .about-ordoclin {
    padding: 100px 6% 50px;
  }
  .heading {
    margin: 0 0 5px;
    font-size: 40px;
  }
  .tagline {
    font-size: 15px;
  }
}


/* =========================================================
           RESPONSIVE
        ========================================================= */

@media (max-width: 1200px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;

    gap: 35px;
  }

  .hero-title {
    font-size: clamp(46px, 5vw, 65px);
  }

  .hero-visual {
    transform: scale(0.9);
  }

  .regulatory-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-three {
    grid-column: 1 / -1;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 991px) {
  .site-header {
    top: 10px;

    width: calc(100% - 24px);

    border-radius: 15px;
  }

  .nav-container {
    min-height: 70px;

    padding: 0 16px;
  }

  .logo img {
    width: 140px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav.active {
    display: block;

    animation: mobileMenuOpen 0.35s ease;
  }

  .hero {
    min-height: auto;

    padding: 145px 6% 65px;
  }

  .hero-container {
    grid-template-columns: 1fr;

    text-align: center;

    gap: 30px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* padding-bottom: 30px; */
    order: 2;
  }

  .research-core {
    height: 370px;
  }

  .hero-title {
    max-width: 650px;

    font-size: clamp(44px, 9vw, 62px);
  }

  .hero-description {
    font-size: 16px;
    max-width: 580px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 470px;
    transform: scale(0.88);
  }

  .regulatory-ribbon {
    padding: 22px 6%;
  }

  .regulatory-badges {
    width: calc(100vw - 12%);
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 5px;
    scrollbar-width: thin;
  }

  .regulatory-badge {
    flex-shrink: 0;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .counter-card {
    min-height: 210px;
  }
  .counter-watermark {
    right: 6px;
    bottom: -11px;
    font-size: 75px;
  }
  .about-visual {
    transform: scale(0.88);

    margin-left: -25px;
  }

  .about-title {
    font-size: 46px;
  }

   .about-container {
    grid-template-columns: 1fr;
    gap: 25px;
    flex-direction: column-reverse;
    display: block;
  }

  .about-visual {
    order: 2;
    min-height: 520px;
    transform: scale(0.82);
    margin-top: -15px;
    margin-left: 0;
  }

  .about-content {
    order: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }

  .about-eyebrow {
    justify-content: center;
  }

  .about-title {
    font-size: clamp(38px, 8vw, 52px);
  }

  .about-divider {
    margin: 24px auto;
  }

  .about-regulatory {
    text-align: left;
  }

  .about-button {
    margin-top: 25px;
  }
  .about-ordoclin {
    padding: 30px 20px;
}
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {
  .excellence-section {
    padding: 65px 20px 50px;
}

  .excellence-heading {
    margin-bottom: 42px;
  }

  .excellence-heading p {
    font-size: 15px;
  }

  .counter-card {
    min-height: 245px;
    padding: 30px 25px;
  }

  .counter-number {
    font-size: 54px;
  }

  .counter-symbol {
    font-size: 29px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .services-section {
    padding: 85px 20px 90px;
  }

  .services-heading {
    margin-bottom: 42px;
  }

  .services-heading p {
    font-size: 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .service-card,
  .service-card-three {
    grid-column: auto;

    max-width: none;

    min-height: auto;

    padding: 25px;

    margin: 0;
  }

  .service-visual {
    width: 190px;

    height: 115px;
  }

  .service-content h3 {
    font-size: 24px;
  }

  .service-content p {
    font-size: 13px;

    line-height: 1.7;
  }

  .services-section {
    padding: 50px 17px 40px;
}

.service-visual {
    margin-top: 0px;

    margin-bottom: 0;
  }

  .service-card {
    padding: 0 22px;
    border-radius: 22px;
}
  
.service-content {
    margin: 10px 0 20px;
}
}


/* =========================================================
   RESPONSIVE — Small MOBILE
========================================================= */
@media (max-width: 576px) {
  .hero {
    padding: 130px 20px 45px;
  }

  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.09em;
  }

  .hero-title {
    font-size: 42px;
    line-height: 1.05;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-primary,
  .hero-secondary {
    min-height: 45px;
    font-size: 13px;
  }

  .hero-visual {
    min-height: 390px;
    transform: scale(0.68);
    margin-top: -35px;
    margin-bottom: -35px;
  }

  .floating-card {
    padding: 10px 12px;
  }

  .card-one {
    right: -10px;
    top: 34px;
  }

  .card-two {
    left: -10px;
  }

  .card-three {
    display: none;
  }

  .regulatory-label {
    font-size: 9px;
  }

   .counter-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .counter-card {
    min-height: 140px;
  }
  .counter-watermark {
    font-size: 60px;
  }
  .counter-number {
    font-size: 35px;
  }
  .counter-card h3 {
    font-size: 14px;
    line-height: 1.1;
  }
  .excellence-heading {
    margin: 0 auto 46px;
  }

  .about-title {
    font-size: 38px;

    line-height: 1.08;
  }

  .about-tagline {
    font-size: 15px;
  }

  .about-description {
    font-size: 14px;

    line-height: 1.75;
  }

  .about-visual {
    min-height: 410px;

    transform: scale(0.8);

    margin-top: -40px;

    margin-bottom: -45px;
  }

  .capability-one {
    left: -30px;
  }

  .capability-two {
    right: -45px;
  }

  .capability-three {
    left: -45px;
  }

  .capability-four {
    right: -30px;
  }

  .regulatory-markers {
    gap: 6px;
  }
}

@media (max-width: 480px) {


  .service-content h3 {
    font-size: 22px;
  }

  .capability-list li {
    font-size: 10.5px;
  }
}



/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .experience-card,
  .capability-card,
  .experience-ring,
  .about-bg-orb,
  .experience-dot {
    animation: none !important;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .service-orbit,
  .services-bg-circle {
    animation: none !important;
  }
}

/* =========================================================
   SECTION 5 — WORKFLOW
========================================================= */
/* =========================================================
   SECTION 5 — WORKFLOW
========================================================= */
.workflow-heading{
  
    max-width: 900px;
    margin: 0 auto 45px;
    text-align: center;

}

.workflow-section {
    position: relative;
    padding: 110px 6% 0px;
    overflow: hidden;
    background: #ffffff;
}



.workflow-bg {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(8px);
}

.workflow-bg-one {
  width: 500px;

  height: 500px;

  top: -300px;

  right: -180px;

  background: radial-gradient(circle, rgba(0, 151, 165, 0.1), transparent 70%);

  animation: workflowOrb 11s ease-in-out infinite;
}

.workflow-bg-two {
  width: 420px;

  height: 420px;

  bottom: -260px;

  left: -170px;

  background: radial-gradient(circle, rgba(88, 89, 91, 0.06), transparent 70%);

  animation: workflowOrb 13s ease-in-out -3s infinite;
}

@keyframes workflowOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(30px, -20px, 0) scale(1.08);
  }
}



/* =========================================================
   WORKFLOW SWITCHER
========================================================= */

.workflow-switcher {
  width: fit-content;

  margin: 0 auto 70px;

  padding: 6px;

  display: flex;

  gap: 4px;

  background: #f2f8f8;

  border: 1px solid rgba(0, 151, 165, 0.09);

  border-radius: 14px;

  box-shadow: 0 8px 25px rgba(0, 70, 80, 0.05);
}

.workflow-tab {
  min-height: 48px;

  padding: 0 22px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  border: none;

  border-radius: 10px;

  color: #737577;

  background: transparent;

  font-size: 15px;

  font-weight: 700;

  cursor: pointer;

  transition: 0.35s ease;
}

.workflow-tab:hover {
  color: var(--teal);
}

.workflow-tab.active {
  color: white;

  background: var(--teal);

  box-shadow: 0 8px 20px rgba(0, 151, 165, 0.2);
}

.tab-icon {
  font-size: 15px;

  line-height: 1;
}

/* =========================================================
   WORKFLOW PANEL
========================================================= */

.workflow-panel {
  position: relative;

  display: none;
}

.workflow-panel.active {
  display: block;

  animation: workflowPanelIn 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes workflowPanelIn {
  from {
    opacity: 0;

    transform: translateY(20px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/* =========================================================
   CENTRAL TIMELINE
========================================================= */

.workflow-track {
  position: absolute;

  top: 35px;

  bottom: 35px;

  left: 50%;

  width: 1px;

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 151, 165, 0.25) 5%,
    rgba(0, 151, 165, 0.25) 95%,
    transparent
  );

  transform: translateX(-50%);
}

/* =========================================================
   WORKFLOW STEP
========================================================= */

.workflow-step {
  position: relative;

  width: 50%;

  min-height: 145px;

  display: flex;

  align-items: flex-start;

  padding-bottom: 30px;
}

.workflow-step:nth-child(odd) {
  padding-right: 70px;

  justify-content: flex-end;

  text-align: right;
}

.workflow-step:nth-child(even) {
  margin-left: 50%;

  padding-left: 70px;

  justify-content: flex-start;

  text-align: left;
}

/* =========================================================
   NODE
========================================================= */

.workflow-node {
  position: absolute;

  top: 4px;

  left: 100%;

  width: 54px;

  height: 54px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(0, 151, 165, 0.22);

  border-radius: 50%;

  background: white;

  transform: translateX(-50%);

  box-shadow: 0 8px 25px rgba(0, 70, 80, 0.08);

  z-index: 5;

  transition: 0.4s ease;
}

.workflow-step:nth-child(even) .workflow-node {
  left: 0;

  transform: translateX(-50%);
}

.workflow-node::before {
  content: "";

  position: absolute;

  inset: 5px;

  border-radius: 50%;

  transition: 0.4s ease;
}

.workflow-node span {
  position: relative;
  z-index: 2;
  color: var(--teal);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* =========================================================
   STEP HOVER
========================================================= */

.workflow-step:hover .workflow-node {
  transform: translateX(-50%) scale(1.12);

  border-color: var(--teal);

  box-shadow: 0 12px 35px rgba(0, 151, 165, 0.18);
}

.workflow-step:hover .workflow-node::before {
  background: var(--teal);
}

.workflow-step:hover .workflow-node span {
  color: white;
}

/* =========================================================
   STEP CONTENT
========================================================= */

.workflow-step-content {
  max-width: 400px;

  padding: 3px 0;
}

.step-category {
  display: inline-block;

  margin-bottom: 8px;

  color: var(--teal);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 0.13em;
}

.workflow-step-content h3 {
  margin: 0 0 5px;
  color: var(--dark);
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: 750;
  transition: color 0.3s ease;
}

.workflow-step:hover .workflow-step-content h3 {
  color: var(--teal);
}

.workflow-step-content p {
  margin: 0;
  color: #77797b;
  font-size: 15px;
  line-height: 1.5;
}

/* =========================================================
   CONNECTING PULSE
========================================================= */

@keyframes workflowPulse {
  0% {
    transform: scale(0.5);

    opacity: 0.5;
  }

  100% {
    transform: scale(3);

    opacity: 0;
  }
}

/* =========================================================
   BOTTOM CTA
========================================================= */

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 767px) {
  .workflow-section {
    padding: 50px 0 20px;
}

  .workflow-switcher {
    margin-bottom: 50px;
  }

  .workflow-tab {
    padding: 0 16px;

    font-size: 11px;
  }

  .workflow-step:nth-child(odd) {
    padding-right: 50px;
  }

  .workflow-step:nth-child(even) {
    padding-left: 50px;
  }

 
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  /* Mobile switcher */

  .workflow-switcher {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    margin-bottom: 42px;
  }

  .workflow-tab {
    min-height: 48px;

    padding: 0 8px;

    font-size: 10px;

    text-align: center;
  }

  .tab-icon {
    display: none;
  }

  /* Mobile timeline */

  .workflow-track {
    left: 25px;

    transform: none;

    top: 30px;

    bottom: 30px;
  }

.workflow-step, .workflow-step:nth-child(odd), .workflow-step:nth-child(even) {
    width: 100%;
    min-height: 85px;
    margin: 0;
    padding: 0 0 20px 70px;
    display: block;
    text-align: left;
}
.workflow-node, .workflow-step:nth-child(even) .workflow-node {
    left: 25px;
    top: 0;
    width: 35px;
    height: 35px;
    transform: translateX(-50%);
}
  .workflow-step:hover .workflow-node {
    transform: translateX(-50%) scale(1.08);
  }

  .workflow-step-content {
    max-width: none;

    padding: 0;
  }

  .workflow-step-content h3 {
    font-size: 14px;
}

  .workflow-step-content p {
    font-size: 11px;

    line-height: 1.5;
  }
  .workflow-node span {
    font-size: 12px;
}
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 576px) {
  .oc-studytypes-badge small {
    /* font-size: 7px; */
    padding: 20px;
}

  .workflow-step {
    min-height: 165px;
  }

 
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .workflow-bg,
  .workflow-node::after {
    animation: none !important;
  }
}

/* =========================================================
   SECTION 6 — CAPABILITIES
========================================================= */

.capabilities-section {
  position: relative;

  padding: 130px 6% 135px;

  overflow: hidden;

  background: #f7fbfb;
}

/* =========================================================
   BACKGROUND
========================================================= */

.cap-bg-grid {
  position: absolute;

  inset: 0;

  opacity: 0.4;

  background-image:
    linear-gradient(rgba(0, 151, 165, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 151, 165, 0.04) 1px, transparent 1px);

  background-size: 55px 55px;

  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

.cap-bg-orb {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(5px);
}

.cap-orb-one {
  width: 520px;
  height: 520px;

  top: -300px;
  left: -200px;

  background: radial-gradient(circle, rgba(0, 151, 165, 0.11), transparent 70%);

  animation: capabilityOrb 12s ease-in-out infinite;
}

.cap-orb-two {
  width: 460px;
  height: 460px;

  right: -200px;
  bottom: -250px;

  background: radial-gradient(circle, rgba(88, 89, 91, 0.07), transparent 70%);

  animation: capabilityOrb 14s ease-in-out -3s infinite;
}

@keyframes capabilityOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(30px, -25px, 0) scale(1.08);
  }
}

/* =========================================================
   CONTAINER
========================================================= */

.capabilities-container {
  position: relative;

  z-index: 2;

  width: min(1320px, 100%);

  margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================= */

.capabilities-heading {
  max-width: 780px;

  margin: 0 auto 65px;

  text-align: center;
}

.capabilities-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 18px;

  color: var(--teal);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}

.capabilities-eyebrow span {
  width: 25px;

  height: 1px;

  background: var(--teal);

  opacity: 0.6;
}

.capabilities-heading p {
  margin: 0;

  color: #717375;

  font-size: 17px;

  line-height: 1.6;
}

/* =========================================================
   BENTO GRID
========================================================= */

.capabilities-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  grid-template-rows: auto auto;

  gap: 18px;
}

/* =========================================================
   CAPABILITY BOX
========================================================= */

.capability-box {
  position: relative;

  min-height: 390px;

  padding: 27px;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.82);

  border: 1px solid rgba(0, 151, 165, 0.09);

  border-radius: 25px;

  box-shadow: 0 16px 45px rgba(0, 70, 80, 0.055);

  backdrop-filter: blur(12px);

  -webkit-backdrop-filter: blur(12px);

  transform-style: preserve-3d;

  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.capability-box:hover {
  transform: translateY(-9px);

  border-color: rgba(0, 151, 165, 0.22);

  box-shadow: 0 30px 65px rgba(0, 70, 80, 0.12);
}

/* =========================================================
   FEATURED CARD
========================================================= */

.capability-featured {
  grid-column: span 2;

  min-height: 430px;

  display: grid;

  grid-template-columns: 1fr 0.8fr;

  align-items: center;

  padding: 32px;
}

.capability-featured::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 4px;

  background: linear-gradient(90deg, var(--teal), rgba(0, 151, 165, 0.05));
}

/* =========================================================
   CARD TOP
========================================================= */

.capability-box-top {
  position: absolute;

  top: 25px;

  left: 27px;

  right: 27px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  z-index: 5;
}

.capability-number {
  color: rgba(0, 151, 165, 0.4);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.08em;
}

.capability-tag {
  padding: 7px 10px;

  color: var(--teal);

  background: var(--teal-light);

  border-radius: 7px;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 0.11em;
}

.capability-icon {
  width: 33px;

  height: 33px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--teal);

  background: var(--teal-light);

  border-radius: 9px;

  font-size: 15px;

  font-weight: 800;
}

/* =========================================================
   FEATURED 3D VISUAL
========================================================= */

.capability-visual {
  position: relative;

  height: 280px;

  display: flex;

  align-items: center;

  justify-content: center;

  perspective: 900px;
}

.capability-orbit {
  position: absolute;

  border: 1px solid rgba(0, 151, 165, 0.14);

  border-radius: 50%;

  transform: rotateX(65deg) rotateZ(15deg);

  animation: capabilityOrbit 14s linear infinite;
}

.orbit-a {
  width: 240px;

  height: 240px;
}

.orbit-b {
  width: 175px;

  height: 175px;

  border-color: rgba(88, 89, 91, 0.1);

  animation-duration: 10s;

  animation-direction: reverse;
}

.capability-orbit::before {
  content: "";

  position: absolute;

  top: -4px;

  left: 50%;

  width: 8px;

  height: 8px;

  border-radius: 50%;

  background: var(--teal);

  box-shadow: 0 0 18px rgba(0, 151, 165, 0.35);
}

@keyframes capabilityOrbit {
  from {
    transform: rotateX(65deg) rotateZ(0);
  }

  to {
    transform: rotateX(65deg) rotateZ(360deg);
  }
}

/* Core */

.capability-core {
  position: relative;

  width: 115px;

  height: 115px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 34px;

  background: linear-gradient(145deg, #ffffff, #e6f7f8);

  border: 1px solid rgba(255, 255, 255, 0.9);

  box-shadow: 0 25px 55px rgba(0, 70, 80, 0.15);

  transform: rotateX(8deg) rotateY(-8deg) translateZ(30px);

  animation: coreFloat 5s ease-in-out infinite;
}

@keyframes coreFloat {
  0%,
  100% {
    transform: rotateX(8deg) rotateY(-8deg) translateZ(30px) translateY(0);
  }

  50% {
    transform: rotateX(12deg) rotateY(-5deg) translateZ(40px) translateY(-8px);
  }
}

.core-center {
  width: 48px;

  height: 48px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: white;

  background: var(--teal);

  border-radius: 15px;

  font-size: 24px;

  font-weight: 700;

  box-shadow: 0 10px 25px rgba(0, 151, 165, 0.25);
}

/* Nodes */

.core-node {
  position: absolute;

  width: 10px;

  height: 10px;

  border-radius: 50%;

  background: var(--teal);

  box-shadow: 0 0 15px rgba(0, 151, 165, 0.35);
}

.node-one {
  top: 13px;

  left: 50%;
}

.node-two {
  right: 13px;

  top: 50%;
}

.node-three {
  bottom: 13px;

  left: 50%;
}

.node-four {
  left: 13px;

  top: 50%;
}

/* =========================================================
   CONTENT
========================================================= */

.capability-box-content {
  position: relative;

  z-index: 3;
}

.capability-box-content h3 {
  margin: 0 0 14px;

  color: var(--dark);

  font-size: 21px;

  line-height: 1.25;

  letter-spacing: -0.025em;

  font-weight: 750;

  transition: color 0.3s ease;
}

.capability-box:hover .capability-box-content h3 {
  color: var(--teal);
}

.capability-box-content p {
  margin: 0;

  color: #737577;

  font-size: 14px;

  line-height: 1.75;
}

/* Featured content */

.capability-featured .capability-box-content {
  padding-top: 40px;
}

.capability-featured .capability-box-content h3 {
  font-size: 28px;
}

.capability-featured .capability-box-content p {
  max-width: 480px;
  font-size: 15px;
}

/* =========================================================
   SMALL CARD VISUALS
========================================================= */

.small-capability-visual {
  height: 115px;

  margin-top: 38px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.visual-ring {
  position: relative;

  width: 78px;

  height: 78px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(0, 151, 165, 0.18);

  border-radius: 50%;

  animation: smallVisualRotate 8s linear infinite;
}

.visual-ring::before {
  content: "";

  position: absolute;

  width: 58px;

  height: 58px;

  border: 1px dashed rgba(0, 151, 165, 0.2);

  border-radius: 50%;
}

.visual-ring-double {
  box-shadow:
    0 0 0 12px rgba(0, 151, 165, 0.025),
    0 0 0 24px rgba(0, 151, 165, 0.02);
}

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

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

.visual-symbol {
  position: absolute;

  color: var(--teal);

  font-size: 25px;

  font-weight: 700;
}

/* Lab bars */

.lab-bars {
  height: 85px;

  display: flex;

  align-items: flex-end;

  gap: 7px;
}

.lab-bars span {
  width: 12px;

  border-radius: 8px 8px 3px 3px;

  background: linear-gradient(to top, var(--teal), rgba(0, 151, 165, 0.15));

  animation: labBar 1.8s ease-in-out infinite;
}

.lab-bars span:nth-child(1) {
  height: 35%;
  animation-delay: -0.3s;
}

.lab-bars span:nth-child(2) {
  height: 60%;
  animation-delay: -0.5s;
}

.lab-bars span:nth-child(3) {
  height: 90%;
  animation-delay: -0.7s;
}

.lab-bars span:nth-child(4) {
  height: 68%;
  animation-delay: -0.9s;
}

.lab-bars span:nth-child(5) {
  height: 45%;
  animation-delay: -1.1s;
}

@keyframes labBar {
  0%,
  100% {
    transform: scaleY(0.75);
  }

  50% {
    transform: scaleY(1);
  }
}

/* =========================================================
   DEVICE VISUAL
========================================================= */

.device-shape {
  position: relative;

  width: 130px;

  height: 75px;

  border: 2px solid rgba(0, 151, 165, 0.35);

  border-radius: 18px;

  transform: perspective(400px) rotateY(-15deg);

  box-shadow: 12px 15px 30px rgba(0, 70, 80, 0.08);

  animation: deviceFloat 4s ease-in-out infinite;
}

.device-shape::before {
  content: "";

  position: absolute;

  left: -12px;

  top: 20px;

  width: 15px;

  height: 35px;

  border: 2px solid rgba(0, 151, 165, 0.25);

  border-right: none;

  border-radius: 8px 0 0 8px;
}

.device-screen {
  position: absolute;

  inset: 13px;

  border-radius: 8px;

  background: linear-gradient(135deg, #e7f7f8, #ffffff);
}

.device-screen::after {
  content: "";

  position: absolute;

  left: 12px;

  right: 12px;

  top: 50%;

  height: 2px;

  background: var(--teal);

  box-shadow:
    12px -8px 0 rgba(0, 151, 165, 0.35),
    24px 5px 0 rgba(0, 151, 165, 0.25),
    36px -6px 0 rgba(0, 151, 165, 0.4);
}

@keyframes deviceFloat {
  0%,
  100% {
    transform: perspective(400px) rotateY(-15deg) translateY(0);
  }

  50% {
    transform: perspective(400px) rotateY(-10deg) translateY(-7px);
  }
}

/* =========================================================
   DIGITAL VISUAL
========================================================= */

.digital-visual {
  position: relative;

  height: 115px;

  margin-top: 38px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.digital-circle {
  position: absolute;

  border: 1px solid rgba(0, 151, 165, 0.16);

  border-radius: 50%;

  animation: digitalRotate 12s linear infinite;
}

.circle-one {
  width: 100px;

  height: 100px;
}

.circle-two {
  width: 72px;

  height: 72px;

  border-style: dashed;

  animation-duration: 8s;

  animation-direction: reverse;
}

.digital-center {
  position: relative;

  z-index: 2;

  width: 68px;

  height: 68px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  color: var(--teal);

  background: #ffffff;

  border: 1px solid rgba(0, 151, 165, 0.12);

  border-radius: 18px;

  box-shadow: 0 15px 35px rgba(0, 70, 80, 0.1);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 0.08em;
}

.digital-center span {
  font-size: 21px;

  line-height: 1;

  letter-spacing: -0.04em;
}

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

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

/* =========================================================
   WATERMARK
========================================================= */

.capability-box::after {
  content: "";

  position: absolute;

  right: -15px;

  bottom: -40px;

  color: rgba(0, 151, 165, 0.035);

  font-size: 150px;

  line-height: 1;

  font-weight: 900;

  letter-spacing: -0.08em;

  pointer-events: none;

  transition: 0.4s ease;
}

.capability-box:hover::after {
  color: rgba(0, 151, 165, 0.065);

  transform: translateY(-8px);
}

/* =========================================================
   FOOTER
========================================================= */

.capabilities-footer {
  max-width: 950px;

  margin: 65px auto 0;

  display: flex;

  align-items: center;

  gap: 20px;

  text-align: center;
}

.cap-footer-line {
  flex: 1;

  height: 1px;

  background: rgba(0, 151, 165, 0.15);
}

.capabilities-footer span {
  color: #77797b;

  font-size: 11px;

  line-height: 1.5;
}

/* =========================================================
   TABLET
========================================================= */

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

  .capability-featured {
    grid-column: span 2;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
  .capabilities-section {
    padding: 85px 20px 90px;
  }

  .capabilities-heading {
    margin-bottom: 45px;
  }

  .capabilities-heading p {
    font-size: 15px;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .capability-featured {
    grid-column: auto;

    min-height: auto;

    display: flex;

    flex-direction: column;
  }

  .capability-box {
    min-height: 365px;

    padding: 25px;
  }

  .capability-featured .capability-box-content {
    padding-top: 0;
  }

  .capability-featured .capability-box-content h3 {
    font-size: 25px;
  }

  .capability-featured .capability-box-content p {
    font-size: 12px;
  }

  .capability-visual {
    width: 100%;

    height: 220px;
  }

  .capabilities-footer {
    margin-top: 45px;
  }

  .cap-footer-line {
    display: none;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {
  .capabilities-section {
    padding: 75px 17px 80px;
  }

  .capability-box {
    border-radius: 21px;

    min-height: 350px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .cap-bg-orb,
  .capability-orbit,
  .capability-core,
  .visual-ring,
  .lab-bars span,
  .device-shape,
  .digital-circle {
    animation: none !important;
  }
}

/* =========================================================
           SECTION 7 — FACILITIES
        ========================================================= */

.facilities-section {
    position: relative;
    padding: 90px 6% 90px;
    overflow: hidden;
    background: #f4fbfc;
}

/* =========================================================
           BACKGROUND
        ========================================================= */

.facilities-grid-bg {
  position: absolute;

  inset: 0;

  background-image:
    linear-gradient(rgba(0, 151, 165, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 151, 165, 0.035) 1px, transparent 1px);

  background-size: 60px 60px;

  opacity: 0.45;

  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 12%,
    black 88%,
    transparent
  );
}

.facility-orb {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(8px);
}

.facility-orb-one {
  width: 520px;

  height: 520px;

  top: -300px;

  right: -200px;

  background: radial-gradient(circle, rgba(0, 151, 165, 0.1), transparent 70%);

  animation: facilityOrbMove 12s ease-in-out infinite;
}

.facility-orb-two {
  width: 450px;

  height: 450px;

  bottom: -270px;

  left: -200px;

  background: radial-gradient(circle, rgba(88, 89, 91, 0.06), transparent 70%);

  animation: facilityOrbMove 14s ease-in-out -3s infinite;
}

@keyframes facilityOrbMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(30px, -25px, 0) scale(1.08);
  }
}



/* =========================================================
           HEADING
        ========================================================= */

.facilities-heading {
  max-width: 780px;

  margin: 0 auto 45px;

  text-align: center;
}

.facilities-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 18px;

  color: var(--teal);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.16em;
}

.facilities-eyebrow span {
  width: 25px;

  height: 1px;

  background: var(--teal);

  opacity: 0.6;
}


/* =========================================================
           FACILITY SELECTOR
        ========================================================= */

.facility-selector {
  width: fit-content;

  margin: 0 auto 0px;

  padding: 6px;

  display: flex;

  gap: 4px;

  background: #f2f8f8;

  border: 1px solid rgba(0, 151, 165, 0.08);

  border-radius: 14px;

  box-shadow: 0 10px 30px rgba(0, 70, 80, 0.05);
}

.facility-tab {
  min-height: 46px;

  padding: 0 23px;

  display: flex;

  align-items: center;

  gap: 9px;

  border: none;

  border-radius: 10px;

  color: #77797b;

  background: transparent;

  font-size: 12px;

  font-weight: 700;

  cursor: pointer;

  transition: 0.35s ease;
}

.facility-tab:hover {
  color: var(--teal);
}

.facility-tab.active {
  color: white;

  background: var(--teal);

  box-shadow: 0 8px 22px rgba(0, 151, 165, 0.2);
}

.facility-tab-dot {
  width: 7px;

  height: 7px;

  border-radius: 50%;

  background: currentColor;
}

/* =========================================================
           FACILITY PANEL
        ========================================================= */

.facility-panel {
    display: none;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 75px;
    align-items: center;
    padding: 35px 0 0px;
}

.facility-panel.active {
  display: grid;

  animation: facilityPanelIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes facilityPanelIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
           FACILITY VISUAL
        ========================================================= */

.facility-visual {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1100px;
}

.facility-location-label {
  position: absolute;
  top: 5px;
  left: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.location-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(0, 151, 165, 0.08);
  animation: locationPulse 2s infinite;
}

@keyframes locationPulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(0, 151, 165, 0.08);
  }

  50% {
    box-shadow: 0 0 0 11px rgba(0, 151, 165, 0.02);
  }
}

/* =========================================================
           VADODARA BUILDING
        ========================================================= */

.facility-building {
  position: relative;
  width: 300px;
  height: 390px;
  transform: perspective(900px) rotateY(-15deg) rotateX(3deg);
  transform-style: preserve-3d;
  animation: buildingFloat 6s ease-in-out infinite;
}

@keyframes buildingFloat {
  0%,
  100% {
    transform: perspective(900px) rotateY(-15deg) rotateX(3deg) translateY(0);
  }

  50% {
    transform: perspective(900px) rotateY(-11deg) rotateX(5deg)
      translateY(-10px);
  }
}

.building-top {
  height: 22px;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 7px;
  border-radius: 10px 10px 0 0;
  background: #dff3f4;
}

.building-top span {
  width: 35px;
  height: 5px;
  border-radius: 10px;
  background: rgba(0, 151, 165, 0.25);
}

.building-body {
  position: relative;
  height: 340px;
  background: linear-gradient(145deg, #ffffff, #e9f7f8);
  border: 1px solid rgba(0, 151, 165, 0.12);
  border-radius: 5px;
  box-shadow: 25px 35px 60px rgba(0, 70, 80, 0.12);
}

.building-body img,
.lab-glass-panel IMG {
  width: 100%;
  border-radius: 15px;
  padding: 8px;
  height: 100%;
}
.lab-glass-panel IMG {
  border-radius: 25px;
}

.building-floor {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  height: 65px;
  margin-bottom: 10px;
  padding: 12px;
  border: 1px solid rgba(0, 151, 165, 0.08);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 5px;
}

.building-floor i {
  display: block;
  border-radius: 3px;
  background: linear-gradient(
    180deg,
    rgba(0, 151, 165, 0.28),
    rgba(0, 151, 165, 0.08)
  );
  animation: buildingWindow 3s ease-in-out infinite;
}

.building-floor i:nth-child(2) {
  animation-delay: -0.4s;
}

.building-floor i:nth-child(3) {
  animation-delay: -0.8s;
}

.building-floor i:nth-child(4) {
  animation-delay: -1.2s;
}

.building-floor i:nth-child(5) {
  animation-delay: -1.6s;
}

@keyframes buildingWindow {
  0%,
  100% {
    opacity: 0.45;
  }

  50% {
    opacity: 0.9;
  }
}

.building-base {
  position: absolute;
  bottom: -12px;
  left: 30px;
  right: 10px;
  height: 14px;
  background: #d9eff0;
  border-radius: 4px;
}

/* =========================================================
           FACILITY FLOATING DATA
        ========================================================= */

.facility-data-card {
  position: absolute;
  z-index: 6;
  min-width: 120px;
  padding: 13px 15px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 13px;
  box-shadow: 0 15px 35px rgba(0, 70, 80, 0.1);
  animation: facilityDataFloat 5s ease-in-out infinite;
}

.facility-data-card strong {
  color: var(--teal);
  font-size: 21px;
  line-height: 1;
  margin-bottom: 5px;
}

.facility-data-card span {
  color: #77797b;
  font-size: 9px;
  font-weight: 650;
}

.data-card-one {
  top: 105px;
  left: 5px;
}

.data-card-two {
  right: 0;
  top: 190px;
  animation-delay: -1.2s;
}

.data-card-three {
  bottom: 115px;
  left: 35px;
  animation-delay: -2s;
}

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

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

/* =========================================================
           VISUAL RINGS
        ========================================================= */

.facility-visual-ring {
  position: absolute;
  border: 1px solid rgba(0, 151, 165, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.ring-one {
  width: 450px;
  height: 450px;
  animation: facilityRing 18s linear infinite;
}

.ring-two {
  width: 380px;
  height: 380px;
  border-style: dashed;
  animation: facilityRing 13s linear infinite reverse;
}

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

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

/* =========================================================
           CHENNAI LAB VISUAL
        ========================================================= */

.lab-facility {
  position: relative;
  width: 370px;
  height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: perspective(900px) rotateY(-10deg) rotateX(4deg);
  animation: labFacilityFloat 6s ease-in-out infinite;
}

@keyframes labFacilityFloat {
  0%,
  100% {
    transform: perspective(900px) rotateY(-10deg) rotateX(4deg) translateY(0);
  }

  50% {
    transform: perspective(900px) rotateY(-5deg) rotateX(7deg) translateY(-10px);
  }
}

.lab-glass-panel {
  position: relative;
  width: 320px;
  height: 390px;
  overflow: hidden;
  border: 1px solid rgba(0, 151, 165, 0.18);
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.92),
    rgba(225, 247, 248, 0.65)
  );
  box-shadow: 20px 30px 60px rgba(0, 70, 80, 0.12);
  backdrop-filter: blur(10px);
}

.lab-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(0, 151, 165, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 151, 165, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* Lab machines */

.lab-machine {
  position: absolute;
  background: linear-gradient(145deg, #ffffff, #dff3f4);
  border: 1px solid rgba(0, 151, 165, 0.15);
  border-radius: 12px;
  box-shadow: 0 12px 25px rgba(0, 70, 80, 0.08);
}

.machine-one {
  width: 115px;
  height: 145px;
  left: 35px;
  bottom: 28px;
}

.machine-two {
  width: 100px;
  height: 100px;
  right: 32px;
  bottom: 28px;
}

.lab-machine span {
  display: block;
  width: 65%;
  height: 7px;
  margin: 15px auto 0;
  border-radius: 5px;
  background: rgba(0, 151, 165, 0.16);
}

.lab-machine span:first-child {
  background: rgba(0, 151, 165, 0.3);
}

/* Tubes */

.lab-tube {
  position: absolute;
  bottom: 48px;
  width: 12px;
  height: 80px;
  border: 1px solid rgba(0, 151, 165, 0.25);
  border-radius: 3px 3px 8px 8px;
  background: linear-gradient(to top, rgba(0, 151, 165, 0.15), transparent);
  animation: tubePulse 3s ease-in-out infinite;
}

.tube-one {
  left: 165px;
}

.tube-two {
  left: 185px;
  height: 65px;
  animation-delay: -0.7s;
}

.tube-three {
  left: 205px;
  height: 90px;
  animation-delay: -1.3s;
}

@keyframes tubePulse {
  0%,
  100% {
    opacity: 0.55;
  }

  50% {
    opacity: 1;
  }
}

/* Monitor */

.lab-monitor {
  position: absolute;
  top: 32px;
  left: 50%;
  width: 115px;
  height: 65px;
  transform: translateX(-50%);
  border: 1px solid rgba(0, 151, 165, 0.2);
  border-radius: 9px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 70, 80, 0.07);
  overflow: hidden;
}

.monitor-wave {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 2px;
  background: var(--teal);
  box-shadow:
    15px -7px 0 rgba(0, 151, 165, 0.3),
    28px 5px 0 rgba(0, 151, 165, 0.35),
    43px -4px 0 rgba(0, 151, 165, 0.25),
    59px 7px 0 rgba(0, 151, 165, 0.4);
  animation: monitorMove 2s linear infinite;
}

@keyframes monitorMove {
  from {
    transform: translateX(-15px);
  }

  to {
    transform: translateX(15px);
  }
}

/* =========================================================
           FACILITY CONTENT
        ========================================================= */

.facility-content {
  max-width: 620px;
}

.facility-content-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.facility-index {
  color: rgba(0, 151, 165, 0.65);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.facility-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #6e7172;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.facility-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2e9b76;
  box-shadow: 0 0 0 5px rgba(46, 155, 118, 0.08);
}

/* Location */

.facility-content h3 {
  margin: 0 0 5px;
  color: var(--dark);
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 750;
}

.facility-content h4 {
  margin: 0 0 21px;
  color: var(--teal);
  font-size: 19px;
  line-height: 1.4;
  font-weight: 700;
}

.facility-description {
  margin: 0 0 25px;
  color: #6f7173;
  font-size: 15px;
  line-height: 1.6;
}

/* =========================================================
           FACILITY HIGHLIGHTS
        ========================================================= */

.facility-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 26px;
}

.facility-highlight {
  min-height: 90px;
  padding: 13px 11px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f4fafa;
  border: 1px solid rgba(0, 151, 165, 0.08);
  border-radius: 11px;
  transition: 0.3s ease;
}

.facility-highlight:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 151, 165, 0.2);
  background: #ecf8f8;
}

.facility-highlight strong {
  margin-bottom: 5px;
  color: var(--teal);
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
}

.facility-highlight span {
  color: #747678;
  font-size: 8px;
  line-height: 1.4;
  font-weight: 650;
}

/* =========================================================
           CAPABILITY LIST
        ========================================================= */

.facility-capabilities-title {
  margin-bottom: 12px;
  color: #858789;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.facility-capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin-bottom: 28px;
}

.facility-capabilities div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #626466;
  font-size: 13px;
  line-height: 1.3;
}

.facility-capabilities div span {
  width: 19px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  background: var(--teal-light);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
}

/* =========================================================
           BUTTON
        ========================================================= */

.facility-button {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  background: var(--teal);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 750;
  box-shadow: 0 10px 25px rgba(0, 151, 165, 0.18);
  transition: 0.35s ease;
}

.facility-button span {
  font-size: 17px;
  transition: transform 0.3s ease;
}

.facility-button:hover {
  background: var(--teal-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 151, 165, 0.24);
}

.facility-button:hover span {
  transform: translateX(4px);
}

/* =========================================================
           FACILITIES FOOTER
        ========================================================= */

.facilities-footer {
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 151, 165, 0.1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.facility-footer-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  background: var(--teal-light);
  border-radius: 10px;
  font-weight: 800;
}

.facility-footer-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--dark);
  font-size: 10px;
}

.facility-footer-item small {
  display: block;
  color: #858789;
  font-size: 8px;
}

/* =========================================================
           TABLET
        ========================================================= */

@media (max-width: 1200px) {
  .facility-panel {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .facility-visual {
    transform: scale(0.88);
    margin-left: -35px;
  }

  .facility-content h3 {
    font-size: 34px;
  }

  .facility-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
           MOBILE
        ========================================================= */

@media (max-width: 767px) {
  
  .facilities-heading {
    margin-bottom: 20px;
  }

 
  .facility-selector {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 35px;
  }

  .facility-tab {
    padding: 0 8px;
    justify-content: center;
    font-size: 10px;
  }

  .facility-panel {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0;
  }

  .facility-visual {
    min-height: 440px;
    transform: scale(0.78);
    margin: -35px 0 -20px;
  }

  .facility-content {
    max-width: none;
    text-align: left;
  }

  .facility-content h3 {
    font-size: 20px;
  }

  .facility-content h4 {
    font-size: 17px;
  }

  .facility-description {
    font-size: 13px;
    margin: 12px 0 20px;
}

  .facility-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .facility-capabilities {
    grid-template-columns: 1fr;
  }

  .facilities-footer {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 45px;
  }
  .facilities-section {
    padding: 50px 17px 20px;
}
}

/* =========================================================
           SMALL MOBILE
        ========================================================= */

@media (max-width: 480px) {
 

  .facility-visual {
    transform: scale(0.67);
    margin-top: -70px;
    margin-bottom: -65px;
    min-height: 380px;
  }

  .facility-highlights {
    gap: 7px;
  }

  .facility-highlight {
    min-height: 80px;
  }

  .facility-highlight strong {
    font-size: 18px;
  }

  .facility-highlight span {
    font-size: 7.5px;
  }
}

/* =========================================================
           REDUCED MOTION
        ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .facility-orb,
  .location-pulse,
  .facility-building,
  .building-floor i,
  .facility-data-card,
  .facility-visual-ring,
  .lab-facility,
  .lab-tube,
  .monitor-wave {
    animation: none !important;
  }
}

/* .footer-legal a:hover {

                color:
                    #72E2E6;
            } */

/* =========================================================
       TABLET
    ========================================================= */

@media (max-width: 950px) {
  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;

    gap: 35px;
  }

  .footer-brand {
    grid-column: span 3;
  }
}

/* =========================================================
       MOBILE
    ========================================================= */

@media (max-width: 700px) {
  .ordoclin-compact-cta {
    padding: 48px 20px;
  }

  .compact-cta-container {
    flex-direction: column;

    align-items: flex-start;

    gap: 22px;
  }

  /* .compact-cta-content h2 {

                    font-size:
                        32px;
                } */

  .compact-cta-content p {
    font-size: 11px;
  }

  .compact-cta-button {
    width: 100%;
  }

  /* Footer */

  .footer-container {
    padding: 50px 20px 0;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;

    gap: 35px 25px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-regulatory {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  .regulatory-badges {
    justify-content: flex-start;
    padding-bottom: 10px;
  }

  .footer-bottom {
    min-height: auto;
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* =========================================================
       SMALL MOBILE
    ========================================================= */

@media (max-width: 430px) {
  .ordoclin-compact-cta {
    padding: 42px 17px;
  }

  /* .compact-cta-content h2 {

                    font-size:
                        29px;
                } */

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-regulatory {
    gap: 12px;
  }

  .footer-legal {
    flex-wrap: wrap;

    gap: 8px 15px;
  }
}
