/* Reset & background (continuous full-page neon theme) */
* { box-sizing: border-box; }
html, body { height: auto; margin: 0; padding: 0; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #e0e0e0;
  background: #000; /* solid black base */
  position: relative;
  overflow-x: hidden;
}

/* Neon blobs */
body::before,
body::after {
  content: "";
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
  z-index: -1;
}

/* Teal blob (top left) */
body::before {
  top: 10%;
  left: 15%;
  background: rgba(0, 255, 200, 0.9);
}

/* Blue blob (bottom right) */
body::after {
  bottom: 15%;
  right: 20%;
  background: rgba(0, 150, 255, 0.85);
}

/* Extra blobs */
.neon-blob {
  position: fixed;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  z-index: -1;
}

.blob1 { top: 25%; right: 25%; background: rgba(0, 200, 255, 0.8); }
.blob2 { bottom: 25%; left: 10%; background: rgba(0, 255, 120, 0.75); }
.blob3 { top: 60%; left: 50%; background: rgba(0, 220, 180, 0.7); }


/* ----------------------- NAV (top) ------------------------ */
.nav-tabs {
  display: flex;
  justify-content: flex-end;
  padding: 10px 20px;
  background: transparent;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.tab {
  margin-left: 10px;
  padding: 10px 18px;
  border: 2px solid white;
  border-radius: 9999px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  background: rgba(20, 20, 20, 0.85);
  box-shadow: 0 0 8px rgba(0, 255, 200, 0.25);
  transition: all 0.3s ease;
}

.tab:hover {
  background: rgba(0, 255, 200, 0.15); /* subtle glow when hovered */
  box-shadow: 0 0 15px rgba(0,255,200,0.6);
}

.tab.active {
  background: white;
  border: 2px solid white;
  font-weight: bold;

  background-image: linear-gradient(90deg, #00ffcc, #00b3ff, #00ff66);
  -webkit-background-clip: text;
  color: transparent;
}

main {
  min-height: calc(100vh - 60px - 80px);
  display: flex;
  align-items: center;   /* centers vertically */
  padding: 0 60px;
  box-sizing: border-box;
  margin-top: 60px;
  margin-bottom: 80px;
}

/* Left side title + slogan */
.intro-left {
  max-width: 60%;
}

.intro-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 120px;
  font-weight: 700;
  text-align: left;
  margin: 0;
  color: white;
}

.intro-slogan {
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  font-weight: 300;
  color: #e0e0e0;
  margin-top: 20px;
}

.intro-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 40%;
}

/* Description of process styling for alternating sides */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 160px;
  padding: 40px;
}

.timeline-step {
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.step-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 96px;
  color: white;
  flex-shrink: 0;
}

.step-text {
  max-width: 50%;
  padding: 0 40px;
  box-sizing: border-box;
}

.timeline-step.left {
  flex-direction: row;
}

/* Right-aligned steps */
.timeline-step.right {
  flex-direction: row-reverse;
  align-self: flex-end;
}

/* Paragraph styling */
.step-text p {
  margin: 0;
  font-size: 22px;
  line-height: 1.6;
  color: white;
}

/* Title top-left section */
.title-section {
  padding: 100px 40px 40px 40px;    /* push it under the nav */
}
.page-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 120px;      /* requested size */
  line-height: 1;
  margin: 0;
  color: white;
  text-align: left;
}

/* Contact bar: placed in normal flow at bottom of document */
.contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 20px 0;
  background: transparent;
  z-index: 100;
}

/* icons only — no border or circle */
.contact-icon {
  color: white;
  font-size: 26px;
  text-decoration: none;
  transition: transform .15s ease, color .15s ease, text-shadow .15s ease;
}
.contact-icon:hover {
  color: #00ffd6;
  transform: translateY(-6px) scale(1.08);
  text-shadow: 0 6px 18px rgba(0,255,210,0.18);
}

/* ensure no footer or section style remains that could create a visible band */
footer { display: none !important; }

/* Responsive tweaks */
@media (max-width: 900px) {
  .page-title { font-size: 56px; }
  .step-number { font-size: 64px; }
  .step-text p, .timeline-step .step-text { max-width: 100%; }
  .timeline-step { padding: 0 10px; }
  .timeline { gap: 80px; }
}