/* Omniban Global Styles */
@import url("../fonts/atanax-dymmo-fonts.css");
@import url("theme.css");

/* Premium UI Library */
@import url("../ui/buttons.css");
@import url("../ui/cards.css");
@import url("../ui/badges.css");
@import url("../ui/layout.css");

/* Page Sections */
@import url("headers.css");
@import url("footer.css");

/* Root & Body Setup */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.bg-full-top {
  background-size: 100% auto !important;
  background-position: top center !important;
  background-repeat: no-repeat !important;
}

body {
  font-family: "Atanax Dymmo", "Plus Jakarta Sans", sans-serif;
  color: var(--color-slate-900);
}

/* Updated Background Image Path */
.bg-front-image-circles-purple-green-one {
  background-image: url("../img/net/bg-fade-circles-purple-green-hor-2_h8PCgGts.png");
}

/* Force full width for the background container */
@media (min-width: 2000px) {
  body {
    background-size: cover !important;
  }
}

/* Background Grids */
.bg-grid {
  background-image: radial-gradient(
    var(--color-slate-200) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
}

/* Hero Elements */
.hero-blob {
  position: absolute;
  width: min(500px, 120vw);
  height: min(500px, 120vw);
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.15) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  filter: blur(80px);
  border-radius: 50%;
  z-index: -1;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-front-purple-underline-gradient {
  background-image: linear-gradient(90deg, #c0c0e200, #c0c0e280, #c0c0e200);
}

.h-px {
  height: 1px;
}

.text-capitalize{
  text-transform: capitalize;
}
