    #cta-nav-btn {
      background: #006063;;
    }
    html { height: 100%; }
    body { height: 100%; overflow-y: auto; overflow-x: hidden;box-sizing: border-box; } 
    * { font-family: 'Plus Jakarta Sans', sans-serif; }
    .font-display { font-family: 'Space Grotesk', sans-serif; font-weight: 700; }

    #cta-nav-btn {
      background: #006063;
    }

   nav a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  font-size: 15px;
}

/* underline animation */
nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg,#006063,#3ee9d2);
  transition: width 0.3s ease;
}

nav a:hover {
  color: #006063;
}

nav a:hover::after {
  width: 100%;
}

/* MOBILE FIX */
#mobileMenu a {
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

#mobileMenu a:last-child {
  border-bottom: none;
}
  img {
  max-width: 100%;
  height: auto;
}

.banner-slide {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
}
.banner-container {
  will-change: transform;
  transform: translate3d(0, 0, 0); 
}
#banner-carousel {
  display: flex;
  /* Remove the fixed transition from here */
  will-change: transform;
  transform: translate3d(0, 0, 0);
  
}

/* Create a helper class for smooth movement */
.is-animating {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.final-slider {
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
  perspective: 1200px; /* Adds 3D depth for the rotation */
}

.final-track {
  display: flex;
  gap: 50px;
  /* Use a cubic-bezier for a more "cinematic" slide */
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.final-item {
  flex: 0 0 calc((100% - 100px) / 3);
  min-width: 0;
  transition: all 0.6s ease;
  /* This creates the "Rotating" look when not active */
  transform: rotateY(-15deg) scale(0.85);
  opacity: 0.5;
  filter: blur(2px);
}

.final-item.active {
  transform: rotateY(0deg) scale(1.15); /* Center item is straight and large */
  opacity: 1;
  filter: blur(0px);
  z-index: 10;
}
/* TABLET */
@media(max-width:992px){

  .final-track{gap:20px;}

  .final-item{
    flex:0 0 calc((100% - 20px) / 2);
  }

}

/* MOBILE */
@media(max-width:576px){

  .final-track{gap:15px;}

  .final-item{
    flex:0 0 90%;
  }

  .final-item.active{
    transform:scale(1.05);
  }

  #obsrvr {
    text-align: justify;
  }

}


@media (max-width:640px){
  .banner-slide{
    text-align:center;
    flex-direction:column;
    justify-content:center;
  }
}
    .glass-card {
      background: rgba(255,255,255,0.65);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,0.3);
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    }

    .ripple-btn{
      position:relative;
      overflow:hidden;
      }
      .ripple-btn span{
      position:absolute;
      border-radius:50%;
      transform:scale(0);
      animation:ripple 0.6s linear;
      background:rgba(255,255,255,0.6);
      }
      .ripple-btn:hover{
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 10px 30px rgba(0,107,110,0.45);
      }
      @keyframes ripple{
      to{transform:scale(4);opacity:0;}
      }
    
    @keyframes float-up {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
    }
    @keyframes pulse-glow {
      0%, 100% { box-shadow: 0 0 20px rgba(236, 72, 153, 0.3); }
      50% { box-shadow: 0 0 40px rgba(236, 72, 153, 0.6); }
    }
    @keyframes slide-in-right {
      from { opacity: 0; transform: translateX(100px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes slide-in-left {
      from { opacity: 0; transform: translateX(-100px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes fade-in-up {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fade-in-down {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes scale-pop {
      0% { opacity: 0; transform: scale(0.8); }
      100% { opacity: 1; transform: scale(1); }
    }
    @keyframes rotate-in {
      from { opacity: 0; transform: rotate(-10deg) scale(0.8); }
      to { opacity: 1; transform: rotate(0deg) scale(1); }
    }
    @keyframes pulse-ring {
      0% { box-shadow: 0 0 0 0 rgba(0, 96, 99, 0.7); }
      70% { box-shadow: 0 0 0 20px rgba(236, 72, 153, 0); }
      100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0); }
    }
    @keyframes slide-up {
      from { opacity: 0; transform: translateY(60px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes swing {
      0%, 100% { transform: rotate(0deg); }
      25% { transform: rotate(1deg); }
      75% { transform: rotate(-1deg); }
    }
    @keyframes bounce-gentle {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    @keyframes glow-pulse {
      0%, 100% { background-color: rgba(236, 72, 153, 0.1); box-shadow: inset 0 0 20px rgba(236, 72, 153, 0.2); }
      50% { background-color: rgba(236, 72, 153, 0.15); box-shadow: inset 0 0 30px rgba(236, 72, 153, 0.3); }
    }
    @keyframes shimmer-wave {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }
    @keyframes slide-banner {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }
    @keyframes banner-text-fade-in {
      0% { opacity: 0; transform: translateY(10px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes banner-text-fade-out {
      0% { opacity: 1; transform: translateY(0); }
      100% { opacity: 0; transform: translateY(-10px); }
    }
    .banner-carousel-active {
      animation: slide-banner 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    .banner-text-animated {
      animation: banner-text-fade-in 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }
    .banner-text-exit {
      animation: banner-text-fade-out 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }
    
    .scroll-reveal {
      opacity: 0;
      transform: translateY(40px);
    }
    .scroll-reveal.active {
      animation: fade-in-up 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }
    .scroll-reveal-left {
      opacity: 0;
      transform: translateX(-60px);
    }
    .scroll-reveal-left.active {
      animation: slide-in-left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }
    .scroll-reveal-right {
      opacity: 0;
      transform: translateX(60px);
    }
    .scroll-reveal-right.active {
      animation: slide-in-right 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }
    
    .animate-float { animation: float-up 4s ease-in-out infinite; }
    .animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }
    .animate-slide-in-right { animation: slide-in-right 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
    .animate-slide-in-left { animation: slide-in-left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
    .animate-fade-in-up { animation: fade-in-up 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
    .animate-fade-in-down { animation: fade-in-down 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
    .animate-scale-pop { animation: scale-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
    .animate-rotate-in { animation: rotate-in 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
    .animate-bounce-gentle { animation: bounce-gentle 2s ease-in-out infinite; }
    .animate-pulse-ring { animation: pulse-ring 2s infinite; }
    .animate-slide-up { animation: slide-up 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
    .animate-swing { animation: swing 3s ease-in-out infinite; }
    .animate-glow-pulse { animation: glow-pulse 2.5s ease-in-out infinite; }
    .animate-shimmer { animation: shimmer-wave 2s infinite; }
    .card-hover { transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
    .card-hover:hover { transform: translateY(-8px) scale(1.02); }

    /* Keyboard skip link (SEO / accessibility) */
    .skip-link {
      position: absolute;
      left: -9999px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
      z-index: -1;
    }
    .skip-link:focus {
      position: fixed;
      left: 0.75rem;
      top: 0.75rem;
      z-index: 9999;
      width: auto;
      height: auto;
      padding: 0.75rem 1rem;
      overflow: visible;
      background: #fff;
      color: #004b4d;
      font-weight: 600;
      border-radius: 0.5rem;
      box-shadow: 0 0 0 2px #004b4d;
      outline: none;
    }
