:root{
  --bg:#000000;
  --card:#0a0a0a;
  --muted:#9ca3af;
  --accent:#ffffff;
  --accent-2:#ffffff;
  --glass: rgba(255,255,255,0.04);
  --radius:16px;
  --max-width:1100px;
  --shadow: 0 0 60px rgba(255,255,255,0.1);
}

body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:#ffffff;
background:
  radial-gradient(900px 500px at 50% 20%, rgba(255,255,255,0.04), transparent 60%),
  radial-gradient(1200px 700px at 60% 90%, rgba(255,255,255,0.03), transparent 70%),
  #000000;

  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
}

/* Headings stronger + futuristic spacing */
h1,h2,h3,h4{
  letter-spacing:-0.5px;
  font-weight:800;
  color:#ffffff;
}

/* Muted text softer gray */
.muted{color:#9ca3af}

/* Buttons — white glow */
.btn-primary{
  background:#ffffff;
  color:#000000;
  box-shadow:0 0 20px rgba(255,255,255,0.4);
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 0 30px rgba(255,255,255,0.6);
}






@keyframes cardReveal {
  0% { 
    transform: translateY(40px);
    opacity: 0;
    filter: blur(8px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}


* {
  box-sizing: border-box
}

html,
body {
  height: 100%;
  scroll-padding-top: 120px;
}


a {
  color: inherit;
  text-decoration: none
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0px 10px;
  border-color: #fff;
}




.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  border: 0;
  transition: transform .12s ease, box-shadow .12s;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #021224;
  box-shadow: 0 8px 30px rgba(54, 138, 255, 0.12)
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted)
}

.btn:hover {
  transform: translateY(-3px)
}


.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.02)
}

.card h3 {
  margin: 0 0 12px 0
}

.card p {
  color: var(--muted);
  margin: 0
}




@media (max-width:620px) {

  .services {
    grid-template-columns: 1fr
  }
}

/* small helpers */
.muted {
  color: var(--muted)
}

.small {
  font-size: 13px
}


/* Dark clean background */
.animated-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #020202;
  overflow: hidden;
}

/* Soft neon orbs */
.orb {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,120,255,0.6), transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: moveOrb 18s infinite linear;
  opacity: 0.45;
}

/* 3 orbs w/ different timings & paths */
.orb:nth-child(1) {
  top: 10%;
  left: -10%;
  animation-duration: 28s;
}
.orb:nth-child(2) {
  top: 60%;
  left: 50%;
  animation-duration: 22s;
}
.orb:nth-child(3) {
  top: 30%;
  left: 90%;
  animation-duration: 32s;
}

/* Smooth directional float */
@keyframes moveOrb {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-120px, 80px) scale(1.2); }
  100% { transform: translate(0,0) scale(1); }
}
/* Dark clean background */
.animated-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #020202;
  overflow: hidden;
}

/* Soft neon orbs */
/* ---- ANIMATED ORBS FIX ---- */
.animated-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #020202;
  overflow: hidden;
}

/* Orb Base */
/* Dark clean background */
.animated-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #020202;
  overflow: hidden;
}

/* Base orb style */
.orb {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,120,255,0.85), transparent 60%);
  filter: blur(75px);
  opacity: 0.50;
  animation: move 1s linear infinite; /* constant speed */
}

/* Quantity ↑ ↑ ↑ */
.orb:nth-child(1) { top: 5%;  left: -10%;  --tx: 260px;  --ty: 220px;  }
.orb:nth-child(2) { top: 65%; left: 50%;   --tx: -300px; --ty: -260px; }
.orb:nth-child(3) { top: 30%; left: 90%;   --tx: -380px; --ty: 240px;  }
.orb:nth-child(4) { top: 80%; left: -5%;   --tx: 240px;  --ty: -200px; }
.orb:nth-child(5) { top: 40%; left: 20%;   --tx: 350px;  --ty: 260px;  }
.orb:nth-child(6) { top: 10%; left: 70%;   --tx: -260px; --ty: 200px;  }
.orb:nth-child(7) { top: 55%; left: 85%;   --tx: 300px;  --ty: -300px; }

/* Perfect smooth orbiting motion */
@keyframes move {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(var(--tx), var(--ty)) scale(1.25); }
  100% { transform: translate(0, 0) scale(1); }
}



/* SECTION TITLES */
.sec-title {
  text-align: center;
  margin-bottom: 26px;
  font-size: 26px;
  font-weight: 800;
  text-shadow: 0 0 18px rgba(255,255,255,0.2);
}



/* Neon connecting line */
.line {
  height: 2px;
  background: linear-gradient(90deg, #0088ff, transparent);
  flex: 1;
  opacity: 0.4;
  box-shadow: 0 0 10px #0088ff;
}


/* Responsive */
@media(max-width:700px){
  .steps-row {
    flex-direction: column;
    gap: 18px;
  }

  .line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #0088ff, transparent);
  }
}

.no-anim *,
.no-anim *::before,
.no-anim *::after {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  animation: none !important;
}

@media (max-width: 600px) {
  .portfolio-slider-wrapper {
    overflow: visible;
  }

  .portfolio-item.center {
    transform: scale(1.05);
  }
}

@media (max-width: 900px) {
  .pro-menu {
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
  }
}
