:root {
  --bg: #07111f;
  --bg2: #0b1728;
  --card: #101f33;
  --text: #f5f9ff;
  --muted: #a9b8cc;
  --blue: #2f8cff;
  --cyan: #3ee7ff;
  --purple: #8b5cf6;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(47, 140, 255, 0.18),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(62, 231, 255, 0.13),
      transparent 30%
    ),
    radial-gradient(
      circle at 65% 85%,
      rgba(139, 92, 246, 0.18),
      transparent 35%
    ),
    linear-gradient(135deg, #06101d, #0a1729 45%, #07111f);
  z-index: -3;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  z-index: -2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
  animation: noiseMove 1.8s steps(3) infinite;
}
@keyframes noiseMove {
  50% {
    transform: translate(2%, -2%);
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 18px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 13, 23, 0.78);
  backdrop-filter: blur(15px);
  transition: all 0.4s ease;
}
header.scrolled {
  padding: 6px 6%;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  width: 120px;
  height: auto;
  transition: 0.4s;
}
header.scrolled .logo img {
  transform: scale(0.72);
}
nav a {
  color: #faf9f9;
  text-decoration: none;
  margin-left: 32px;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
}
nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -7px;
  background: #006ee6;
  transition: 0.3s;
}
nav a:hover,
nav a.active {
  color: #3ee7ff;
}
nav a:hover::after,
nav a.active::after {
  width: 100%;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(62, 231, 255, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  transition: 0.35s;
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
section {
  padding: 100px 6%;
}
.service-hero {
  min-height: 640px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 150px;
}
.moving-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #050d17;
}
.hero-tech-image {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 13, 23, 0.9),
      rgba(5, 13, 23, 0.55),
      rgba(5, 13, 23, 0.18)
    ),
    url("../../resources/services/mobility-hero.png");
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  animation: heroImageMove 18s ease-in-out infinite alternate;
}
.hero-overlay-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 45%,
      rgba(47, 140, 255, 0.25),
      transparent 34%
    ),
    radial-gradient(
      circle at 75% 30%,
      rgba(139, 92, 246, 0.22),
      transparent 30%
    ),
    radial-gradient(
      circle at 70% 75%,
      rgba(62, 231, 255, 0.17),
      transparent 35%
    );
  animation: glowMove 9s ease-in-out infinite alternate;
}
.grid-lines {
  position: absolute;
  inset: -80px;
  background-image:
    linear-gradient(rgba(62, 231, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 231, 255, 0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  transform: perspective(800px) rotateX(58deg) translateY(-130px);
  animation: gridMove 7s linear infinite;
}
@keyframes heroImageMove {
  0% {
    transform: scale(1.05) translateX(-25px);
  }
  50% {
    transform: scale(1.12) translateX(25px) translateY(18px);
  }
  100% {
    transform: scale(1.08) translateX(-10px) translateY(28px);
  }
}
@keyframes glowMove {
  100% {
    filter: hue-rotate(25deg);
    transform: translateX(25px);
  }
}
@keyframes gridMove {
  to {
    background-position: 70px 70px;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  text-decoration: none;
  font-weight: 800;
  margin-bottom: 26px;
}
.tag,
.section-title span {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #dff9ff;
  border: 1px solid rgba(62, 231, 255, 0.35);
  background: rgba(62, 231, 255, 0.08);
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
}
h1 {
  font-size: clamp(46px, 6vw, 86px);
  line-height: 1.02;
  letter-spacing: -3px;
  margin-bottom: 22px;
}
.gradient-text {
  background: linear-gradient(90deg, #fff, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  color: transparent;
  background-size: 300%;
  animation: gradientFlow 4s linear infinite;
}
@keyframes gradientFlow {
  to {
    background-position: 300% center;
  }
}
.hero-content p {
  font-size: 20px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 auto;
  max-width: 760px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 16px;
  text-decoration: none;
  color: white;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}
.btn.primary {
  background: linear-gradient(135deg, var(--blue), #0f3155);
  box-shadow: 0 20px 45px rgba(47, 140, 255, 0.28);
}
.btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(62, 231, 255, 0.2);
}
.section-title {
  text-align: center;
  margin-bottom: 55px;
}
.section-title h2 {
  font-size: clamp(36px, 4vw, 62px);
  margin-top: 12px;
  letter-spacing: -2px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 38px;
  align-items: start;
}
.glass-card,
.feature-card,
.process-card,
.cta-box,
.image-placeholder {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.detail-card {
  padding: 42px;
}
.detail-card h2 {
  font-size: 44px;
  margin-bottom: 22px;
}
.detail-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 16px;
}
.sub-heading {
  margin: 34px 0 18px;
  color: var(--cyan);
  font-size: 28px;
}
.features-list {
  display: grid;
  gap: 18px;
  list-style: none;
}
.feature-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  transition: 0.4s;
}
.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(62, 231, 255, 0.08);
}
.feature-card i {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 18px;
  background: rgba(47, 140, 255, 0.18);
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 24px;
}
.feature-card h4 {
  font-size: 22px;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 16px;
  margin: 0;
}
.tech-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(62, 231, 255, 0.22);
  color: #dff9ff;
  font-weight: 700;
  transition: 0.35s;
}
.tech-tag:hover {
  transform: translateY(-5px);
  background: rgba(62, 231, 255, 0.11);
}
.side-panel {
  display: grid;
  gap: 28px;
  position: sticky;
  top: 120px;
}
.image-placeholder {
  height: 340px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(47, 140, 255, 0.28),
    rgba(62, 231, 255, 0.08)
  );
  animation: floating 5s ease-in-out infinite;
}
.image-placeholder i {
  font-size: 100px;
  color: var(--cyan);
  text-shadow: 0 0 45px rgba(62, 231, 255, 0.55);
}
@keyframes floating {
  50% {
    transform: translateY(-18px);
  }
}
.cta-box {
  padding: 34px;
  background: linear-gradient(
    135deg,
    rgba(47, 140, 255, 0.2),
    rgba(139, 92, 246, 0.1)
  );
}
.cta-box h3 {
  font-size: 30px;
  margin-bottom: 14px;
}
.cta-box p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
}
.process-section {
  background: linear-gradient(
    135deg,
    rgba(47, 140, 255, 0.13),
    rgba(62, 231, 255, 0.07)
  );
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-card {
  padding: 34px;
  text-align: center;
  transition: 0.45s;
}
.process-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}
.process-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--cyan);
  margin-bottom: 14px;
  text-shadow: 0 0 25px rgba(62, 231, 255, 0.35);
}
.process-card h4 {
  font-size: 24px;
  margin-bottom: 12px;
}
.process-card p {
  color: var(--muted);
  line-height: 1.7;
}
.reveal {
  opacity: 0;
  transform: translateY(70px);
  filter: blur(10px);
  transition:
    opacity 1s ease,
    transform 1s ease,
    filter 1s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
footer {
  padding: 70px 6% 28px;
  background: #050d17;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 45px;
}
.footer-grid p,
.footer-grid a {
  color: var(--muted);
  line-height: 2;
  text-decoration: none;
  display: block;
}
.footer-grid h3 {
  color: white;
}
.socials {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.socials a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cyan);
  animation: iconBounce 2.8s ease-in-out infinite;
}
@keyframes iconBounce {
  50% {
    transform: translateY(-7px) scale(1.08);
  }
}
.copyright {
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.page-loader {
  position: fixed;
  inset: 0;
  background: #050d17;
  z-index: 9999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  animation: loaderOut 0.8s ease 1.2s forwards;
}
.loader-ring {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--cyan);
  border-right-color: var(--blue);
  animation: spin 0.9s linear infinite;
}
.page-loader p {
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 900;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes loaderOut {
  to {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.08);
  }
}
@media (max-width: 1000px) {
  nav {
    display: flex !important;
    position: absolute;
    top: 100%;
    right: 6%;
    width: min(300px, 88vw);
    flex-direction: column;
    padding: 18px;
    border-radius: 20px;
    background: rgba(5, 13, 23, 0.96);
    border: 1px solid rgba(62, 231, 255, 0.22);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.96);
    transition: 0.35s;
  }
  nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  nav a {
    margin: 0;
    padding: 15px 14px;
  }
  .menu-toggle {
    display: flex;
  }
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .side-panel {
    position: relative;
    top: auto;
  }
}
@media (max-width: 650px) {
  section {
    padding: 85px 5%;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  h1 {
    letter-spacing: -1px;
  }
  .detail-card {
    padding: 28px;
  }
  .service-hero {
    min-height: 560px;
  }
}

/* HOME-PAGE MATCHING HEADER + LOGO VISIBILITY */
header {
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  border-bottom: none !important;
  transition: all 0.4s ease !important;
}
header.scrolled {
  padding: 12px 6% !important;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(47, 140, 255, 0.18),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(62, 231, 255, 0.13),
      transparent 30%
    ),
    radial-gradient(
      circle at 65% 85%,
      rgba(139, 92, 246, 0.18),
      transparent 35%
    ),
    linear-gradient(135deg, #06101d, #0a1729 45%, #07111f) !important;
  backdrop-filter: blur(15px) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16) !important;
}
.logo img {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 5px;
}

/* SAME ROTATING BORDER HOVER EFFECT AS HOME PAGE */
.glass-card,
.feature-item,
.process-card,
.cta-box,
.visual-card,
.content-card,
.benefit-card,
.career-form-container,
.hero-card {
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  isolation: isolate;
}
.glass-card::after,
.feature-item::after,
.process-card::after,
.cta-box::after,
.visual-card::after,
.content-card::after,
.benefit-card::after,
.career-form-container::after,
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 55deg,
    var(--cyan) 80deg,
    var(--blue) 100deg,
    transparent 125deg,
    transparent 235deg,
    var(--purple) 260deg,
    var(--cyan) 280deg,
    transparent 310deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}
.glass-card:hover::after,
.feature-item:hover::after,
.process-card:hover::after,
.cta-box:hover::after,
.visual-card:hover::after,
.content-card:hover::after,
.benefit-card:hover::after,
.career-form-container:hover::after,
.hero-card:hover::after {
  opacity: 1;
  animation: borderTravel 1.1s linear forwards;
}
@keyframes borderTravel {
  0% {
    transform: rotate(0deg);
    opacity: 0.35;
  }
  100% {
    transform: rotate(180deg);
    opacity: 1;
  }
}
/* =========================
   TECH TAG HOVER EFFECT
========================= */

.tech-tag {
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  z-index: 1;
}

.tech-tag span,
.tech-tag,
.tech-tag i {
  transition: 0.4s ease;
}

.tech-tag::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 0%;

  background: linear-gradient(
    180deg,
    rgba(62, 231, 255, 0.22),
    rgba(47, 140, 255, 0.35)
  );

  transition: height 0.45s ease;
  z-index: -1;
}

.tech-tag:hover::before {
  height: 100%;
}

.tech-tag:hover {
  color: #3ee7ff !important;
  border-color: rgba(62, 231, 255, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(62, 231, 255, 0.16);
}

.tech-tag:hover i {
  color: #3ee7ff;
}

/* =========================
   PROCESS CARD WATER FILL
========================= */

.process-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.45s ease;
}

.process-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 0%;

  background: linear-gradient(
    180deg,
    rgba(47, 140, 255, 0.12),
    rgba(62, 231, 255, 0.22),
    rgba(47, 140, 255, 0.32)
  );

  transition: height 0.55s ease;
  z-index: -1;
}

.process-card:hover::before {
  height: 100%;
}

.process-card:hover {
  transform: translateY(-10px);
  border-color: rgba(62, 231, 255, 0.5);
  box-shadow: 0 22px 55px rgba(62, 231, 255, 0.18);
}

/* number color */

.process-card .process-num {
  transition: 0.45s ease;
}

.process-card:hover .process-num {
  color: #3ee7ff;
  transform: scale(1.08);
}

/* heading */

.process-card h4,
.process-card p {
  transition: 0.45s ease;
}

.process-card:hover h4 {
  color: #3ee7ff;
}

.process-card:hover p {
  color: #d8ecff;
}

/* HOMEPAGE MATCHING NEON CYBERPUNK THEME - applied without changing layout/content */
:root {
  --bg: #050510 !important;
  --bg2: #0a0a2e !important;
  --card: #0f0f28 !important;
  --card2: #16163a !important;
  --text: #f5f9ff !important;
  --muted: #b0b7d9 !important;
  --blue: #00f0ff !important;
  --cyan: #60efff !important;
  --purple: #b829ea !important;
  --pink: #ff2d95 !important;
  --line: rgba(160, 132, 255, 0.2) !important;
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.55) !important;
}

body,
.moving-bg,
.page-loader,
footer {
  background: #050510 !important;
}

body::before,
header.scrolled {
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 45, 149, 0.18),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(0, 240, 255, 0.13),
      transparent 30%
    ),
    radial-gradient(
      circle at 65% 85%,
      rgba(184, 41, 234, 0.18),
      transparent 35%
    ),
    linear-gradient(135deg, #050510, #0a0a2e 45%, #050510) !important;
}

header {
  background: rgba(5, 5, 16, 0.72) !important;
  backdrop-filter: blur(18px) !important;
  border-bottom: none !important;
}

.logo,
nav a:hover,
nav a.active,
.back-link,
.section-title span,
.section-subtitle,
.tag,
.service-card a,
.feature-card i,
.features-list i,
.process-card i,
.info-card i,
.hero-card i,
footer a:hover {
  color: #00f0ff !important;
}

nav a::after {
  background: #ff2d95 !important;
}
.logo img {
  filter: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
.gradient-text,
.hero h1 span {
  background: linear-gradient(
    135deg,
    #00f0ff,
    #b829ea,
    #ff2d95,
    #60efff
  ) !important;
  background-size: 300% 300% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: gradientShift 4s ease infinite !important;
  text-shadow: none !important;
  filter: none !important;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.tag,
.section-title span,
.section-subtitle {
  border-color: rgba(0, 240, 255, 0.35) !important;
  background: rgba(0, 240, 255, 0.08) !important;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.12) !important;
}

.btn,
.btn.primary {
  background: linear-gradient(
    135deg,
    #6d28d9,
    #b829ea,
    #ff2d95,
    #00f0ff
  ) !important;
  background-size: 220% 220% !important;
  animation: gradientShift 4s ease infinite !important;
  box-shadow:
    0 20px 45px rgba(255, 45, 149, 0.35),
    0 0 60px rgba(0, 240, 255, 0.16) !important;
  border-color: rgba(255, 45, 149, 0.45) !important;
}

.btn.secondary {
  background: rgba(15, 15, 40, 0.55) !important;
  border-color: rgba(0, 240, 255, 0.35) !important;
  color: #00f0ff !important;
}

.btn:hover {
  box-shadow:
    0 24px 60px rgba(255, 45, 149, 0.35),
    0 0 80px rgba(0, 240, 255, 0.22) !important;
}

.glass-card,
.hero-card,
.feature-card,
.feature-item,
.process-card,
.cta-box,
.visual-card,
.tech-tag,
.content-card,
.benefit-card,
.role-card,
.culture-card,
.opening-card,
.apply-box,
.info-card,
.service-card,
.detail-card,
.client-logo-box,
.contact-box,
.card {
  background: rgba(15, 15, 40, 0.52) !important;
  border-color: rgba(160, 132, 255, 0.2) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(22px);
}

.glass-card:hover,
.hero-card:hover,
.feature-card:hover,
.feature-item:hover,
.process-card:hover,
.cta-box:hover,
.visual-card:hover,
.tech-tag:hover,
.content-card:hover,
.benefit-card:hover,
.role-card:hover,
.culture-card:hover,
.opening-card:hover,
.apply-box:hover,
.info-card:hover,
.service-card:hover,
.detail-card:hover,
.client-logo-box:hover,
.contact-box:hover,
.card:hover {
  border-color: rgba(255, 45, 149, 0.5) !important;
  box-shadow:
    0 30px 70px rgba(184, 41, 234, 0.3),
    0 0 90px rgba(0, 240, 255, 0.16) !important;
  background: rgba(20, 20, 50, 0.7) !important;
}

.hero-overlay-glow,
.career-hero::after,
.hero::after {
  background:
    radial-gradient(
      circle at 20% 45%,
      rgba(255, 45, 149, 0.22),
      transparent 34%
    ),
    radial-gradient(
      circle at 75% 30%,
      rgba(184, 41, 234, 0.2),
      transparent 30%
    ),
    radial-gradient(circle at 70% 75%, rgba(0, 240, 255, 0.16), transparent 35%) !important;
}

.hero-tech-image,
.career-hero::before,
.hero::before {
  filter: saturate(1.15) hue-rotate(45deg) !important;
}

.grid-lines {
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.08) 1px, transparent 1px) !important;
}

.menu-toggle {
  border-color: rgba(0, 240, 255, 0.35) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

form input,
form textarea,
input,
textarea,
select {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(160, 132, 255, 0.25) !important;
  color: white !important;
}

form input:focus,
form textarea:focus,
input:focus,
textarea:focus,
select:focus {
  border-color: #00f0ff !important;
  box-shadow:
    0 0 0 4px rgba(0, 240, 255, 0.08),
    0 0 35px rgba(0, 240, 255, 0.15) !important;
}

.loader-ring {
  border-top-color: #00f0ff !important;
  border-right-color: #ff2d95 !important;
}

.page-loader {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 22px !important;
}

.loader-logo {
  width: 200px;
  height: auto;
  object-fit: contain;
  margin-bottom: 22px;
  animation: loaderLogoFloat 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 14px rgba(0, 240, 255, 0.32));
}

@keyframes loaderLogoFloat {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.03);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}

.cursor-glow {
  background: radial-gradient(
    circle,
    rgba(0, 240, 255, 0.16),
    transparent 65%
  ) !important;
}

/* FINAL HEADER BLEND + HERO COLOR EFFECT UPDATE */
html {
  scroll-behavior: auto !important;
  overflow-anchor: none !important;
}
body {
  overflow-anchor: none !important;
}
header {
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  border-bottom: none !important;
}
header.scrolled {
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 45, 149, 0.18),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(0, 240, 255, 0.13),
      transparent 30%
    ),
    radial-gradient(
      circle at 65% 85%,
      rgba(184, 41, 234, 0.18),
      transparent 35%
    ),
    linear-gradient(135deg, #050510, #0a0a2e 45%, #050510) !important;
  backdrop-filter: blur(15px) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16) !important;
}
nav a::after {
  background: #ff2d95 !important;
}
nav a:hover,
nav a.active {
  color: #00f0ff !important;
}
@keyframes heroHeadingColorCycle {
  0% {
    color: #00f0ff;
    text-shadow: none;
    filter: none;
  }
  33% {
    color: #ff2d95;
    text-shadow: none;
    filter: none;
  }
  66% {
    color: #b829ea;
    text-shadow: none;
    filter: none;
  }
  100% {
    color: #00f0ff;
    text-shadow: none;
    filter: none;
  }
}
@keyframes heroHeadingGradientCycle {
  0% {
    background-position: 0% 50%;
    filter: none;
  }
  50% {
    background-position: 100% 50%;
    filter: none;
  }
  100% {
    background-position: 0% 50%;
    filter: none;
  }
}
.service-hero h1,
.career-hero h1,
.hero h1 {
  animation: heroHeadingColorCycle 3.8s ease-in-out infinite !important;
  text-shadow: none !important;
  filter: none !important;
}
.service-hero h1 .gradient-text,
.career-hero h1 .gradient-text,
.hero h1 .gradient-text,
.hero h1 span {
  background: linear-gradient(
    135deg,
    #00f0ff,
    #b829ea,
    #ff2d95,
    #60efff
  ) !important;
  background-size: 300% 300% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: heroHeadingGradientCycle 3.8s ease-in-out infinite !important;
  text-shadow: none !important;
  filter: none !important;
}
.page-loader {
  background: #050510 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 22px !important;
}
.loader-logo {
  width: 130px !important;
  height: auto !important;
  object-fit: contain !important;
  margin-bottom: 22px !important;
  animation: loaderLogoFloat 2.5s ease-in-out infinite !important;
}
.page-loader p {
  display: none !important;
}
.loader-ring {
  border-top-color: #00f0ff !important;
  border-right-color: #ff2d95 !important;
}
@keyframes loaderLogoFloat {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.03);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}
/* ===== PAGE LOADER ===== */

.page-loader{
  position:fixed;
  inset:0;
  background:#050816;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:999999;
}

.loader-wrapper{
  position:relative;
  width:190px;
  height:190px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.loader-ring{
  position:absolute;
  width:190px;
  height:190px;
  border-radius:50%;
  border:4px solid transparent;
  border-top:4px solid #00f0ff;
  border-right:4px solid #2563ff;
  animation:loaderSpin 1.2s linear infinite;
}

.loader-logo{
  width:120px;
  height:auto;
  object-fit:contain;
  z-index:2;
}

/* rotating ring only */
@keyframes loaderSpin{
  100%{
    transform:rotate(360deg);
  }
}