/* Animation Classes */
/* .implants-dentistry-nav-fade-up {
  animation: fadeUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
} */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Menu Transitions */
#mobile-menu {
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transform: translateY(-100%);
}
#mobile-menu.active {
  transform: translateY(0);
}

/* Nav Glassmorphism state */


/* Hero slider css */
/* Implants Hero Specific Styles */
.implants-dentistry-hero-slider-item {
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 10;
}
.implants-dentistry-hero-slide-active {
  opacity: 1 !important;
  z-index: 20;
}
.implants-dentistry-hero-gradient-overlay {
  background: linear-gradient(
  90deg,
  rgba(0, 58, 139, 0.95) 0%,
  rgba(0, 58, 139, 0.7) 30%,
  rgba(0, 58, 139, 0) 70%
);
}
@media (max-width: 768px) {
  .implants-dentistry-hero-gradient-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 126, 198, 0.9) 0%,
      rgba(0, 126, 198, 0.6) 100%
    );
  }
}
.implants-dentistry-hero-progress-circle {
  transition: stroke-dashoffset 0.1s linear;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
.glass-panel {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Before after */
.multiple-makeover-transformation-section .slider-container {
  position: relative;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
}
.multiple-makeover-transformation-section .before-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 50% 0 0);
  transition: none;
}
.multiple-makeover-transformation-section .slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #003a8b;
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 10;
}
.multiple-makeover-transformation-section .slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: #003a8b;
  border: 4px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: white;
}
.multiple-makeover-transformation-section .label-tag {
  position: absolute;
  bottom: 12px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  font-family: "Manrope";
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  pointer-events: none;
  z-index: 5;
}

/* Testimonial css */
.implants-dentistry-reviews-glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.implants-dentistry-reviews-card-hover {
  transition:
    transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.5s ease,
    opacity 0.5s ease;
}
.implants-dentistry-reviews-card-hover:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 40px -20px rgba(0, 126, 198, 0.12);
}
.implants-dentistry-reviews-slider-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.material-symbols-outlined {
  font-variation-settings:
    "FILL" 1,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}
.implants-dentistry-reviews-progress-bar {
  height: 4px;
  background: rgba(0, 126, 198, 0.1);
  position: relative;
  overflow: hidden;
  width: 100%;
}
.implants-dentistry-reviews-progress-fill {
  position: absolute;
  height: 100%;
  background: #003a8b;
  width: 0%;
  transition: width 0.4s ease;
}
.implants-dentistry-reviews-slider-container {
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
}
@media (max-width: 768px) {
  .implants-dentistry-reviews-slider-container {
    mask-image: none;
    -webkit-mask-image: none;
  }
}
