.hover-glow:hover {
  box-shadow: 0 0 20px rgba(247, 147, 30, 0.5);
  border: 2px solid #F7931E;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeUp {
  animation: fadeUp 1.2s ease-out forwards;
}

html {
  scroll-behavior: smooth;
}

[x-cloak] { display: none !important; }

.contact-ping {
  position: relative;
  z-index: 10;
}

.contact-ping::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 115, 0, 0.3); /* semi-transparent orange */
  border-radius: 9999px;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  z-index: -1;
  animation: radar-ping 5s ease-out infinite;
}

@keyframes radar-ping {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  70% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.nav-underline {
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
}

.nav-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-underline:hover::after {
  width: 100%;
  left: 0;
}

.btn-fill {
  position: relative;
  display: inline-block;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.btn-fill::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2); /* light overlay fill */
  transition: width 0.4s ease;
  z-index: -1;
}

.btn-fill:hover::before {
  width: 100%;
}

