/* =========================================================
   custom-effects.css  —  NeugraTech
   Neon Glow + Glassmorphism Visual Effects Layer
   WordPress / Elementor Ready → paste into Custom CSS fields
   ========================================================= */

/* ── 1. @font-face Declarations (Almarai — AR + EN) ─────── */
@font-face { font-family:'Almarai'; src:url('fonts/Almarai-Light.woff2') format('woff2'); font-weight:300; font-style:normal; font-display:swap; }
@font-face { font-family:'Almarai'; src:url('fonts/Almarai-Regular.woff2') format('woff2'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Almarai'; src:url('fonts/Almarai-Bold.woff2') format('woff2'); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'Almarai'; src:url('fonts/Almarai-ExtraBold.woff2') format('woff2'); font-weight:800; font-style:normal; font-display:swap; }

/* ── 2. CSS Variables (Global Theme Control) ───────────── */
:root {
  /* Brand Colors — NeugraTechNewLogoColor.png */
  --color-primary:        #0066FF;
  --color-primary-rgb:    0, 102, 255;
  --color-secondary:      #00D2B4;
  --color-secondary-rgb:  0, 210, 180;
  --color-accent:         #00B8DC;
  --color-accent-rgb:     0, 184, 220;

  /* Legacy aliases (used across HTML & components) */
  --nt-primary:        var(--color-primary);
  --nt-primary-rgb:    var(--color-primary-rgb);
  --nt-secondary:      var(--color-secondary);
  --nt-secondary-rgb:  var(--color-secondary-rgb);
  --nt-accent:         var(--color-accent);
  --nt-accent-rgb:     var(--color-accent-rgb);

  /* Background Layers */
  --nt-bg:             #06060f;
  --nt-bg-2:           #0b0b1c;
  --nt-bg-3:           #101028;

  /* Glass Surface */
  --nt-surface:        rgba(255,255,255,0.04);
  --nt-surface-hover:  rgba(255,255,255,0.07);
  --nt-border:         rgba(255,255,255,0.08);
  --nt-border-glow:    rgba(var(--color-primary-rgb), 0.35);

  /* Text */
  --nt-text:           #e2e8f0;
  --nt-text-muted:     rgba(226,232,240,0.55);
  --nt-text-faint:     rgba(226,232,240,0.3);

  /* Gradients */
  --nt-gradient:       linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --nt-gradient-r:     linear-gradient(315deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --nt-gradient-v:     linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --nt-gradient-glass: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.08) 0%, rgba(var(--color-secondary-rgb), 0.06) 100%);

  /* Shadows / Glows */
  --nt-glow-primary:   0 0 25px rgba(var(--color-primary-rgb), 0.35), 0 0 70px rgba(var(--color-primary-rgb), 0.12);
  --nt-glow-secondary: 0 0 25px rgba(var(--color-secondary-rgb), 0.35), 0 0 70px rgba(var(--color-secondary-rgb), 0.12);
  --nt-glow-accent:    0 0 25px rgba(var(--color-accent-rgb), 0.35), 0 0 70px rgba(var(--color-accent-rgb), 0.12);
  --nt-glow-card:      0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  --nt-glow-card-hover:0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(var(--color-primary-rgb), 0.25), 0 0 40px rgba(var(--color-primary-rgb), 0.08);

  /* Typography */
  --nt-font:           'Almarai', system-ui, -apple-system, sans-serif;
  --nt-font-arabic:    'Almarai', system-ui, sans-serif;

  /* Spacing / Radius */
  --nt-radius-sm:      8px;
  --nt-radius-md:      16px;
  --nt-radius-lg:      24px;
  --nt-radius-xl:      32px;
  --nt-radius-pill:    9999px;

  /* Transitions */
  --nt-transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nt-transition-slow:all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 3. Base Reset & Typography ────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* Force dark canvas — overrides Astra white body (fixes white strip under admin bar) */
html,
html body,
body.neugra-canvas,
body.page-template-templatesneugra-canvas-php,
body.page-template-templates-neugra-canvas-php {
  background-color: var(--nt-bg) !important;
  background: var(--nt-bg) !important;
}

body {
  font-family: var(--nt-font);
  background-color: var(--nt-bg);
  color: var(--nt-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Arabic body override */
html[lang="ar"],
html[lang="ar"] body,
html[dir="rtl"],
html[dir="rtl"] body,
body[lang="ar"],
body.neugra-canvas {
  font-family: var(--nt-font-arabic) !important;
}

h1, h2, h3, h4, h5, h6,
.nt-navbar,
.nt-navbar .nav-link,
.btn-nt-primary,
.btn-nt-outline {
  font-family: var(--nt-font) !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--nt-text);
}

/* Logged-in: keep WP admin bar visible; offset fixed navbar below it */
body.admin-bar .nt-navbar {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .nt-navbar {
    top: 46px;
  }
}

/* ── 4. Scrollbar Styling ───────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--nt-bg-2); }
::-webkit-scrollbar-thumb {
  background: var(--nt-gradient);
  border-radius: var(--nt-radius-pill);
}

/* ── 5. Selection Color ─────────────────────────────────── */
::selection { background: rgba(var(--color-primary-rgb),0.35); color: #fff; }

/* ── 6. Background Glow Orbs ────────────────────────────── */
.nt-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(64px);
  opacity: 0.18;
  animation: nt-orb-drift 12s ease-in-out infinite alternate;
  contain: layout style paint;
  will-change: transform;
  transform: translateZ(0);
}
.nt-orb-primary  { background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%); }
.nt-orb-secondary{ background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%); }
.nt-orb-accent   { background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%); }

@keyframes nt-orb-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(30px, -20px, 0) scale(1.05); }
  100% { transform: translate3d(-20px, 15px, 0) scale(0.95); }
}

@media (max-width: 991.98px) {
  .nt-orb {
    animation: none;
    filter: blur(40px);
    will-change: auto;
  }

  .glass-card,
  .glass-card-sm,
  .glass-card:hover,
  .glass-card-sm:hover {
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
  }

  .nt-arc-glow::before,
  .nt-arc-glow::after,
  .nt-cta-section::after {
    filter: blur(24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nt-orb { animation: none; }
}

/* ── 7. Grid Background Pattern ─────────────────────────── */
.nt-bg-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ── 8. Glassmorphism Cards ─────────────────────────────── */
.glass-card {
  background: var(--nt-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--nt-border);
  border-radius: var(--nt-radius-lg);
  box-shadow: var(--nt-glow-card);
  transition: var(--nt-transition);
}

.glass-card:hover {
  background: var(--nt-surface-hover);
  border-color: var(--nt-border-glow);
  box-shadow: var(--nt-glow-card-hover);
  transform: translateY(-4px);
}

.glass-card-sm {
  background: var(--nt-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--nt-border);
  border-radius: var(--nt-radius-md);
  box-shadow: var(--nt-glow-card);
  transition: var(--nt-transition);
}

.glass-card-sm:hover {
  background: var(--nt-surface-hover);
  border-color: var(--nt-border-glow);
  transform: translateY(-3px);
}

/* ── 9. Gradient Text ───────────────────────────────────── */
.gradient-text {
  background: var(--nt-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

/* ── 10. Neon Glow Classes ──────────────────────────────── */
.neon-glow-primary   { box-shadow: var(--nt-glow-primary); }
.neon-glow-secondary { box-shadow: var(--nt-glow-secondary); }
.neon-glow-accent    { box-shadow: var(--nt-glow-accent); }

/* ── 11. Gradient Buttons ───────────────────────────────── */
.btn-nt-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--nt-gradient);
  color: #fff;
  font-family: var(--nt-font);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--nt-radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: var(--nt-transition);
  box-shadow: var(--nt-glow-primary);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-nt-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-nt-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--color-primary-rgb),0.5), 0 0 80px rgba(var(--color-primary-rgb),0.2);
  color: #fff;
  text-decoration: none;
}

.btn-nt-primary:hover::before { opacity: 1; }

.btn-nt-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--nt-text);
  font-family: var(--nt-font);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--nt-border);
  border-radius: var(--nt-radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: var(--nt-transition);
  white-space: nowrap;
}

.btn-nt-outline:hover {
  border-color: var(--nt-primary);
  color: var(--nt-primary);
  background: rgba(var(--color-primary-rgb),0.08);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-nt-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: rgba(37,211,102,0.12);
  color: #25d366;
  font-family: var(--nt-font);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--nt-radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: var(--nt-transition);
  white-space: nowrap;
}

.btn-nt-whatsapp:hover {
  background: rgba(37,211,102,0.2);
  color: #25d366;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(37,211,102,0.25);
  text-decoration: none;
}

/* ── 12. Navbar ─────────────────────────────────────────── */
.nt-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--nt-transition);
}

.nt-navbar.scrolled {
  background: rgba(6,6,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--nt-border);
  padding: 0.6rem 0;
}

.nt-navbar .navbar-brand img {
  height: 44px;
  width: auto;
  transition: var(--nt-transition);
}

.nt-navbar .nav-link {
  color: var(--nt-text-muted) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.4rem 0.85rem !important;
  border-radius: var(--nt-radius-sm);
  transition: var(--nt-transition);
  position: relative;
}

.nt-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--nt-gradient);
  border-radius: 2px;
  transition: width 0.3s;
}

.nt-navbar .nav-link:hover,
.nt-navbar .nav-link.active {
  color: var(--nt-text) !important;
}

.nt-navbar .nav-link:hover::after,
.nt-navbar .nav-link.active::after {
  width: 70%;
}

.nt-navbar .navbar-toggler {
  border: 1px solid var(--nt-border);
  border-radius: var(--nt-radius-sm);
  padding: 0.4rem 0.6rem;
  color: var(--nt-text);
}

.nt-navbar .navbar-toggler:focus { box-shadow: none; }

/* ── 13. Section Layout Utilities ───────────────────────── */
.nt-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.nt-section-sm { padding: 60px 0; }

.nt-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.nt-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  background: rgba(var(--color-primary-rgb),0.1);
  border: 1px solid rgba(var(--color-primary-rgb),0.25);
  border-radius: var(--nt-radius-pill);
  color: var(--nt-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.nt-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.nt-section-subtitle {
  font-size: 1.05rem;
  color: var(--nt-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── 14. Hero Section ───────────────────────────────────── */
.nt-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

/* ── Hero Video Background (developer coding video) ─────── */
.nt-hero.nt-hero-video-bg {
  background: var(--nt-bg);
}

.nt-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.nt-hero-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  filter: saturate(1.12) contrast(1.05) brightness(0.52);
}

.nt-hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 50% 0%, rgba(var(--color-primary-rgb),0.16) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 10% 60%, rgba(var(--color-accent-rgb),0.12) 0%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 90% 55%, rgba(var(--color-secondary-rgb),0.10) 0%, transparent 70%),
    linear-gradient(180deg, rgba(6,6,15,0.92) 0%, rgba(6,6,15,0.62) 35%, rgba(6,6,15,0.90) 100%);
}

/* Re-stack hero layers for video mode:
   video (0) → overlay (1) → arc (2) → orbs (3) → content (4) */
.nt-hero.nt-hero-video-bg > .nt-arc-glow { z-index: 2; }
.nt-hero.nt-hero-video-bg > .nt-orb { z-index: 3; }
.nt-hero.nt-hero-video-bg > .container { z-index: 4; }

@media (prefers-reduced-motion: reduce) {
  .nt-hero-video { display: none; }
  .nt-hero.nt-hero-video-bg {
    background:
      radial-gradient(ellipse 70% 60% at 50% 20%, rgba(var(--color-primary-rgb),0.10) 0%, transparent 60%),
      radial-gradient(ellipse 60% 55% at 20% 75%, rgba(var(--color-accent-rgb),0.08) 0%, transparent 70%),
      radial-gradient(ellipse 60% 55% at 80% 70%, rgba(var(--color-secondary-rgb),0.07) 0%, transparent 70%),
      var(--nt-bg);
  }
}

.nt-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(var(--color-primary-rgb),0.1);
  border: 1px solid rgba(var(--color-primary-rgb),0.25);
  border-radius: var(--nt-radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--nt-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: nt-pulse-badge 3s ease-in-out infinite;
}

@keyframes nt-pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--color-primary-rgb),0.3); }
  50%       { box-shadow: 0 0 0 6px rgba(var(--color-primary-rgb),0); }
}

.nt-hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.nt-hero-desc {
  font-size: 1.1rem;
  color: var(--nt-text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 540px;
}

.nt-hero-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.nt-hero-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--nt-text-muted);
}

.nt-hero-features li i {
  color: var(--nt-primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.nt-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.nt-trust-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--nt-text-faint);
}

.nt-trust-bar i { color: #f59e0b; }

/* Hero visual card */
.nt-hero-visual {
  position: relative;
  animation: nt-float 6s ease-in-out infinite;
}

@keyframes nt-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}

.nt-hero-visual .glass-card {
  padding: 0;
  overflow: hidden;
}

/* ── 15. Stats Row ──────────────────────────────────────── */
.nt-stats-row {
  position: relative;
  padding: 40px 0;
  border-top: 1px solid var(--nt-border);
  border-bottom: 1px solid var(--nt-border);
}

.nt-stat-item {
  text-align: center;
  padding: 1rem;
}

.nt-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--nt-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.nt-stat-label {
  font-size: 0.85rem;
  color: var(--nt-text-muted);
  font-weight: 500;
}

/* ── 16. Value / Why Us Cards ───────────────────────────── */
.nt-value-card {
  padding: 2rem;
  height: 100%;
}

.nt-value-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--nt-radius-md);
  background: var(--nt-gradient-glass);
  border: 1px solid rgba(var(--color-primary-rgb),0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--nt-primary);
  margin-bottom: 1.2rem;
  transition: var(--nt-transition);
}

.nt-value-card:hover .nt-value-icon {
  background: var(--nt-gradient);
  color: #fff;
  box-shadow: var(--nt-glow-primary);
}

.nt-value-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.nt-value-card p {
  font-size: 0.88rem;
  color: var(--nt-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── 17. Service Cards ──────────────────────────────────── */
.nt-service-card {
  padding: 2rem 1.75rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.nt-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--nt-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.nt-service-card:hover::before { transform: scaleX(1); }

.nt-service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--nt-radius-md);
  background: var(--nt-gradient-glass);
  border: 1px solid rgba(var(--color-primary-rgb),0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--nt-primary);
  margin-bottom: 1.5rem;
  transition: var(--nt-transition);
}

.nt-service-card:hover .nt-service-icon {
  background: var(--nt-gradient);
  color: #fff;
  box-shadow: var(--nt-glow-primary);
  transform: scale(1.05);
}

.nt-service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.nt-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nt-service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--nt-text-muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nt-service-list li:last-child { border-bottom: none; }

.nt-service-list li i {
  color: var(--nt-primary);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* ── 18. Portfolio Cards ────────────────────────────────── */
.nt-portfolio-card {
  border-radius: var(--nt-radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--nt-border);
  transition: var(--nt-transition);
}

.nt-portfolio-card:hover {
  transform: translateY(-6px);
  border-color: var(--nt-border-glow);
  box-shadow: var(--nt-glow-card-hover);
}

.nt-portfolio-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--nt-bg-3);
}

.nt-portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.nt-portfolio-card:hover .nt-portfolio-thumb img { transform: scale(1.08); }

.nt-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,15,0.95) 0%, rgba(6,6,15,0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--nt-transition);
}

.nt-portfolio-card:hover .nt-portfolio-overlay { opacity: 1; }

.nt-portfolio-overlay h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.nt-portfolio-overlay p {
  font-size: 0.82rem;
  color: var(--nt-text-muted);
  margin-bottom: 1rem;
}

.nt-portfolio-body {
  padding: 1.25rem 1.5rem;
  background: var(--nt-surface);
}

.nt-portfolio-tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: rgba(var(--color-primary-rgb),0.1);
  border: 1px solid rgba(var(--color-primary-rgb),0.2);
  border-radius: var(--nt-radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--nt-primary);
  margin-inline-end: 0.4rem;
  margin-bottom: 0.4rem;
}

/* ── 19. Process Steps ──────────────────────────────────── */
.nt-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  position: relative;
}

.nt-process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.nt-process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--nt-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 1.2rem;
  box-shadow: var(--nt-glow-primary);
  position: relative;
  z-index: 1;
  transition: var(--nt-transition);
}

.nt-process-step:hover .nt-process-number {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(var(--color-primary-rgb),0.5);
}

.nt-process-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.nt-process-step p {
  font-size: 0.82rem;
  color: var(--nt-text-muted);
  margin: 0;
}

.nt-process-connector {
  position: absolute;
  top: 50px;
  left: calc(50% + 30px);
  right: calc(-50% + 30px);
  height: 1px;
  background: linear-gradient(to right, var(--nt-primary), transparent);
  opacity: 0.3;
}

/* ── 20. Pricing Cards ──────────────────────────────────── */
.nt-pricing-card {
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--nt-transition);
}

.nt-pricing-card.featured {
  background: linear-gradient(135deg, rgba(var(--color-primary-rgb),0.08) 0%, rgba(var(--color-secondary-rgb),0.06) 100%);
  border-color: rgba(var(--color-primary-rgb),0.3) !important;
}

.nt-pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--nt-gradient);
}

.nt-pricing-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--nt-gradient);
  border-radius: var(--nt-radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nt-plan-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: var(--nt-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nt-plan-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.nt-plan-tagline {
  font-size: 0.85rem;
  color: var(--nt-text-muted);
  margin-bottom: 1.5rem;
}

.nt-plan-price {
  margin-bottom: 1.5rem;
}

.nt-plan-price .from-label {
  display: block;
  font-size: 0.8rem;
  color: var(--nt-text-muted);
  margin-bottom: 0.2rem;
}

.nt-plan-price .amount {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--nt-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.nt-plan-price .currency {
  font-size: 0.85rem;
  color: var(--nt-text-muted);
}

.nt-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  border-top: 1px solid var(--nt-border);
  padding-top: 1.5rem;
}

.nt-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--nt-text-muted);
  padding: 0.4rem 0;
}

.nt-plan-features li i { color: var(--nt-primary); margin-top: 0.2rem; flex-shrink: 0; }

/* ── 21. Tech Badges ────────────────────────────────────── */
.nt-tech-category {
  padding: 2rem 1.75rem;
  height: 100%;
}

.nt-tech-category h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--nt-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.nt-tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nt-tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--nt-border);
  border-radius: var(--nt-radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--nt-text-muted);
  transition: var(--nt-transition);
  cursor: default;
}

.nt-tech-badge:hover {
  background: rgba(var(--color-primary-rgb),0.1);
  border-color: rgba(var(--color-primary-rgb),0.3);
  color: var(--nt-primary);
}

/* ── 22. FAQ Accordion ──────────────────────────────────── */
.nt-faq-item {
  border-bottom: 1px solid var(--nt-border);
  overflow: hidden;
}

.nt-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--nt-text);
  transition: var(--nt-transition);
  user-select: none;
}

.nt-faq-question:hover { color: var(--nt-primary); }

.nt-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--nt-surface);
  border: 1px solid var(--nt-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: var(--nt-transition);
}

.nt-faq-item.open .nt-faq-icon {
  background: var(--nt-gradient);
  border-color: transparent;
  color: #fff;
  transform: rotate(45deg);
}

.nt-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.nt-faq-item.open .nt-faq-answer { max-height: 500px; }

.nt-faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.93rem;
  color: var(--nt-text-muted);
  line-height: 1.8;
}

.nt-faq-answer-inner ul { list-style: none; padding: 0; margin: 0; }
.nt-faq-answer-inner ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.3rem 0;
}
.nt-faq-answer-inner ul li i { color: var(--nt-primary); margin-top: 0.25rem; font-size: 0.8rem; }

/* ── 23. CTA Section ────────────────────────────────────── */
.nt-cta-section {
  position: relative;
  text-align: center;
  padding: 100px 0;
  overflow: hidden;
}

.nt-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(var(--color-primary-rgb),0.07) 0%, transparent 70%);
}

/* ── 24. Contact Cards ──────────────────────────────────── */
.nt-contact-card {
  padding: 2rem 1.75rem;
  height: 100%;
  text-align: center;
  transition: var(--nt-transition);
}

.nt-contact-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--nt-radius-md);
  background: var(--nt-gradient-glass);
  border: 1px solid rgba(var(--color-primary-rgb),0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--nt-primary);
  margin: 0 auto 1.2rem;
  transition: var(--nt-transition);
}

.nt-contact-card:hover .nt-contact-icon {
  background: var(--nt-gradient);
  color: #fff;
  box-shadow: var(--nt-glow-primary);
}

.nt-contact-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.nt-contact-card p, .nt-contact-card a {
  font-size: 0.9rem;
  color: var(--nt-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nt-contact-card a:hover { color: var(--nt-primary); }

/* ── 25. Footer ─────────────────────────────────────────── */
.nt-footer {
  background: var(--nt-bg-2);
  border-top: 1px solid var(--nt-border);
  padding: 80px 0 0;
}

.nt-footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 1rem;
}

.nt-footer-brand p {
  font-size: 0.88rem;
  color: var(--nt-text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.nt-footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.nt-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--nt-surface);
  border: 1px solid var(--nt-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nt-text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--nt-transition);
}

.nt-footer-social a:hover {
  background: var(--nt-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--nt-glow-primary);
}

.nt-footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nt-text);
  margin-bottom: 1.2rem;
}

.nt-footer-col ul { list-style: none; padding: 0; margin: 0; }

.nt-footer-col ul li {
  margin-bottom: 0.7rem;
}

.nt-footer-col ul li a {
  font-size: 0.88rem;
  color: var(--nt-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nt-footer-col ul li a:hover { color: var(--nt-primary); }

.nt-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
  margin-top: 3rem;
  border-top: 1px solid var(--nt-border);
  font-size: 0.82rem;
  color: var(--nt-text-faint);
}

.nt-footer-bottom a {
  color: var(--nt-text-faint);
  text-decoration: none;
}

.nt-footer-bottom a:hover { color: var(--nt-primary); }

/* ── 26. Scroll Animations ──────────────────────────────── */
.nt-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.nt-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.nt-fade-up-d1 { transition-delay: 0.1s; }
.nt-fade-up-d2 { transition-delay: 0.2s; }
.nt-fade-up-d3 { transition-delay: 0.3s; }
.nt-fade-up-d4 { transition-delay: 0.4s; }
.nt-fade-up-d5 { transition-delay: 0.5s; }
.nt-fade-up-d6 { transition-delay: 0.6s; }

/* ── 27. Preloader ──────────────────────────────────────── */
#nt-preloader {
  position: fixed;
  inset: 0;
  background: var(--nt-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

#nt-preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.nt-preloader-logo {
  animation: nt-pulse 1.5s ease-in-out infinite;
}

@keyframes nt-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.95); }
}

/* ── 28. Responsive Adjustments ─────────────────────────── */
@media (max-width: 991.98px) {
  .nt-section { padding: 70px 0; }
  .nt-hero { padding: 120px 0 60px; }
  .nt-hero-visual { margin-top: 3rem; }

  .glass-card,
  .glass-card:hover {
    backdrop-filter: blur(14px) saturate(130%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(130%) !important;
  }
}

@media (max-width: 767.98px) {
  .nt-section { padding: 50px 0; }
  .nt-hero { padding: 100px 0 50px; }
  .nt-hero-buttons { flex-direction: column; }
  .nt-hero-buttons .btn-nt-primary,
  .nt-hero-buttons .btn-nt-outline,
  .nt-hero-buttons .btn-nt-whatsapp { width: 100%; justify-content: center; }
  .nt-footer-bottom { text-align: center; flex-direction: column; }
  .nt-process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
  .nt-section-title { font-size: 1.75rem; }
  .nt-hero-title   { font-size: 2rem; }
  .nt-stat-number  { font-size: 2rem; }
}

/* ── 29. Ultra-wide (≥1400px) ───────────────────────────── */
@media (min-width: 1400px) {
  .nt-hero { padding: 160px 0 100px; }
  .nt-hero-title { font-size: 4.5rem; }
}

/* ── 30. Accessibility ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important; clip: rect(0,0,0,0) !important;
  white-space: nowrap !important; border: 0 !important;
}

*:focus-visible {
  outline: 2px solid var(--nt-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* RTL-specific tweaks */
[dir="rtl"] .nt-navbar .nav-link::after {
  right: 50%;
  left: auto;
  transform: translateX(50%);
}

[dir="rtl"] .nt-service-card::before {
  transform-origin: right;
}


/* ==================================================================
   ==== INTENSE GLOW & LIGHTING EFFECTS FOR ELEMENTOR ==============
   ==================================================================
   All rules in this block are self-contained and can be copy-pasted
   individually into Elementor → Advanced → Custom CSS for the
   corresponding section or widget.
   ================================================================== */

/* ── A. HERO CRESCENT ARC GLOW ────────────────────────────────────
   Element: .nt-arc-glow  (place as first child inside .nt-hero)
   Replicates the massive horizon-sunrise arc from reference image 3.
   ------------------------------------------------------------------ */
.nt-arc-glow {
  position: absolute;
  left: -30%;
  right: -30%;
  bottom: -80px;
  height: 680px;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
}

/* Outer diffuse halo */
.nt-arc-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 50% 100%,
    rgba(var(--color-primary-rgb), 0.28) 0%,
    rgba(var(--color-accent-rgb), 0.18) 18%,
    rgba(var(--color-secondary-rgb), 0.10) 38%,
    rgba(0, 40, 80, 0.05) 58%,
    transparent 72%
  );
  filter: blur(36px);
  border-radius: inherit;
}

/* Inner bright specular rim — the "arc edge" */
.nt-arc-glow::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -2px;
  height: 340px;
  background: radial-gradient(
    ellipse 75% 55% at 50% 100%,
    rgba(180, 230, 255, 0.10) 0%,
    rgba(var(--color-primary-rgb), 0.55) 8%,
    rgba(var(--color-accent-rgb), 0.35) 20%,
    rgba(var(--color-secondary-rgb), 0.18) 38%,
    transparent 62%
  );
  filter: blur(18px);
  border-radius: 50% 50% 0 0 / 80% 80% 0 0;
}

/* Ensure hero children sit above the arc */
.nt-hero > .container { position: relative; z-index: 3; }
.nt-hero > .nt-orb    { z-index: 2; }


/* ── B. SECTION BACKDROP HOTSPOTS ─────────────────────────────────
   Add class .nt-hotspot to any section, then apply a modifier:
   .nt-hotspot-primary / .nt-hotspot-secondary / .nt-hotspot-accent
   NOTE: no overflow:hidden and no forced child z-index — orbs and
   containers keep their own stacking context.
   ------------------------------------------------------------------ */
.nt-hotspot { position: relative; }

/* The ::before pseudo-element is the light-source layer.
   It sits at z-index 0, behind the orbs (z-index 2) and
   the container (z-index 2 via inline style). */
.nt-hotspot::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.nt-hotspot-primary::before {
  background: radial-gradient(
    ellipse 55% 65% at 15% 50%,
    rgba(var(--color-primary-rgb), 0.12) 0%,
    transparent 70%
  );
}

.nt-hotspot-secondary::before {
  background: radial-gradient(
    ellipse 55% 65% at 85% 40%,
    rgba(var(--color-accent-rgb), 0.10) 0%,
    transparent 70%
  );
}

.nt-hotspot-accent::before {
  background: radial-gradient(
    ellipse 55% 65% at 50% 85%,
    rgba(var(--color-secondary-rgb), 0.10) 0%,
    transparent 70%
  );
}

/* CTA section gets a centered full-dome hotspot */
.nt-cta-section::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -30%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(
    ellipse 80% 70% at 50% 100%,
    rgba(var(--color-primary-rgb), 0.18) 0%,
    rgba(var(--color-secondary-rgb), 0.10) 30%,
    transparent 68%
  );
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
}


/* ── C. INTENSIFIED PRIMARY BUTTON GLOW ───────────────────────────
   Multi-layer box-shadow for the "neon lit" button look.
   Copy into: Elementor widget → Style → CSS Filters / Custom CSS
   ------------------------------------------------------------------ */
.btn-nt-primary {
  box-shadow:
    0 0  8px  rgba(var(--color-secondary-rgb), 0.90),
    0 0  22px rgba(var(--color-accent-rgb), 0.55),
    0 0  55px rgba(var(--color-primary-rgb), 0.25),
    0 4px 20px rgba(0,    0,   0, 0.40);
}

.btn-nt-primary:hover {
  box-shadow:
    0 0  12px rgba(var(--color-secondary-rgb), 1.0),
    0 0  35px rgba(var(--color-accent-rgb), 0.75),
    0 0  80px rgba(var(--color-primary-rgb), 0.40),
    0 6px 30px rgba(0,    0,   0, 0.50);
  transform: translateY(-3px) scale(1.02);
}


/* ── D. INTENSIFIED GLASS CARDS ───────────────────────────────────
   Stronger blur, luminous border, layered shadow depth.
   ------------------------------------------------------------------ */
.glass-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.055) 0%,
    rgba(255, 255, 255, 0.025) 100%
  );
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0  2px  0  0  rgba(255, 255, 255, 0.07) inset,
    0 -1px  0  0  rgba(255, 255, 255, 0.03) inset,
    0  8px 32px    rgba(0,   0,   0, 0.50),
    0 24px 72px    rgba(0,   0,   0, 0.30),
    0  0   0  1px rgba(255, 255, 255, 0.04);
}

.glass-card:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.075) 0%,
    rgba(255, 255, 255, 0.040) 100%
  );
  backdrop-filter: blur(36px) saturate(170%);
  -webkit-backdrop-filter: blur(36px) saturate(170%);
  border-color: rgba(var(--color-primary-rgb), 0.30);
  box-shadow:
    0  2px  0  0  rgba(255, 255, 255, 0.10) inset,
    0 -1px  0  0  rgba(255, 255, 255, 0.04) inset,
    0 12px 40px   rgba(0,   0,   0, 0.55),
    0 28px 80px   rgba(0,   0,   0, 0.30),
    0  0  40px    rgba(var(--color-primary-rgb), 0.07),
    0  0   0  1px rgba(var(--color-primary-rgb), 0.18);
  transform: translateY(-5px);
}

.glass-card-sm {
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 2px 0 0 rgba(255,255,255,0.07) inset,
    0 6px 20px rgba(0,0,0,0.45),
    0 0  0 1px rgba(255,255,255,0.04);
}


/* ── E. HEADLINE TEXT GLOW ─────────────────────────────────────────
   Applies a soft coloured text-shadow to major headlines.
   ------------------------------------------------------------------ */
.nt-hero-title {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.50);
}

.nt-section-title {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.40);
}

/* Gradient-text glow — wraps .gradient-text spans */
.gradient-text {
  filter: drop-shadow(0 0 20px rgba(var(--color-primary-rgb), 0.40))
          drop-shadow(0 0 50px rgba(var(--color-secondary-rgb), 0.20));
}

.nt-hero-title .gradient-text,
.nt-section-title .gradient-text {
  filter: none;
  text-shadow: none;
}


/* ── F. SECTION BADGE / TAG POINT-GLOW ────────────────────────────
   Replicates the sharp central flare seen on tags in image_4.png.
   ------------------------------------------------------------------ */
.nt-section-badge {
  position: relative;
  background: rgba(var(--color-primary-rgb), 0.08);
  border: 1px solid rgba(var(--color-primary-rgb), 0.30);
  box-shadow:
    0  0  8px  rgba(var(--color-secondary-rgb), 0.55),
    0  0  20px rgba(var(--color-accent-rgb), 0.25),
    0  0  45px rgba(var(--color-primary-rgb), 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  color: #fff;
  text-shadow: 0 0 12px rgba(var(--color-primary-rgb), 0.80);
  animation: nt-badge-pulse 2.8s ease-in-out infinite;
}

/* Central point-flare behind the badge */
.nt-section-badge::before {
  content: '';
  position: absolute;
  inset: -8px -16px;
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    rgba(var(--color-secondary-rgb), 0.25) 0%,
    rgba(var(--color-primary-rgb), 0.12) 35%,
    transparent 70%
  );
  filter: blur(8px);
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
}

@keyframes nt-badge-pulse {
  0%, 100% {
    box-shadow:
      0  0  8px  rgba(var(--color-secondary-rgb), 0.55),
      0  0  20px rgba(var(--color-accent-rgb), 0.25),
      0  0  45px rgba(var(--color-primary-rgb), 0.10),
      inset 0 1px 0 rgba(255, 255, 255, 0.10);
  }
  50% {
    box-shadow:
      0  0  14px rgba(var(--color-secondary-rgb), 0.85),
      0  0  35px rgba(var(--color-accent-rgb), 0.45),
      0  0  70px rgba(var(--color-primary-rgb), 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
}

/* Hero eyebrow badge variant */
.nt-hero-eyebrow {
  box-shadow:
    0  0  10px rgba(var(--color-secondary-rgb), 0.60),
    0  0  25px rgba(var(--color-primary-rgb), 0.25);
  text-shadow: 0 0 10px rgba(var(--color-primary-rgb), 0.70);
}


/* ── G. SERVICE & VALUE ICON GLOW ─────────────────────────────────
   On hover the icon box emits a matching neon halo.
   ------------------------------------------------------------------ */
.nt-value-card:hover .nt-value-icon,
.nt-service-card:hover .nt-service-icon {
  box-shadow:
    0  0  10px rgba(var(--color-primary-rgb), 0.85),
    0  0  25px rgba(var(--color-accent-rgb), 0.50),
    0  0  55px rgba(var(--color-secondary-rgb), 0.25);
}


/* ── H. PRICING CARD FEATURED GLOW ───────────────────────────────
   The "most popular" plan gets a full ambient aura.
   ------------------------------------------------------------------ */
.nt-pricing-card.featured {
  box-shadow:
    0  0  0  1px rgba(var(--color-primary-rgb), 0.35),
    0  0  30px rgba(var(--color-primary-rgb), 0.15),
    0  0  80px rgba(var(--color-secondary-rgb), 0.08),
    0 20px 60px rgba(0,    0,   0, 0.50);
}

.nt-pricing-card.featured:hover {
  box-shadow:
    0  0  0  1px rgba(var(--color-primary-rgb), 0.55),
    0  0  40px rgba(var(--color-primary-rgb), 0.25),
    0  0 100px rgba(var(--color-secondary-rgb), 0.15),
    0 24px 70px rgba(0,    0,   0, 0.55);
}


/* ── I. PROCESS NUMBER GLOW ───────────────────────────────────────
   Each step number disc radiates its own ring.
   ------------------------------------------------------------------ */
.nt-process-number {
  box-shadow:
    0  0  12px rgba(var(--color-primary-rgb), 0.80),
    0  0  30px rgba(var(--color-accent-rgb), 0.45),
    0  0  60px rgba(var(--color-secondary-rgb), 0.20);
}

.nt-process-step:hover .nt-process-number {
  box-shadow:
    0  0  18px rgba(var(--color-primary-rgb), 1.00),
    0  0  45px rgba(var(--color-accent-rgb), 0.70),
    0  0  90px rgba(var(--color-secondary-rgb), 0.35);
  transform: scale(1.12);
}


/* ── J. STAT NUMBER SHIMMER ───────────────────────────────────────
   The big counter numbers appear to glow.
   ------------------------------------------------------------------ */
.nt-stat-number {
  filter: drop-shadow(0 0 16px rgba(var(--color-primary-rgb), 0.60))
          drop-shadow(0 0 40px rgba(var(--color-secondary-rgb), 0.30));
}


/* ── K. NAVBAR GLOW ON SCROLLED STATE ────────────────────────────
   When the user scrolls, the top bar gets a coloured bottom glow.
   ------------------------------------------------------------------ */
.nt-navbar.scrolled {
  border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.15);
  box-shadow:
    0  1px  0 rgba(var(--color-primary-rgb), 0.12),
    0  4px 30px rgba(0,    0,   0, 0.60);
}


/* ── L. PORTFOLIO CARD HOVER GLOW ────────────────────────────────
   Card floats and glows when hovered.
   ------------------------------------------------------------------ */
.nt-portfolio-card:hover {
  box-shadow:
    0  0  0  1px rgba(var(--color-primary-rgb), 0.30),
    0  0  30px rgba(var(--color-primary-rgb), 0.12),
    0 20px 50px rgba(0,    0,   0, 0.60);
}


/* ── M. CONTACT ICON GLOW ─────────────────────────────────────────
   On hover the icon emits its own neon flash.
   ------------------------------------------------------------------ */
.nt-contact-card:hover .nt-contact-icon {
  box-shadow:
    0  0  12px rgba(var(--color-primary-rgb), 0.90),
    0  0  28px rgba(var(--color-accent-rgb), 0.50),
    0  0  55px rgba(var(--color-secondary-rgb), 0.25);
}


/* ── N. FOOTER SOCIAL LINK GLOW ───────────────────────────────────
   Social icon circles emit a brand neon on hover.
   ------------------------------------------------------------------ */
.nt-footer-social a:hover {
  box-shadow:
    0  0  10px rgba(var(--color-primary-rgb), 0.90),
    0  0  25px rgba(var(--color-accent-rgb), 0.50),
    0  0  50px rgba(var(--color-secondary-rgb), 0.25);
}


/* ── O. TECH BADGE HOVER GLOW ─────────────────────────────────────
   Small tech chip tag gets a tight point-glow on hover.
   ------------------------------------------------------------------ */
.nt-tech-badge:hover {
  box-shadow:
    0  0  6px  rgba(var(--color-primary-rgb), 0.80),
    0  0  18px rgba(var(--color-secondary-rgb), 0.35);
  text-shadow: 0 0 8px rgba(var(--color-primary-rgb), 0.70);
}


/* ── P. nt-bg-grid SUBTLE GLOW OVERLAY ───────────────────────────
   Adds a very faint coloured tint to the dot-grid sections
   so the grid feels lit from within.
   ------------------------------------------------------------------ */
.nt-bg-grid {
  background-image:
    radial-gradient(circle, rgba(var(--color-primary-rgb),0.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 30px 30px, 30px 30px, 30px 30px;
}


/* ── END OF INTENSE GLOW & LIGHTING EFFECTS ─────────────────────── */


/* ==================================================================
   PORTFOLIO DETAIL PAGE STYLES
   ================================================================== */

/* ── Breadcrumb ── */
.nt-breadcrumb {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 2rem;
  background: rgba(6,6,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--nt-border);
  font-size: 0.82rem;
  color: var(--nt-text-muted);
  transition: var(--nt-transition);
}
.nt-breadcrumb a {
  color: var(--nt-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
}
.nt-breadcrumb a:hover { color: #fff; }
.nt-breadcrumb .sep { opacity: 0.4; }

/* ── Portfolio Hero ── */
.nt-pf-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.nt-pf-hero .nt-arc-glow { opacity: 0.7; }

/* ── Browser Mockup Frame ── */
.nt-browser-frame {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--nt-border);
  border-radius: var(--nt-radius-lg);
  overflow: hidden;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.07) inset,
    0 20px 60px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04);
}

.nt-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.2rem;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--nt-border);
}

.nt-browser-dots { display: flex; gap: 6px; }
.nt-browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.nt-browser-dot-r { background: var(--color-accent); box-shadow: 0 0 6px rgba(var(--color-accent-rgb),0.6); }
.nt-browser-dot-y { background: #f59e0b; box-shadow: 0 0 6px rgba(245,158,11,0.5); }
.nt-browser-dot-g { background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,0.5); }

.nt-browser-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--nt-border);
  border-radius: 20px;
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  color: var(--nt-text-muted);
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
}

.nt-browser-screen {
  height: 72vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
  scrollbar-width: thin;
  scrollbar-color: var(--nt-primary) rgba(255,255,255,0.1);
}

.nt-browser-screen::-webkit-scrollbar { width: 5px; }
.nt-browser-screen::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
.nt-browser-screen::-webkit-scrollbar-thumb {
  background: var(--nt-gradient);
  border-radius: 3px;
}

.nt-browser-screen img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Project Detail Cards ── */
.nt-pf-detail-card {
  padding: 2.5rem;
  height: 100%;
}

.nt-pf-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.9rem;
}

.nt-pf-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--nt-text-muted);
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--nt-border);
  border-radius: var(--nt-radius-md);
  transition: var(--nt-transition);
}

.nt-pf-features li:hover {
  background: rgba(var(--color-primary-rgb),0.06);
  border-color: rgba(var(--color-primary-rgb),0.25);
}

.nt-pf-features li i {
  color: var(--nt-primary);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* ── Project Meta Side Card ── */
.nt-pf-meta {
  padding: 2rem;
  position: sticky;
  top: 100px;
}

@media (max-width: 991.98px) {
  .nt-pf-meta {
    position: static;
    top: auto;
  }
}

.nt-pf-meta-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nt-pf-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nt-pf-meta-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nt-text-faint);
}

.nt-pf-meta-value {
  font-size: 0.9rem;
  color: var(--nt-text);
  font-weight: 500;
}

/* ── "Want something similar?" inline CTA ── */
.nt-pf-inline-cta {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(var(--color-primary-rgb),0.06) 0%, rgba(var(--color-secondary-rgb),0.04) 100%);
  border: 1px dashed rgba(var(--color-primary-rgb),0.3);
  border-radius: var(--nt-radius-lg);
  position: relative;
  overflow: hidden;
}

.nt-pf-inline-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(var(--color-primary-rgb),0.08) 0%, transparent 70%);
  pointer-events: none;
}

.nt-pf-inline-cta h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.nt-pf-inline-cta p {
  font-size: 0.88rem;
  color: var(--nt-text-muted);
  margin-bottom: 1.5rem;
}

/* ── Project navigation (prev/next) ── */
.nt-pf-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid var(--nt-border);
  flex-wrap: wrap;
}

.nt-pf-nav a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--nt-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nt-pf-nav a:hover { color: var(--nt-primary); }

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .nt-pf-hero { padding: 140px 0 60px; }
  .nt-browser-screen { height: 55vh; }
  .nt-pf-meta { position: static; }
}

@media (max-width: 767.98px) {
  .nt-pf-hero { padding: 120px 0 50px; min-height: auto; }
  .nt-pf-detail-card { padding: 1.5rem; }
  .nt-pf-inline-cta { padding: 1.5rem; }
}
