html {
  overflow-x: hidden;
}

body {
  overflow-x: clip;
}


/* =========================
   PAGE-WIDE BACKGROUND
========================= */

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #000;
  overflow: hidden;
}
/* Slight vignette so mesh feels centered */
.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, #000 85%);
  pointer-events: none;
}
/* Ensure ALL content stays above */
.service-hero,
.service-section,
footer,
header {
  position: relative;
  z-index: 5;
}

/* ---- MESH CANVAS ---- */
#pageMesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ---- ORANGE INTERACTIVE GLOW ---- */
.page-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      700px circle at var(--x, 50%) var(--y, 50%),
      rgba(255, 111, 0, 0.14),
      transparent 65%
    );
  mix-blend-mode: screen;
  transition: opacity 0.4s ease;
}

/* ---- ASTERISK FIELD ---- */
.page-asterisks {
  position: absolute;
  inset: 0;
  font-family: "Orbitron", monospace;
  font-size: 14px;
  color: rgba(255,255,255,0.06);
  letter-spacing: 70px;
  white-space: nowrap;
  animation: driftAsterisks 60s linear infinite;
  mask-image: radial-gradient(circle at center, black 35%, transparent 80%);
}

.page-asterisks::before,
.page-asterisks::after {
  content: "*   *     *      *   *      *";
  position: absolute;
  left: -20%;
}

.page-asterisks::before { top: 25%; }
.page-asterisks::after  { top: 65%; }

/* Slow ambient drift */
@keyframes driftAsterisks {
  0%   { transform: translateX(0); }
  100% { transform: translateX(160px); }
}

/* MOBILE TUNING */
@media (max-width: 768px) {
  .page-asterisks { opacity: 0.35; }
  .page-glow { opacity: 0.6; }
}



/* =========================
   SERVICE HERO — EDITORIAL
========================= */

.service-hero {
  color: #fff;
  padding: 140px 6vw 100px;
  position: relative;
}

.service-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: center;
}

/* LEFT */
.service-eyebrow {
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--brand-orange);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}

.service-hero-title {
  font-family: "Michroma", sans-serif;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.service-hero-subtitle {
  font-family: "Exo 2", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  max-width: 560px;
  opacity: 0.68;
  margin-bottom: 26px;
}

.service-hero-cta {
  font-size: 14px;
  padding: 10px 16px;
}

/* RIGHT — GLASS CARD */
.service-hero-hook {
  display: flex;
  justify-content: flex-end;
}

.hook-card {
  width: 100%;
  max-width: 360px;
  padding: 28px 26px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
}

.hook-eyebrow {
  font-family: "Orbitron", sans-serif;
  font-size: 10px;
  letter-spacing: 1.6px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.hook-title {
  font-family: "Michroma", sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
}

.hook-desc {
  font-family: "Exo 2", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.65;
  margin-bottom: 18px;
}

.hook-actions {
  display: flex;
  gap: 10px;
}

.hook-btn {
  flex: 1;
  text-align: center;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

.hook-btn.whatsapp {
  background: #25d366;
  color: #000;
}

.hook-btn.email {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}

.hook-btn:hover {
  transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .service-hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .service-hero-hook {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .service-hero {
    padding: 120px 20px 80px;
  }

  .service-hero-title {
    font-size: 28px;
  }
}

/* =========================
   SERVICE OVERVIEW (GLASS)
========================= */

.service-overview {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6vw;
}

/* Glass panel */
.overview-panel {
  max-width: 900px;
  padding: 64px 68px;
  border-radius: 32px;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Eyebrow */
.overview-eyebrow {
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-orange);
  display: inline-block;
  margin-bottom: 18px;
}

/* Title */
.overview-title {
  font-family: "Michroma", sans-serif;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.2;
  margin-bottom: 24px;
  color: #fff;
}

/* Body */
.overview-text {
  font-family: "Exo 2", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 760px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .overview-panel {
    padding: 48px 36px;
    border-radius: 26px;
  }
}

@media (max-width: 600px) {
  .overview-panel {
    padding: 40px 26px;
  }

  .overview-title {
    font-size: 24px;
  }
}


/* =========================
   SERVICE CAPABILITIES
========================= */

.service-capabilities {
  padding: 140px 6vw;
  position: relative;
}

.capabilities-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.capabilities-header {
  max-width: 520px;
  margin-bottom: 80px;
}

.capabilities-eyebrow {
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-orange);
  display: inline-block;
  margin-bottom: 14px;
}

.capabilities-title {
  font-family: "Michroma", sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.25;
  color: #fff;
}

/* GRID */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 80px;
}

.capability-item h3 {
  font-family: "Exo 2", sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.capability-item p {
  font-family: "Exo 2", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 360px;
}

/* SUBTLE HOVER (DESKTOP ONLY) */
@media (hover: hover) {
  .capability-item {
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .capability-item:hover {
    transform: translateY(-4px);
  }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px;
  }
}

@media (max-width: 640px) {
  .service-capabilities {
    padding: 100px 20px;
  }

  .capabilities-header {
    margin-bottom: 56px;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}



/* =========================
   TECH STACK MARQUEE
========================= */

.tech-stack {
  padding: 60px 0;
  position: relative;
  overflow-x: hidden;
}

.tech-stack-header {
  max-width: 520px;
  margin: 0 auto 80px;
  text-align: center;
}

.tech-eyebrow {
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 12px;
  display: inline-block;
}

.tech-title {
  font-family: "Michroma", sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.25;
  color: #fff;
}

/* MARQUEE */
.tech-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.tech-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: techScroll 45s linear infinite;
}

/* GLASS CARD */
.tech-card {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 28px;

  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.18);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;

  box-shadow:
    0 30px 70px rgba(0,0,0,0.55);

  overflow: hidden; /* 🔑 important */
}

.tech-card img {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 12px rgba(255,111,0,0.4));
}

.tech-card span {
  font-family: "Exo 2", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}


/* SCROLL ANIMATION */
@keyframes techScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .tech-track {
    animation-duration: 65s;
  }

  .tech-card {
    min-width: 140px;
    height: 120px;
  }
}


/* =========================
   CONTACT OUTRO
========================= */

.contact-outro {
  padding: 100px 6vw;
  position: relative;
  overflow-x: hidden !important;
}

.contact-shell {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 120px;
  align-items: center;
}

/* LEFT COPY */
.contact-kicker {
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-orange);
  display: inline-block;
  margin-bottom: 18px;
}

.contact-heading {
  font-family: "Michroma", sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 28px;
}

.contact-description {
  font-family: "Exo 2", sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
}

/* RIGHT CHANNELS */
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* CHANNEL CARD */
.contact-channel {
  position: relative;
  padding: 26px 30px;
  border-radius: 26px;

  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,0.16);

  display: flex;
  align-items: center;
  gap: 22px;

  text-decoration: none;

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.channel-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;

  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
}

.channel-icon i {
  font-size: 22px;
  color: var(--brand-orange);
}

.channel-meta span {
  font-family: "Exo 2", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.channel-meta small {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* HOVER — RESTRAINED */
@media (hover: hover) {
  .contact-channel:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 90px rgba(0,0,0,0.55);
    border-color: rgba(255,111,0,0.35);
  }
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .contact-shell {
    grid-template-columns: 1fr;
    gap: 80px;
  }
}

@media (max-width: 540px) {
  .contact-outro {
    padding: 140px 20px;
  }
}
