﻿:root {
  --medical-red: #DD3333;
  --medical-red-hover: #BB2222;
  --navy-dark: #1d3557;
  --white: #ffffff;
  --gray-bg: #f8f8f8;
  --gray-border: #e1e1e1;
  --text-dark: #333333;
  --text-light: #666666;
  --popper-font: 'Poppins', sans-serif;
  --inter-font: 'Inter', sans-serif;
  --site-width: 1200px;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--inter-font);
  font-weight: 300;
  line-height: 1.6;
  color: var(--navy-dark);
  margin: 0;
  padding: 140px 0 0;
  background: #ffffff;
  position: relative;
  overflow-x: clip;
  width: 100%;
}

body::before {
  content: '';
  position: fixed;
  top: 120px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/images/pattern.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.08;
  filter: grayscale(1);
  z-index: -1;
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.small-container {
  max-width: 800px;
}

.tiny-container {
  max-width: 600px;
}

.faq-container {
  width: 1140px;
  max-width: 95%;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.max-800 {
  max-width: 800px;
}

.max-900 {
  max-width: 1140px;
}

.max-1000 {
  max-width: 1140px;
}

.text-red {
  color: var(--medical-red);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.gap-15 {
  gap: 15px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 40px;
}

.gap-60 {
  gap: 60px;
}

.gap-80 {
  gap: 80px;
}

.align-center {
  align-items: center;
}

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

.section {
  background: #ffffff;
  padding: 80px 0;
}

.bg-light {
  background: #f9f9f9;
}

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

.mb-50 {
  margin-bottom: 50px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mt-30 {
  margin-top: 30px;
}

.no-wrap {
  white-space: nowrap;
}

.side-dots {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px 10px;
  border-radius: 40px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dot-link {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.dot-link:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}

.dot-link.active {
  background: #fff;
  transform: scale(1.4);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.dot-link::after {
  content: attr(title);
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  font-weight: 600;
}

.dot-link:hover::after {
  opacity: 1;
  visibility: visible;
  right: 25px;
}

@media (max-width: 1100px) {
  .side-dots {
    right: 15px;
  }
}

@media (max-width: 768px) {
  .side-dots {
    display: none;
  }
}

.utility-bar {
  background: var(--medical-red);
  color: var(--white);
  padding: 6px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1002;
  transition: transform 0.3s ease;
}

.utility-bar.scrolled {
  transform: translateY(-100%);
}

.utility-flex {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.utility-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icons {
  display: flex;
  align-items: center;
}

.social-icons a {
  color: var(--white);
  font-size: 0.95rem;
  margin-left: 15px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.social-icons a:hover {
  opacity: 0.7;
}

.btn-payment-top {
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: none;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 15px;
}

header {
  background: rgba(255, 255, 255, 1);
  padding: 15px 0;
  position: fixed;
  top: 36px;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

header.scrolled {
  top: 0;
  padding: 8px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 75px;
  transition: height 0.3s ease;
}

header.scrolled .logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--popper-font);
}

.nav-links a:hover {
  color: var(--medical-red);
}

.nav-links a.active {
  color: var(--medical-red);
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ddd;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy-dark);
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 40px;
    gap: 30px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 200000;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0 !important;
    display: flex !important;
  }

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

  .nav-links a {
    font-size: 1.1rem;
    width: 100%;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
  }

  .nav-search-btn {
    display: inline-block;
    margin-top: 10px;
  }
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
  backdrop-filter: blur(3px);
}

.nav-overlay.active {
  display: block;
}

#hero-slider {
  position: relative;
  margin-top: 0;
  background: transparent;
  height: 487px;
}

#hero-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/images/OP_Prosthetics_Company.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  height: 487px;
  z-index: 2;
  overflow: hidden;
  box-shadow: none;
  background: transparent;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
  overflow: hidden;
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: scale(1);
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide.active .slide-bg,
.hero-slide.prev .slide-bg {
  animation: kenBurns 10s ease-out forwards;
}

.hero-container {
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-box {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 25px 80px;
  text-align: left;
  max-width: 750px;
  width: 75%;
  border: none;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  animation: fadeInBox 0.8s ease-out;
}

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

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

.hero-box h2 {
  color: var(--medical-red);
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: var(--popper-font);
  line-height: 1.1;
}

.hero-box p {
  font-size: 0.95rem;
  color: #333;
  font-weight: 400;
}

.slider-arrows .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: none;
  width: 45px;
  height: 45px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  font-size: 1.5rem;
}

.slider-arrows .arrow:hover {
  color: var(--white);
}

.slider-arrows .arrow.prev {
  left: 10px;
}

.slider-arrows .arrow.next {
  right: 10px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--white);
  transform: scale(1.2);
}

.home-services {
  background-image: url('assets/images/OP_Prosthetics_Company.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 28px 0 80px 0;
  position: relative;
  z-index: 10;
}

.home-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
  pointer-events: none;
}

.grid-3 {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0;
}

.home-col {
  text-align: center;
}

.home-col img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.home-col a:hover img {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 30px rgba(221, 51, 51, 0.2);
}

.home-col h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--medical-red);
  line-height: 1.2;
}

.home-col p {
  font-size: 0.8rem;
  color: #444;
  max-width: 90%;
  margin: 0 auto;
  font-family: var(--inter-font);
}

.hq-feature {
  padding: 60px 0;
  background: #ffffff;
}

.building-card {
  border-radius: 0;
  overflow: hidden;
}

.building-card img {
  width: 100%;
  display: block;
}

.cta-red-bar {
  background: var(--medical-red);
  color: var(--white);
  padding: 50px 0;
  text-align: center;
}

.cta-red-bar h3 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 25px;
}

.btn-outline {
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid var(--white);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--medical-red);
}

.bg-parallax-pattern {
  background-image: url('assets/images/OP_Prosthetics_Company.jpg');
  background-attachment: scroll;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-color: #fcfcfc;
}

.bg-parallax-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  z-index: 1;
  pointer-events: none;
}

.bg-parallax-pattern .container {
  position: relative;
  z-index: 2;
}

.bg-pattern {
  background-image: url('assets/images/OP_Prosthetics_Company.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  padding: 100px 0;
  position: relative;
}

.bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
  pointer-events: none;
}

.sub-banner {
  padding: 30px 0;
  background-image: url('assets/images/OP_Prosthetics_Company.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  color: var(--text-dark);
  text-align: center;
}

.sub-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.sub-banner.dark-overlay::before {
  background: rgba(0, 0, 0, 0.75);
}

.sub-banner .container {
  position: relative;
  z-index: 2;
}

.sub-banner h1 {
  font-size: 3rem;
  font-family: var(--popper-font);
  color: var(--medical-red);
  margin-bottom: 10px;
}

.sub-banner p {
  font-size: 1.2rem;
  font-weight: 300;
}

.intro-p {
  position: relative;
  z-index: 2;
  font-size: 1.8rem;
  color: #1a1a1a;
  width: 1140px;
  max-width: 95%;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.4;
}

.intro-p .text-red {
  font-weight: 500;
}

.accordion {
  border: none;
}

.accordion-item {
  border: 1px solid var(--gray-border);
  margin-bottom: 15px;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  padding: 20px 25px;
  background: #f4f4f4;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #444;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: #efefef;
}

.accordion-item.active .accordion-header {
  background: #ffffff;
  color: var(--medical-red);
  border-bottom: 1px solid var(--gray-border);
}

.accordion-header i {
  font-size: 0.75rem;
  color: #999;
  background: #ddd;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-header i {
  background: var(--medical-red);
  color: white;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  background: white;
  font-size: 0.95rem;
  color: #444;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 20px 30px;
}

.accordion-content p {
  margin-bottom: 15px;
}

.accordion-content ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.accordion-content li {
  margin-bottom: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: var(--site-width);
}

.contact-tile {
  background: #ffffff;
  padding: 0;
  border-radius: 8px;
  border: 1px solid var(--gray-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-tile-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-bottom: 3px solid var(--medical-red);
}

.pos-bottom {
  object-position: bottom;
}

.contact-tile .tile-body {
  padding: 40px;
}

.contact-tile h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 600;
}

.contact-tile h3 i {
  margin-right: 12px;
  font-size: 1.2rem;
}

.contact-tile p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.contact-tile a {
  text-decoration: none;
  color: var(--navy-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: flex-start;
}

.contact-tile a:hover {
  color: var(--medical-red);
}

.contact-tile a i {
  color: var(--medical-red);
  margin-right: 12px;
  margin-top: 5px;
  width: 18px;
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-tile .tile-body {
    padding: 30px;
  }
}

.bottom-nav {
  background: #f1f1f1;
  padding: 25px 0;
  border-top: 1px solid #ddd;
}

.footer-links-row {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.footer-links-row a {
  text-decoration: none;
  color: var(--navy-dark);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-links-row a:hover {
  color: var(--medical-red);
}

.final-footer {
  background: #1a1a1a;
  color: #888;
  padding: 15px 0;
  font-size: 0.8rem;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-footer a {
  color: #888;
  margin-left: 15px;
}

.cookie-bar {
  background: #14213d;
  color: white;
  padding: 15px 0;
  font-size: 0.85rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
}

.cookie-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.btn-cookie-gotit {
  background: #00bfa5;
  color: white;
  border: none;
  padding: 6px 15px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.8rem;
}

.cookie-btns a {
  color: #00bfa5;
  text-decoration: none;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .cookie-flex {
    flex-direction: column;
    text-align: center;
  }
}

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100001;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

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

.back-to-top:not(.visible) {
  transform: translateY(20px);
}

.back-to-top:hover {
  background: var(--medical-red);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(217, 35, 46, 0.4);
  color: white;
}

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

  .hero-box {
    padding: 30;
    width: 90%;
  }

  .intro-p {
    font-size: 1.2rem;
  }
}

.legal-text-vibe {
  font-family: var(--inter-font);
  line-height: 1.8;
  color: #444;
}

.corp-section-title {
  font-size: 2.2rem;
  color: var(--medical-red);
  text-align: center;
  margin-bottom: 40px;
  font-family: var(--popper-font);
  font-weight: 600;
}

.corp-section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
  text-align: left;
  width: 1140px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.custom-bullets {
  list-style: none;
  padding-left: 20px;
}

.custom-bullets li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 15px;
}

.custom-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #444;
  font-weight: bold;
}

.pdf-link-red {
  color: var(--medical-red);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s;
}

.pdf-link-red:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.passion-feature {
  padding: 20px 0 20px 40px;
  border-left: 6px solid var(--medical-red);
  margin-bottom: 50px;
  background: linear-gradient(to right, #fff9f9, #ffffff);
}

.passion-feature h3 {
  font-size: 1.4rem;
  font-weight: 300;
  color: #666;
  margin-bottom: 15px;
  font-family: var(--popper-font);
}

.passion-highlight {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--medical-red);
  line-height: 1.1;
  margin-bottom: 15px;
  letter-spacing: -1.5px;
}

.passion-subtext {
  font-size: 1.2rem;
  color: #444;
  font-weight: 400;
  font-family: var(--inter-font);
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.stats-box-vibe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 15px;
}

.stat-card {
  padding: 20px 10px;
  background: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--medical-red);
}

.stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.8rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.highlight-q-box {
  padding: 40px;
  background: #f9f9f9;
  border-left: 5px solid var(--medical-red);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy-dark);
}

.value-card {
  background: #fff;
  color: #444;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--medical-red);
  margin-bottom: 20px;
}

.accreditations-vibe {
  background: var(--navy-dark);
  color: #fff;
  padding: 40px;
  border-radius: 12px;
}

.accreditations-vibe .text-red {
  color: #ff4d4d !important;
}

.media-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.media-grid span {
  font-weight: 700;
  color: #888;
  font-size: 0.9rem;
  padding: 8px 16px;
  border: 1px solid #eee;
  border-radius: 4px;
  background: #fff;
  text-transform: uppercase;
}

.bio-grid {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.bio-card {
  background: #fff;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--medical-red);
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  position: relative;
}

.bio-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.bio-header {
  padding: 30px;
  background: #fcfcfc;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.bio-header h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.bio-title {
  font-weight: 600;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.bio-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.bio-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #666;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.bio-social a:hover {
  background: var(--medical-red);
  color: #fff;
  transform: translateY(-2px);
}

.bio-p {
  margin-bottom: 20px;
}

.bio-body {
  padding: 30px;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  flex-grow: 1;
}

@media (max-width: 991px) {

  .grid-2.gap-60,
  .grid-2.gap-80 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .next-step-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.next-step-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: start;
}

.insurance-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 60px;
  margin-top: 30px;
}

.insurance-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.insurance-logo img {
  max-height: 100%;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.insurance-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.pulse-check {
  display: inline-block;
  animation: checkPulse 3s ease-in-out infinite;
  transform-origin: center;
}

@keyframes checkPulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(221, 51, 51, 0));
  }

  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 5px 15px rgba(221, 51, 51, 0.25));
  }

  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(221, 51, 51, 0));
  }
}

.gallery-grid-vibe {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.gallery-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(221, 51, 51, 0.1);
}

.gallery-img-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.gallery-img-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.02));
  pointer-events: none;
}

.gallery-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card:hover .gallery-img-box img {
  transform: scale(1.08);
}

.gallery-card-info {
  padding: 20px;
  background: #fff;
}

.gallery-card h4 {
  font-size: 0.9rem;
  color: var(--medical-red);
  margin-bottom: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gallery-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
  font-weight: 500;
}

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

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

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

.gallery-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  margin-top: 60px;
  font-size: 1rem;
  color: #999;
}

.gallery-pagination span {
  cursor: pointer;
  transition: all 0.3s;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.gallery-pagination span.active {
  background: var(--medical-red);
  color: #fff;
  font-weight: 700;
}

.gallery-pagination span:not(.active):hover {
  background: #f0f0f0;
  color: #444;
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  z-index: 200000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  transition: transform 0.3s;
  line-height: 1;
}

.lightbox-close:hover {
  transform: scale(1.1);
  color: var(--medical-red);
}

.lightbox-content-box {
  max-width: 90%;
  max-height: 85vh;
  position: relative;
  text-align: center;
}

.lightbox-content-box img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: #fff;
  margin-top: 20px;
  font-family: var(--popper-font);
  font-size: 1.1rem;
  line-height: 1.5;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10001;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
  user-select: none;
}

.lightbox-prev {
  left: 80px;
  z-index: 200001;
}

.lightbox-next {
  right: 80px;
  z-index: 200001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--medical-red);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {

  .lightbox-prev,
  .lightbox-next {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

.gallery-card {
  cursor: pointer;
}

.grid-wide-side {
  display: grid;
  grid-template-columns: 2fr 1fr;
}

@media (max-width: 991px) {
  .grid-wide-side {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.solutions-list-vibe {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border-right: 4px solid var(--medical-red);
}

#orthotics-gallery-sec .corp-section-title {
  color: var(--medical-red);
}

.solution-cat-title {
  color: var(--medical-red);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 10px;
  display: block;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

.solution-sub-list {
  list-style: none;
  padding-left: 0;
}

.solution-sub-list li {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 5px;
  padding-left: 15px;
  position: relative;
  line-height: 1.4;
}

.solution-sub-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--medical-red);
}

.doc-box-vibe {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  height: 400px;
  display: flex;
  flex-direction: column;
}

.doc-box-header {
  background: #f8f8f8;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  font-weight: 600;
  font-size: 0.95rem;
  color: #444;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.doc-list-scroll {
  overflow-y: auto;
  flex-grow: 1;
  padding: 10px 0;
}

.doc-item-vibe {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid #f5f5f5;
  text-decoration: none;
  color: #666;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.doc-item-vibe:hover {
  background: #fff9f9;
  color: var(--medical-red);
}

.doc-item-vibe i {
  color: var(--medical-red);
  margin-right: 15px;
  font-size: 1.1rem;
}

.tech-tabs-container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-top: 40px;
}

.tech-tabs-nav {
  display: flex;
  background: var(--navy-dark);
  padding: 0 10px;
}

.tech-tab-btn {
  padding: 15px 25px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}

.tech-tab-btn.active {
  color: #fff;
  border-bottom-color: var(--medical-red);
}

.tech-tab-btn:hover:not(.active) {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.tech-tab-content {
  display: none;
  padding: 40px;
  animation: fadeIn 0.4s ease-out;
}

.tech-tab-content.active {
  display: block;
}

.tech-tab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .tech-tab-grid {
    grid-template-columns: 1fr;
  }

  .tech-tabs-nav {
    flex-wrap: wrap;
  }

  .tech-tab-btn {
    flex: 1 1 auto;
    padding: 12px 15px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.tech-img-box,
.tech-img-placeholder {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.02), 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 20px;
  text-align: center;
  overflow: hidden;
}

.tech-img-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.tech-img-placeholder i {
  font-size: 5rem;
  margin-bottom: 25px;
  color: var(--medical-red);
  opacity: 0.8;
}

.tech-img-placeholder span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 80%;
}

.team-card-vibe {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-card-vibe:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--medical-red);
}

.team-img-box {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  background: #f4f4f4;
}

.team-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.team-card-vibe:hover .team-img-box img {
  transform: scale(1.03);
}

.team-info {
  padding: 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.team-info h4 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

.team-role {
  display: block;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.team-location {
  font-size: 0.9rem;
  color: #444;
  font-weight: 500;
}

.process-timeline-container {
  display: flex;
  gap: 60px;
  align-items: center;
}

.timeline-left {
  flex: 1;
  position: relative;
  padding: 20px 0;
}

.timeline-left::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e1e1e1;
  z-index: 1;
}

.timeline-step {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.step-icon-box {
  width: 50px;
  height: 50px;
  background: #fff;
  border: 2px solid var(--medical-red);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--medical-red);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 5px #fff;
}

.timeline-step:hover .step-icon-box {
  background: var(--medical-red);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(221, 51, 51, 0.1);
}

.step-content {
  padding-top: 2px;
}

.step-content h4 {
  font-size: 1.15rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.step-content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
}

.timeline-right {
  flex: 1;
}

.process-featured-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.process-featured-img:hover {
  transform: translateY(-5px);
}

@media (max-width: 900px) {
  .process-timeline-container {
    flex-direction: column;
    gap: 40px;
  }

  .timeline-left::before {
    left: 24px;
  }
}

#search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
}

#search-input {
  width: 100%;
  padding: 20px 0;
  font-size: 2.5rem;
  font-weight: 300;
  background: transparent;
  border: none;
  border-bottom: 2px solid #444;
  color: #fff;
  outline: none;
  transition: border-color 0.3s ease;
  font-family: 'Inter', sans-serif;
}

#search-input:focus {
  border-color: var(--medical-red);
}

#search-input::placeholder {
  color: #666;
}

.search-close {
  position: absolute;
  top: 40px;
  right: 50px;
  font-size: 2.5rem;
  color: #888;
  cursor: pointer;
  transition: color 0.3s ease;
}

.search-close:hover {
  color: var(--medical-red);
}

#search-results {
  margin-top: 50px;
  text-align: left;
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 10px;
}

#search-results::-webkit-scrollbar {
  width: 6px;
}

#search-results::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 3px;
}

#search-results::-webkit-scrollbar-thumb:hover {
  background: #666;
}

.search-result-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  margin-bottom: 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
  border-color: var(--medical-red);
}

.search-result-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-thumb i {
  font-size: 1.5rem;
  color: #444;
}

.search-result-info {
  flex: 1;
}

.search-result-info h4 {
  color: #fff;
  margin-bottom: 4px;
  font-size: 1.1rem;
  font-weight: 600;
}

.search-result-info p {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-category-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--medical-red);
  font-weight: 700;
  margin-bottom: 2px;
  display: block;
}

.search-result-item h4 {
  color: var(--medical-red);
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 600;
}

.search-result-item p {
  color: #ccc;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.nav-search-btn {
  cursor: pointer;
  font-size: 1.1rem;
  color: #333;
  transition: color 0.3s;
  margin-left: 15px;
}

.nav-search-btn:hover {
  color: var(--medical-red);
}

@media (max-width: 768px) {
  #search-input {
    font-size: 1.8rem;
  }

  .search-close {
    top: 20px;
    right: 20px;
  }
}

.glossary-nav-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin-bottom: 0;
  border: 1px solid #eee;
  background: #f8f8f8;
  overflow-x: auto;
}

.glossary-nav-grid a {
  flex: 1;
  min-width: 35px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #777;
  font-weight: 500;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
  font-family: var(--popper-font);
  font-size: 1rem;
}

.glossary-nav-grid a:hover {
  background: #fff;
  color: var(--medical-red);
}

.glossary-nav-grid a.active {
  background: #fff;
  color: var(--medical-red);
  font-weight: 700;
  box-shadow: inset 0 3px 0 var(--medical-red);
}

.glossary-nav-grid a.disabled {
  background: #f4f4f4;
  color: #ccc;
  cursor: default;
  pointer-events: none;
  border-bottom: 1px solid #eee;
}

.glossary-content-box {
  border: 1px solid #eee;
  border-top: none;
  padding: 50px;
  background: #fff;
  min-height: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.glossary-group {
  display: none;
  scroll-margin-top: 120px;
}

.glossary-group.active {
  display: block;
  animation: glossaryFadeIn 0.5s ease forwards;
}

@keyframes glossaryFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

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

.g-item {
  margin-bottom: 18px;
  line-height: 1.8;
  color: #444;
  font-size: 1.05rem;
  padding-bottom: 15px;
  border-bottom: 1px solid #f1f1f1;
}

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

.g-term {
  font-weight: 700;
  color: var(--medical-red);
  margin-right: 8px;
  font-family: var(--popper-font);
}

.glossary-separator {
  margin-top: 100px;
  padding-top: 80px;
  border-top: 2px solid #f1f1f1;
}

.glossary-list {
  margin-top: 30px;
}

.news-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid #eee;
  background: #fff;
  color: var(--navy-dark);
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--popper-font);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--medical-red);
  border-color: var(--medical-red);
  color: #fff;
}

.featured-news {
  margin-bottom: 60px;
}

.featured-card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

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

.featured-img {
  width: 55%;
  min-height: 400px;
  object-fit: cover;
}

.featured-content {
  width: 45%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #eee;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.news-card-img-wrap {
  height: 240px;
  width: 100%;
  overflow: hidden;
}

.news-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-img {
  transform: scale(1.05);
}

.news-card-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.category-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(183, 22, 28, 0.08);
  color: var(--medical-red);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  width: fit-content;
}

.news-card-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.3;
  color: var(--navy-dark);
}

.news-card-date {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 15px;
  display: block;
}

.news-card-excerpt {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.read-more-link {
  margin-top: auto;
  color: var(--medical-red);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .featured-card {
    flex-direction: column;
  }

  .featured-img,
  .featured-content {
    width: 100%;
  }

  .featured-img {
    min-height: 300px;
  }

  .featured-content {
    padding: 40px;
  }
}

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

  .news-filters {
    gap: 10px;
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}

.article-hero {
  background: var(--navy-dark);
  padding: 100px 0 60px;
  color: #fff;
}

.back-to-news {
  color: var(--medical-red);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.back-to-news:hover {
  transform: translateX(-5px);
}

.article-hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-top: 15px;
  max-width: 900px;
}

#article-header-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.article-container {
  padding-top: 0;
  margin-top: -40px;
}

.article-layout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
}

.article-main-column {
  background: #fff;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.article-main-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.article-content-rich {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
}

.article-content-rich a {
  color: #DD3333;
  text-decoration: none;
  font-weight: 600;
  transition: text-decoration 0.3s ease;
}

.article-content-rich a:hover {
  text-decoration: underline;
}

.article-content-rich p {
  margin-bottom: 25px;
}

.article-content-rich img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0 10px;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.article-content-rich .img-caption {
  font-size: 0.9rem;
  color: #888;
  text-align: center;
  margin-bottom: 30px;
  font-style: italic;
}

.article-content-rich h2,
.article-content-rich h3 {
  color: var(--navy-dark);
  margin: 40px 0 20px;
}

.article-footer-actions {
  margin-top: 60px;
}

.share-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
}

.social-share {
  display: flex;
  gap: 15px;
}

.social-share a {
  font-size: 1.5rem;
  color: #ccc;
  transition: color 0.3s ease;
}

.social-share a:hover {
  color: var(--medical-red);
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.sidebar-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #eee;
}

.sidebar-box h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--navy-dark);
  border-bottom: 2px solid var(--medical-red);
  display: inline-block;
  padding-bottom: 5px;
}

.related-post-item {
  display: flex;
  gap: 15px;
  text-decoration: none;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
}

.related-post-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.related-post-thumb {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  object-fit: cover;
}

.related-post-info h4 {
  font-size: 0.95rem;
  color: var(--navy-dark);
  line-height: 1.4;
  margin-bottom: 5px;
  transition: color 0.3s;
}

.related-post-item:hover h4 {
  color: var(--medical-red);
}

.contact-widget {
  background: var(--navy-dark);
  color: #fff;
}

.contact-widget h3 {
  color: #fff;
}

.contact-widget p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.btn-call-action {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  background: #ffffff;
  color: var(--navy-dark);
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.btn-call-action:hover {
  background: var(--medical-red);
  color: #ffffff;
  border-color: var(--medical-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

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

  .article-sidebar {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .article-main-column {
    padding: 30px;
  }

  .article-hero h1 {
    font-size: 2rem;
  }
}

.mt-40 {
  margin-top: 40px;
}

.glossary-list dt {
  font-weight: 700;
  color: var(--medical-red);
  font-family: var(--popper-font);
  font-size: 1.1rem;
  margin-top: 25px;
}

.glossary-list dd {
  margin-top: 10px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f1f1;
  color: #444;
  line-height: 1.8;
}

.glossary-list dd:last-of-type {
  border-bottom: none;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  background: #fcfcfc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  margin: 0 !important;
  border-radius: 8px 8px 0 0 !important;
  box-shadow: none !important;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-item .img-caption {
  margin: 15px 10px !important;
  font-size: 0.85rem !important;
  text-align: center !important;
}

@media (max-width: 768px) {
  .article-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-nav:hover {
  background: var(--medical-red);
  color: #fff;
}

.lightbox-nav.prev {
  left: 40px;
}

.lightbox-nav.next {
  right: 40px;
}

@media (max-width: 900px) {
  .lightbox-nav {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .lightbox-nav.prev {
    left: 10px;
  }

  .lightbox-nav.next {
    right: 10px;
  }
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin-bottom: 30px;
  border-radius: 4px;
}

.video-container iframe {
  position: absolute;
  top: 0;
}

.insurance-ticker {
  background: #fff;
  padding: 60px 0 40px;
  border-top: 1px solid #f1f1f1;
  overflow: hidden;
  text-align: center;
}

.insurance-ticker h3 {
  color: #999;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
  font-weight: 600;
}

.ticker-wrap {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  max-width: 1200px;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.ticker-move {
  display: inline-block;
  animation: ticker 40s linear infinite;
}

.ticker-move:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-block;
  padding: 0 40px;
  vertical-align: middle;
}

.ticker-item img {
  height: 45px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.4s ease;
}

.ticker-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.access-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--medical-red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 100001;
  font-size: 1.4rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.access-btn:hover {
  transform: scale(1.1) rotate(15deg);
  background: var(--medical-red-hover);
}

.access-menu {
  position: fixed;
  bottom: 100px;
  left: 30px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 100001;
  border: 1px solid #eee;
}

.access-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.access-menu h4 {
  margin: 0 0 15px;
  font-size: 1.1rem;
  color: var(--text-dark);
  border-bottom: 2px solid #f1f1f1;
  padding-bottom: 10px;
  text-align: center;
}

.access-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #555;
  cursor: pointer;
  padding: 10px;
  border-radius: 6px;
  transition: background 0.2s;
  background: #fcfcfc;
  border: 1px solid #eee;
}

.access-option:hover {
  background: #f0f0f0;
  color: var(--medical-red);
}

.access-option.active {
  background: var(--medical-red);
  color: #fff;
  border-color: var(--medical-red);
}

.access-option.active i {
  color: #fff;
}

.access-option i {
  color: var(--medical-red);
  font-size: 1.2rem;
}

body.high-contrast {
  background-color: #000 !important;
}

body.high-contrast>*:not(.access-btn):not(.access-menu) {
  filter: grayscale(100%) !important;
}

body.high-contrast *:not(.access-btn):not(.access-menu):not(.access-menu *):not(.access-btn *):not(.snow-canvas) {
  background-color: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
  box-shadow: none !important;
}

body.high-contrast .snow-canvas {
  background-color: transparent !important;
}

body.high-contrast *:before,
body.high-contrast *:after {
  color: #fff !important;
  background-color: transparent !important;
}

body.high-contrast a:not(.access-btn):not(.access-menu *) {
  color: #ffff00 !important;
  text-decoration: underline !important;
}

body.high-contrast *:focus {
  outline: 3px solid #ffff00 !important;
  outline-offset: 2px !important;
}

body.high-contrast img,
body.high-contrast .slide-bg,
body.high-contrast .sub-banner,
body.high-contrast #hero-slider::before,
body.high-contrast .bg-parallax-pattern,
body.high-contrast [style*="background-image"] {
  filter: grayscale(100%) contrast(110%) brightness(0.7) !important;
}

body.high-contrast .logo img,
body.high-contrast img.logo {
  filter: grayscale(0) !important;
}

html.large-text {
  font-size: 125%;
}

body.no-animations *:not(.access-btn):not(.access-menu):not(.access-menu *):not(.access-btn *) {
  transition: none !important;
  animation: none !important;
}

body.no-animations * {
  animation-iteration-count: 0 !important;
  animation-duration: 0.01ms !important;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 30px 0;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@keyframes searchColorPulse {

  0%,
  100% {
    color: #333;
  }

  50% {
    color: var(--medical-red);
  }
}

.nav-search-btn {
  display: inline-block;
  animation: searchColorPulse 1.5s ease-in-out 4;
  transition: color 0.3s ease;
}

.nav-search-btn i {
  display: inline-block;
}

.nav-search-btn.animation-complete {
  animation: none;
}