html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #06091E; /* ensure dark base during initial paint on Safari */
  /* Prevent any element from causing horizontal page scroll */
  overflow-x: hidden;
}
html { overflow-x: hidden; }
wrapper {
  position: relative;
  min-height: 100vh;
}
wrapper::before {
  z-index: -3;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  background: #06091E;
  pointer-events: none;
}
wrapper::after {
  z-index: -2;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  background: url(../images/art/background-gradients.svg) center no-repeat;
  background-size: cover;
  pointer-events: none;
}

/* Promote main sections to their own layers to prevent Safari flicker */
.about, .who-we-are, .who-we-serve, .our-values, .approach, .team, footer {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}





/*------------------------------
            Global        
------------------------------*/
a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
a:hover {
  color: #fff;
  text-decoration: none;
}
h4 {
  font-family: "Forma DJR Deck", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}
h4 span {
  display: inline-block;
  background-color: #89191B;
  font-family: "Open Sans", sans-serif;
  font-size: .875rem;
  font-weight: 400;
  text-transform: uppercase; /* keep default for other sections */
  padding: .5rem 1rem;
  border-radius: 2.5rem;
  margin-bottom: 1.875rem;
}
/* Ensure Our Values header pill matches site: keep uppercase */
.our-values h4 span {
  text-transform: uppercase;
}
h5, p, ul {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
address {
  font-size: 1rem;
  line-height: 1.5;
}
.r8-750 {
  font-size: clamp(3rem, 5vw + 1rem, 8.75rem);
}
.r4-0625 {
  font-size: clamp(2rem, 5vw + 1rem, 4.0625rem);
}
.r2-8125 {
  font-size: clamp(1.125rem, 3.125vw, 2.8125rem);
}
.r2-500 {
  font-size: clamp(1.125rem, 3vw, 2.5rem);
}
.r1-500 {
  font-size: clamp(1.125rem, 1.22vw + 0.667rem, 1.5rem);
}
.r1-375 {
  font-size: clamp(1.0625rem, 1vw + .5rem, 1.375rem);
}
.r1-250 {
  font-size: clamp(1rem, 1vw + .5rem, 1.25rem);
}
.r1-125 {
  font-size: clamp(1rem, 1vw + .5rem, 1.125rem);
}
.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trans {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.scroll-anchor {
  z-index: -99;
  position: relative;
  padding-top: 2rem;
  margin-top: -2rem;
}
.scroll-anchor#about {
  padding-top: 8rem;
  margin-top: -8rem;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}
.p-sections {
  padding: 6.25rem 0;
}
@media (min-width: 1520px) {
  .container {
    max-width: 1400px;
  }
}
@media (max-width: 1399px) {
  .p-sections {
    padding: 4rem 0;
  }
}
@media (max-width: 991px) {
  
}
@media (max-width: 767px) {
  
}





/*------------------------------
            Navbar
------------------------------*/
.navbar {
  z-index: 999;
  background: transparent;
  padding: 1.25rem 0;
}
.navbar .navbar-brand {
  display: flex;
  justify-content: center;
  width: 9.5rem;
  padding: 0;
  margin: 0 .9375rem;
}
.navbar .navbar-brand img {
  width: 100%;
}
.navbar .navbar-toggler {
  z-index: 9;
  cursor: pointer;
  padding: 0;
  border: none;
  outline: none;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar svg {
  width: 1.5rem!important;
  height: 1.5rem!important;
}
.navbar svg path {
  stroke: #fff!important;
}
.navbar .nav-link {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
  margin: auto 1.25rem;
}
.navbar .nav-link:hover {
  color: #fff;
}
.navbar .nav-link.active {
  font-weight: 900;
}
@media (min-width: 992px) {
  .navbar.navbar-min {
    background-color: #06091E;
    padding: 1rem 0;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.35);
  }
  .navbar.navbar-min .navbar-brand img {
    width: 7rem;
    filter: brightness(0) invert(1);
  }
  .navbar.navbar-min .nav-link.nav-contact {
    padding: .5rem 1.625rem;
  }
  .navbar .nav-link.nav-contact {
    color: #051931;
    background: #fff;
    border: 1px solid #fff;
    padding: 1.0625rem 1.625rem;
    border-radius: 0.625rem;
    transition: all .3s ease-out;
  }
  .navbar .nav-link.nav-contact:hover {
    color: #fff;
    background: #051931;
  }
}
@media (max-width: 991px) {
  .navbar {
    background-color: #06091E;
    padding: .625rem 0;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.35);
  }
  .navbar .navbar-brand img {
    width: 7rem;
    filter: brightness(0) invert(1);
  }
  .navbar-nav {
    padding: 0 0 .5rem;
  }
  .navbar .nav-link {
    font-size: .875rem;
    font-weight: 400;
    padding: .125rem 0;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .navbar .navbar-brand img {
    width: 5rem;
  }
}





/*------------------------------
            Home
------------------------------*/
.home {
  z-index: 3;
  position: relative;
}
.home::before {
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  background: linear-gradient(15deg, rgba(13, 59, 89, 0.64) 23.08%, rgba(0, 0, 0, 0.00) 72.01%);
}
.home::after {
  z-index: 1;
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 10rem;
  content: '';
  background: linear-gradient(180deg, transparent 0%, #0A112D 50%, #06091E 100%);
}
.home .content {
  justify-content: center;
  min-height: 100vh;
  max-width: 48rem;
  padding: 8rem 0 12rem;
}
.home h1 {
  color: #fff;
  font-family: "Forma DJR Deck", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}
.home h1 span {
  display: inline-block;
  background-color: #89191B;
  font-size: .875rem;
  font-weight: 400;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 2.5rem;
  margin-bottom: 1.25rem;
}
.home h2 {
  max-width: 40rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.home h3 {
  font-weight: 400;
  margin-bottom: 2.125rem;
}
.home a {
  display: inline-block;
  color: #fff;
  background-color: #051931;
  font-size: 1rem;
  font-weight: 600;
  padding: 1.0625rem 1.625rem;
  border: 1px solid #051931;
  border-radius: .625rem;
  margin-right: auto;
}
.home a:hover {
  color: #051931;
  background-color: #fff;
}
.home .video {
  z-index: -3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home .video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  
}





/*------------------------------
            About
------------------------------*/
.about {
  position: relative;
  padding-top: 0;
}
.about::after {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 70%;
  content: '';
  background: linear-gradient(#06091E, transparent);
}
.about h4 {
  margin-bottom: 1.5rem;
}
.about .img-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 25rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(62px);
}
.about .img-container {
  /* border: 1px solid #47D3FF; */
}
.about .img-container img {
  width: 70%;
  margin: auto;
}
.about .collapsible {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.about .collapsible.show {
  max-height: 500px; /* adjust based on expected content height */
  opacity: 1;
}
.about p {
  margin-bottom: 1.75rem;
}
#toggleBtn {
  font-weight: 700;
}





/*------------------------------
          Who We Are
------------------------------*/
.who-we-are {
  background: linear-gradient(to right, rgba(6, 9, 30, 1), rgba(6, 9, 30, 0.20)), url(../images/art/healthcare.jpg) lightgray 50% / cover no-repeat;
  background-position: bottom right;
}
.who-we-are .img-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.who-we-are .img-container .image {
  height: 100%;
  min-height: 12rem;
  background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url(../images/art/who-we-are-patient-1.jpg) center no-repeat;
  background-size: cover!important;
  border-radius: .875rem;
}
.who-we-are .img-container .image-2 {
  height: calc(65% - .75rem);
  background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url(../images/art/who-we-are-patient-2.jpg) center no-repeat;
}
.who-we-are .img-container .image-3 {
  height: calc(35% - .75rem);
  background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url(../images/art/who-we-are-patient-3.jpg) center no-repeat;
}
.who-we-are ul {
  margin-top: 2rem;
}
.who-we-are ul li {
  position: relative;
  padding-left: 3.375rem;
}
.who-we-are ul li::before {
  position: absolute;
  top: -.2rem;
  left: 0;
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  content: '';
  background: url(../images/icons/checkmark.svg) center no-repeat;
  background-size: contain;
}
.who-we-are ul li:not(:last-child) {
  margin-bottom: 1rem;
}





/*------------------------------
          Who We Serve
------------------------------*/
.who-we-serve {
  /* Prevent wide decorative pseudo-elements from causing horizontal page scroll */
  overflow-x: hidden;
}
.who-we-serve .content {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 29rem;
  padding: 3rem 0;
}
.who-we-serve .col-md-4:nth-child(2) .content::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 100vw; /* span full viewport without causing overflow */
  height: 1px;
  content: '';
  background: rgba(255, 255, 255, .2);
}
.who-we-serve .col-md-4:nth-child(2) .content::after {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 100vw; /* span full viewport without causing overflow */
  height: 1px;
  content: '';
  background: rgba(255, 255, 255, .2);
}
.who-we-serve .num {
  display: none;
}
.who-we-serve .title {
  font-family: "Forma DJR Deck", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.033rem;
  margin: 0 0 1rem;
}
.who-we-serve .desc {
  opacity: 0.7;
  transition: all .6s ease-out;
  margin-bottom: 1rem;
}
.who-we-serve .extra {
  opacity: 0.7;
  margin: 0;
}
@media (min-width: 992px) {
  .who-we-serve .col-md-4:nth-child(1) .content {
    padding-right: 3.5rem;
  }
  .who-we-serve .col-md-4:nth-child(2) .content {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .who-we-serve .col-md-4:nth-child(3) .content {
    padding-left: 3.75rem;
  }
  .who-we-serve .col-md-4:nth-child(1) .content::after {
    position: absolute;
    top: 0;
    right: -.875rem;
    display: block;
    width: 1px;
    height: 100%;
    content: '';
    background: rgba(255, 255, 255, .2);
  }
  .who-we-serve .col-md-4:nth-child(3) .content::after {
    position: absolute;
    top: 0;
    left: -.875rem;
    display: block;
    width: 1px;
    height: 100%;
    content: '';
    background: rgba(255, 255, 255, .2);
  }
  .who-we-serve .desc {
    min-height: 3rem;
  }
}
@media (max-width: 991px) {
  .who-we-serve .content {
    min-height: auto;
    margin-top: 1rem;
  }
  .who-we-serve .title br {
    display: none;
  }
}





/*------------------------------
          Our Values
------------------------------*/
.our-values {
  /* Two-layer background: keep image crisp and full-width */
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%), url(../images/art/heart-line-pulse.jpg);
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}
.our-values .content {
  position: relative;
  z-index: auto; /* no manual stacking needed when background is on section */
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(62px);
  backdrop-filter: blur(62px);
  height: 15rem;
  padding: 1.5rem;
  border: 2px solid transparent;
  border-radius: 1rem;
  margin-bottom: 1.25rem;
  transition: all .3s ease-out;
  overflow: hidden;
}
.our-values .img-container {
  width: 3.125rem;
  height: 3.125rem;
  margin-bottom: 1.5rem;
}
.our-values .title {
  font-family: "Forma DJR Deck", sans-serif;
  font-weight: 700;
}
.our-values .desc {
  margin: 0;
}
.our-values .overlay {
  z-index: auto;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0.75rem;
  background: rgba(5, 25, 49, 0.92);
  pointer-events: none;
  transition: opacity .25s ease-out;
}
.our-values .content:hover > .overlay {
  opacity: 1;
  pointer-events: auto;
}
.our-values .overlay ul {
  font-size: .875rem;
  padding-left: 1.3rem;
  margin: 0;
}
.our-values .overlay ul li:not(:last-child) {
  margin-bottom: .5rem;
}

/* All Our Values cards now have a fixed height of 15rem across all screen sizes */





/*------------------------------
          Approach
------------------------------*/
.approach {
  position: relative;
}
.approach::before {
  position: absolute;
  top: 1rem;
  right: 2rem;
  display: block;
  width: 7.25rem;
  height: 7.25rem;
  content: '';
  background: url(../images/icons/LLC_Visual_InvestingOperationsLeadership_White.png) center repeat;
  background-size: contain;
  opacity: 0.35;
}
.approach .content {
  text-align: center;
  margin-top: 2rem;
}
.approach .img-container {
  margin-bottom: 1.875rem;
}
.approach .desc {
  font-size: .9375rem;
  font-weight: 700;
  max-width: 17rem;
  margin: 0 auto .5rem;
}
@media (max-width: 991px) {
  .approach::before {
  width: 4rem;
  height: 4rem;
  }
}




/*------------------------------
              Team
------------------------------*/
.team {
  padding-bottom: 0;
}
.team .person {
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  /* border: 1px solid #47D3FF; */
  backdrop-filter: blur(62px);
  padding: 1.25rem;
  border-radius: 1rem;
  margin-bottom: 1.375rem;
}
.team .img-container {
  position: relative;
  aspect-ratio: 1/.82;
  border: 1.5px solid #89191B;
  border-radius: 1rem;
  overflow: hidden;
  isolation: isolate; /* prevent Safari compositing issues with backdrop-filter */
  contain: paint; /* further limit backdrop sampling region */
  background-color: rgba(5, 25, 49, 0.9); /* dark base behind PNG transparency for Safari */
}
.team .overlay .btn {
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}
.team .info {
  padding-top: 1.25rem;
}
.team .name {
  font-family: "Forma DJR Deck", sans-serif;
  font-weight: 500;
  margin: 0;
}
.team .title {
  font-size: .875rem;
  margin: 0;
}
.team .overlay {
  z-index: 1;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  -webkit-transform: translateZ(0); /* Safari: trigger proper compositing */
  transform: translateZ(0);
  pointer-events: none;
  will-change: opacity;
  transition: all .3s ease-out;
}
.team .person:hover > div .overlay {
  opacity: 1;
  pointer-events: auto;
}
.team .overlay .btn-1:hover {
  color: #051931;
  background: #fff;
}
/* Image blur alternative to backdrop-filter on overlay */
.team .img-container img {
  transition: filter .3s ease-out, transform .3s ease-out;
}
.team .person:hover .img-container img {
  filter: blur(6px) brightness(0.8);
  transform: scale(1.01);
}
@media (max-width: 991px) {
  
}




/*------------------------------
          Team Modal
------------------------------*/
.modal .nav {
  z-index: 1;
  position: absolute;
  bottom: -2.75rem;
  right: -6.5rem;
  background-color: #09122B;
  padding: 0;
  border-radius: 0 1rem 1rem 0;
  overflow: hidden;
}
.modal .nav .nav-item {
  background-color: #09122B;
  padding: 1rem .875rem;
  border: none;
  transition: all .3s ease-out;
}
.modal .nav .nav-item:first-child {
  background-color: #3D3D40
}
.modal .nav .nav-item img {
  width: .75rem;
  height: .75rem;
}
.modal .modal-content {
  background: #06091E;
  padding: 1.75rem;
  border-radius: 1.25rem 1.25rem 0rem 1.25rem;
}
.modal .name {
  font-family: "Forma DJR Deck", sans-serif;
  font-weight: 700;
  margin: 0;
}
.modal .title {
  position: relative;
  margin-bottom: 2.5rem;
}
.modal .title::after {
  position: absolute;
  left: 0;
  top: 2.5rem;
  width: 100%;
  height: 1px;
  content: '';
  background: linear-gradient(to right, #89191B, transparent 80%) center no-repeat;
  background-size: cover;
  margin-bottom: 2.5rem;
}
.modal .bio {
  height: 42vh;
  overflow-y: scroll;
  padding-right: .5rem;
}
.modal .bio::-webkit-scrollbar {
  width: 12px; /* width of the entire scrollbar */
}
.modal .bio::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05); /* color of the track */
  border-radius: 30px;
}
.modal .bio::-webkit-scrollbar-thumb {
  background-color: rgba(13, 59, 89, 0.80); /* color of the scroll thumb */
  border-radius: 30px; /* roundness of the scroll thumb */
}
.modal .bio::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* color of the scroll thumb on hover */
}
.modal .edu {
  min-height: 8rem;
  margin-top: 2rem;
}
.modal .edu h5 {
  font-family: "Forma DJR Deck", sans-serif;
  font-weight: 700;
}
.modal .img-container {
  height: 22rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 3rem 1rem;
  border-radius: 1.25rem;
  backdrop-filter: blur(45.72500228881836px);
  margin-bottom: 2rem;
}
.modal .img-container img {
  /* object-position: bottom; */
}
.modal .info li {
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  text-transform: uppercase;
  padding: .75rem 1rem;
  border-radius: 8.125rem;
  backdrop-filter: blur(45.72500228881836px);
  margin-bottom: .75rem;
}
.modal-xl {
  max-width: 66rem;
}
.modal-backdrop {
  background-color: #000;
}
.modal-backdrop.show {
  opacity: .5;
}
@media (min-width: 992px) {
  .modal .nav .nav-item:hover {
    background-color: #3D3D40;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .modal.show .modal-dialog {
    padding: 0 4rem;
  }
}
@media (max-width: 991px) {
  .modal .nav {
    right: 0;
    bottom: 17rem;
  }
  .modal .nav .nav-item {
    padding: .875rem .5rem;
  }
  .modal .nav .nav-item svg {
    transform: scale(.75);
  }
  .modal .edu {
    padding: 1rem;
  }
  .modal .content {
    padding: 2rem 1rem 1rem;
  }
}
@media (max-width: 767px) {
  .modal .modal-content {
    padding: 0;
  }
  .modal .content {
    padding: 1rem 0;
  }
}





/*------------------------------
           Terms
------------------------------*/
.terms {
  padding: 6.25rem 0;
}
.terms h5 {
  /* color: #2D4168; */
  font-weight: 600;
  margin-bottom: 1.75rem;
}
.terms p {
  line-height: 1.4;
  margin-bottom: 1.75rem;
}
.terms ul {
  line-height: 1.4;
  margin-bottom: 1.75rem;
}
.terms a:hover {
  color: #000035;
}
@media(min-width: 992px) {
  
}





/*------------------------------
           Footer
------------------------------*/
footer {
  color: #fff;
  background: linear-gradient(0deg, rgba(6, 9, 30, 0.70) 0%, rgba(6, 9, 30, 0.70) 100%), url(../images/art/footer.jpg) lightgray 50% / cover no-repeat;
  background-size: cover;
  padding: 6.25rem 0 1.875rem;
}
footer .content {
  background: rgba(0, 0, 0, 0.10);
  padding: 2.5rem;
  /* border: 1px solid #47D3FF; */
  border-radius: 1rem;
  -webkit-backdrop-filter: blur(97px);
  backdrop-filter: blur(97px);
  margin-bottom: 2rem;
  /* Safari sometimes needs its own stacking context for blur to render */
  position: relative;
  isolation: isolate;
}
footer .title {
  font-weight: 700;
  background: linear-gradient(89deg, rgba(255, 255, 255, 0.60) 3.15%, #FFF 98.76%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
footer .desc {
  margin-bottom: 2rem;
}
.btn-1 {
  display: inline-block;
  color: #051931;
  background: #fff;
  font-weight: 600;
  border: 1px solid #051931;
  border-radius: .625rem;
  padding: 1.0625rem 1.625rem;
}
.btn-1:hover {
  color: #fff;
  background: #051931;
  border-color: #fff;
}
footer .nav-item img {
  width: 7rem;
  filter: brightness(0) invert(1);
}
footer .nav-item {
  margin: auto .75rem;
}
footer .nav-item.nav-linkedin {
  background: rgba(255, 255, 255, 0.04);
  padding: 0.9375rem 1.875rem;
  border-radius: 0.625rem;
}
footer .footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding-top: 1.875rem;
  border-top: 1px solid rgba(255, 255, 255, .37);
  margin: 1.875rem 0 0;
}
footer .copyright-text {
  text-align: left;
}
footer .design-credit {
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
}
footer .design-credit a {
  color: inherit;
  text-decoration: none;
}
@media (max-width: 991px) {
  footer .nav {
    flex-direction: column;
  }
  footer .nav-item {
    line-height: 2;
    margin: 0 auto;
  }
  footer .nav-item:first-child {
    margin-bottom: 1rem;
  }
  footer .nav-item:last-child {
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  footer .footer-copyright {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  footer .copyright-text,
  footer .design-credit {
    text-align: center;
  }
}

/*---------------------------------
  Safari performance fallbacks
  Disable large container blurs to avoid
  initial white screen and jank; keep overlay blur
----------------------------------*/
@supports (-webkit-backdrop-filter: blur(0)) {
  .about .img-container,
  /* allow .our-values and footer blur (do NOT disable them) */
  .team .person,
  .modal .img-container,
  .modal .info li,
  .who-we-serve .num {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
  .about .img-container { background-color: rgba(5, 25, 49, 0.4); }
}

/*------------------------------
           Utility Classes
-------------------------------*/
.hidden {
  display: none !important;
}
