 :root {
    --primary: #1e824c;
  }
  .text-primary {
    color: var(--primary);
  }
  .bg-primary {
    background-color: var(--primary);
  }
  .border-primary {
    border-color: var(--primary);
  }


  html, body {
  overflow-x: hidden;
}

.glassmorphism-card {
  background: #ffffffb3;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 32px #0b2c4d1a;
}


.nav-link {
  position: relative;
  color: #374151;
  font-weight: 500;
  transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
  /* color: #D32F2F; */
  color: #E46236;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 50%;
  bottom: -8px;
  /* background: #D32F2F; */
  background: #E46236;
  transform: translateX(-50%);
  transition: .3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}



/* Infrastructure */
.infra-item {
  display: flex;
  flex-direction: column;
  /* gap: 4px; */
  padding: 4px 10px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  font-weight: 600;
  color: #111827;
  transition: .3s ease;
}

.infra-item span {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
}

.infra-item:hover {
  transform: translateY(-4px);
  border-color: #E46236;
  box-shadow: 0 15px 35px rgba(211, 47, 47, .12);
}
