.btn-gradient-primary {
  display: inline-block;
  padding: 0.75em 2em;
  color: #fff;
  background: linear-gradient(45deg, #54026d, #ec407a 80%);
  border: 0;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-gradient-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(60, 60, 120, 0.25);
  color: #fff;
}

.btn-gradient-primary:active {
  transform: scale(1);
  color: #fff !important;
}

.btn-gradient-secondary-outline {
  display: inline-block;
  padding: 0.75em 2em;
  color: #000000;
  border: 2px solid #000;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-gradient-secondary-outline:hover {
  background-color: #000;
  border-color: #000;
  color: #fff !important;
}

.btn-gradient-secondary-outline:active {
  background-color: #000000 !important;
  border-color: #000 !important;
  color: #fff !important;
  transform: scale(0.96);
}
.hero {
  background-image: url(images/Background.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.no-caret::after {
  display: none !important;
}

.btn-gradient-accent {
  display: inline-block;
  padding: 0.75em 2em;
  color: #fff;
  background: linear-gradient(45deg, #052aa7, #1996e9 80%);
  border: 0;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-gradient-accent:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(60, 60, 120, 0.25);
  color: #fff;
}

.btn-gradient-accent:active {
  transform: scale(1);
  color: #fff !important;
}
.btn-gradient-accent:focus {
  color: #fff !important;
}
.dropdown-item:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(60, 60, 120, 0.25);
  color: #fff;

  background: linear-gradient(45deg, #052aa7, #1996e9 80%);
}

.dropdown-item:active {
  transform: scale(1);
  color: #fff !important;
}
.links-container {
  background-color: #0000009c !important;
  backdrop-filter: blur(10px);
}
.funnel {
  font-family: "Funnel Display", sans-serif;
  font-weight: 400;
}
.funnel-bold {
  font-family: "Funnel Display", sans-serif;
  font-weight: 700;
}

.gradient-primary {
  color: #fff;
  background: linear-gradient(45deg, #54026d, #ec407a 80%);
}
.gradient-accent {
  color: #fff;
  background: linear-gradient(45deg, #052aa7, #1996e9 80%);
}

.reddit-sans-regular {
  font-family: "Reddit Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.service-card {
  background-color: #1e1e1e;
  transition: transform 0.4s ease;
}
.service-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover .overlay {
  opacity: 1;
}
.icon-box {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.animate-bounce-slow {
  animation: bounce 5s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Desktop animated rail connecting the steps */
.process-rail {
  position: absolute;
  top: 0px; /* aligns with icon centers on lg+ */
  left: 6%;
  right: 6%;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6f42c1, #d63384, #fd7e14, #6f42c1);
  background-size: 300% 100%;
  animation: flow 6s linear infinite;
  opacity: 0.35;
  pointer-events: none;
}
.body-rail {
  background: linear-gradient(90deg, #6f42c1, #d63384, #fd7e14, #6f42c1);
  background-size: 300% 100%;
  animation: flow 20s linear infinite;
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

@keyframes flow {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 300% 0;
  }
}
/* Cards & icons */
.process-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.1);
}

/* Floating icon circle */
.process-icon {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 0.75rem 1.5rem rgba(214, 51, 132, 0.25);
  font-size: 1.5rem;
}
.process-icon i {
  color: #fff;
}

/* Small step number badge */
.step-badge {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #212529;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.service-card-v2 {
  transition: all 0.3s ease-in-out;
}
.service-card-v2:hover {
  transform: translateY(-10px);
}

.text-gradient-primary {
  background: linear-gradient(45deg, #54026d, #ec407a 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-accent {
  background: linear-gradient(45deg, #052aa7, #1996e9 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-card-gradient {
  background: linear-gradient(145deg, #161b22, #0d1117);
}
@media screen and (max-width: 800px) {
  .padding-top {
    padding-top: 230px !important;
  }
}
.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 364px) {
  #pageLogoNourox {
    display: none !important;
  }
}
