/*
Theme Name: ADS Theme
Theme URI: https://alphadigitalsolution.com/
Author: m.shaies
Description: Custom premium 3D WebGL Elementor-compatible theme with glowing glassmorphic elements and dark mode.
Version: 1.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@400;500;700;900&display=swap');

/* ==========================================================================
   CSS CUSTOM VARIABLES & RESET
   ========================================================================== */
:root {
  --bg: #06060c;
  --color-bg-darkest: #06060c;
  --color-cyan: #3DE0FC;
  --color-pink: #E977F5;
  --color-purple: #7928ca;
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(255, 255, 255, 0.72);
  
  /* Glow Colors */
  --glow-cyan: 0 0 10px rgba(61, 224, 252, 0.5), 0 0 25px rgba(61, 224, 252, 0.2);
  --glow-pink: 0 0 10px rgba(233, 119, 245, 0.5), 0 0 25px rgba(233, 119, 245, 0.2);
  
  /* Typography */
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  overflow-y: auto;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: visible !important;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-cyan);
}

/* Loading Spinner Animation */
@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hide grid and scanlines to match clean Antigravity look */
.background-grid, .scanlines {
  display: none !important;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, transparent 20%, rgba(6, 6, 12, 0.75) 100%);
}

#webgl-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ==========================================================================
   ANTIGRAVITY-STYLE PLASMA ORB DECORATORS (Fixed Viewport Floating)
   ========================================================================== */
.hero-orb {
  position: fixed;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  will-change: transform, border-radius;
}

.orb-1 {
  width: 580px; height: 580px;
  top: -150px; left: -100px;
  background: radial-gradient(circle,
    rgba(61, 224, 252, 0.38) 0%,
    rgba(61, 224, 252, 0.15) 50%,
    rgba(61, 224, 252, 0) 100%);
  filter: blur(40px);
  animation: orb-drift-1 22s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.orb-2 {
  width: 440px; height: 440px;
  top: 8%; right: -120px;
  background: radial-gradient(circle,
    rgba(233, 119, 245, 0.35) 0%,
    rgba(233, 119, 245, 0.12) 60%,
    rgba(233, 119, 245, 0) 100%);
  filter: blur(35px);
  animation: orb-drift-2 18s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.orb-3 {
  width: 650px; height: 650px;
  bottom: -180px; right: -150px;
  background: radial-gradient(circle,
    rgba(121, 40, 202, 0.32) 0%,
    rgba(61, 224, 252, 0.1) 60%,
    rgba(61, 224, 252, 0) 100%);
  filter: blur(50px);
  animation: orb-drift-3 26s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.orb-4 {
  width: 250px; height: 250px;
  top: 45%; left: 4%;
  background: radial-gradient(circle,
    rgba(233, 119, 245, 0.32) 0%,
    rgba(233, 119, 245, 0.08) 60%,
    rgba(233, 119, 245, 0) 100%);
  filter: blur(25px);
  animation: orb-drift-4 15s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.orb-5 {
  width: 350px; height: 350px;
  top: 25%; right: 18%;
  background: radial-gradient(circle,
    rgba(121, 40, 202, 0.3) 0%,
    rgba(61, 224, 252, 0.08) 60%,
    rgba(61, 224, 252, 0) 100%);
  filter: blur(30px);
  animation: orb-drift-5 20s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

/* Unique Organic Morphing & Drifting Animation Paths */
@keyframes orb-drift-1 {
  0%   { transform: translate(0px, 0px)   scale(1);    border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%; }
  25%  { transform: translate(80px, 50px) scale(1.06); border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%; }
  50%  { transform: translate(40px, 110px) scale(0.95); border-radius: 55% 45% 60% 40% / 45% 55% 40% 60%; }
  75%  { transform: translate(-30px, 70px) scale(1.08); border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%; }
  100% { transform: translate(0px, 0px)   scale(1);    border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%; }
}

@keyframes orb-drift-2 {
  0%   { transform: translate(0px, 0px)    scale(1);    border-radius: 50% 50% 60% 40% / 60% 40% 50% 50%; }
  33%  { transform: translate(-90px, 60px) scale(1.08);  border-radius: 40% 60% 50% 50% / 50% 50% 40% 60%; }
  66%  { transform: translate(-50px, 120px) scale(0.94); border-radius: 60% 40% 40% 60% / 40% 60% 60% 40%; }
  100% { transform: translate(0px, 0px)    scale(1);    border-radius: 50% 50% 60% 40% / 60% 40% 50% 50%; }
}

@keyframes orb-drift-3 {
  0%   { transform: translate(0px, 0px)     scale(1);    border-radius: 55% 45% 50% 50% / 50% 55% 45% 50%; }
  30%  { transform: translate(-100px,-80px)  scale(1.05); border-radius: 45% 55% 60% 40% / 60% 40% 55% 45%; }
  60%  { transform: translate(-50px, 50px)  scale(0.96); border-radius: 40% 60% 55% 45% / 55% 45% 40% 60%; }
  100% { transform: translate(0px, 0px)     scale(1);    border-radius: 55% 45% 50% 50% / 50% 55% 45% 50%; }
}

@keyframes orb-drift-4 {
  0%   { transform: translate(0px, 0px)   scale(1);    border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%; }
  50%  { transform: translate(60px,-50px) scale(1.12); border-radius: 60% 40% 50% 50% / 60% 40% 45% 55%; }
  100% { transform: translate(0px, 0px)   scale(1);    border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%; }
}

@keyframes orb-drift-5 {
  0%   { transform: translate(0px, 0px)    scale(1);    border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%; }
  33%  { transform: translate(-70px, 40px) scale(1.06); border-radius: 60% 40% 45% 55% / 40% 60% 55% 45%; }
  66%  { transform: translate(30px, 60px)  scale(0.95); border-radius: 40% 60% 50% 50% / 45% 55% 40% 60%; }
  100% { transform: translate(0px, 0px)    scale(1);    border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%; }
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  background: rgba(6, 6, 12, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 1px 10px rgba(255, 255, 255, 0.22), 0 1px 3px rgba(255, 255, 255, 0.1);
}

.header-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
}

.logo-wrapper {
  display: block;
  position: fixed;
  top: 10px;
  left: 40px;
  width: 180px;
  height: 60px;
  overflow: hidden;
  text-decoration: none;
  transform-style: preserve-3d;
  animation: logo-3d-spin 12s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  z-index: 110;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.logo-img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 110px;
  width: 110px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, filter 0.3s ease;
  animation: logo-glow-pulse 4s ease-in-out infinite alternate;
  pointer-events: none;
  mix-blend-mode: screen;
  background: transparent !important;
}

.logo-wrapper:hover .logo-img {
  transform: translate(-50%, -50%) scale(1.12);
}

@keyframes logo-3d-spin {
  0%   { transform: rotateY(0deg); }
  8%   { transform: rotateY(360deg); }
  100% { transform: rotateY(360deg); }
}

@keyframes logo-glow-pulse {
  0%   { filter: drop-shadow(0 0 5px rgba(61, 224, 252, 0.5)); }
  100% { filter: drop-shadow(0 0 16px rgba(233, 119, 245, 0.8)); }
}

.logo-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  padding: 6px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-cyan);
  box-shadow: var(--glow-cyan);
}

.btn-nav-cta {
  display: flex;
  align-items: center;
}

/* ==========================================================================
   BUTTONS (Antigravity Pill Style)
   ========================================================================== */
.btn-neon-rotate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-cyan);
  background: rgba(61, 224, 252, 0.04);
  border: 1px solid rgba(61, 224, 252, 0.45);
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  z-index: 1;
  animation: neon-border-shimmer 6s linear infinite;
}

.btn-neon-rotate::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  z-index: -1;
  transition: none;
}

.btn-neon-rotate:hover {
  background: rgba(61, 224, 252, 0.15);
  transform: scale(1.05);
  animation: neon-border-shimmer 1.8s linear infinite;
}

.btn-neon-rotate:hover::before {
  left: 150%;
  transition: all 0.6s ease;
}

.btn-neon-rotate.pink-border {
  color: var(--color-pink);
  background: rgba(233, 119, 245, 0.04);
  border-color: rgba(233, 119, 245, 0.45);
}

.btn-neon-rotate.pink-border::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.btn-neon-rotate.pink-border:hover {
  background: rgba(233, 119, 245, 0.15);
  transform: scale(1.05);
  animation: neon-border-shimmer 1.8s linear infinite;
}

/* ==========================================================================
   PAGE SECTIONS & VIEW MECHANISM (SPA)
   ========================================================================== */
.section, .section-custom {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
  z-index: 2;
  max-height: 0;
  overflow: hidden;
}

#home {
  min-height: 100vh;
}

.section.active, .section-custom.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
  position: relative;
  max-height: none;
  overflow: visible;
}

main {
  width: 100%;
  position: relative;
  flex-grow: 1;
}

.section:not(#home), .section-custom {
  padding-top: 140px;
  padding-bottom: 80px;
  justify-content: flex-start;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ==========================================================================
   1. HERO SECTION (HOME)
   ========================================================================== */
.hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 110px 0 60px;
  background: transparent;
  border: none;
  position: relative;
  z-index: 3;
}

/* Scrolling Ribbon Marquee */
.hero-welcome-ribbon {
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ribbon-text {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 4px;
  color: var(--color-cyan);
  text-shadow: 0 0 10px rgba(61, 224, 252, 0.35);
  animation: ribbon-scroll 24s linear infinite;
}

@keyframes ribbon-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Eyebrow Label */
.hero-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--color-cyan);
  margin-bottom: 24px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(61, 224, 252, 0.35);
  animation: neon-word-flicker 4s ease-in-out infinite;
}

.tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 8px var(--color-cyan);
  animation: dot-blink 1.5s ease-in-out infinite alternate;
}

@keyframes dot-blink {
  0%   { opacity: 0.3; transform: scale(0.8); }
  100% { opacity: 1;   transform: scale(1.2); }
}

/* Hero Title styling */
.hero-title {
  font-family: var(--font-display);
  font-size: 5.2rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 1000px;
  letter-spacing: 2px;
}

.title-line-1 {
  display: block;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.15), 0 0 40px rgba(61, 224, 252, 0.25);
}

.title-line-2 {
  display: inline-block;
  position: relative;
  text-align: center;
  white-space: nowrap;
  padding-right: 15px;
  background: linear-gradient(90deg, var(--color-cyan) 0%, #a28eff 38%, var(--color-pink) 70%, var(--color-cyan) 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 4s linear infinite;
  filter: drop-shadow(0 0 15px rgba(61, 224, 252, 0.3));
  min-height: 1.15em;
}

@media (max-width: 768px) {
  .title-line-2 {
    padding-right: 10px;
  }
}

/* Cursor blink */
.title-line-2::after {
  content: '|';
  position: absolute;
  right: 0;
  top: 0;
  -webkit-text-fill-color: var(--color-cyan);
  animation: cursor-blink 0.8s step-end infinite;
  filter: none;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@keyframes title-glow-pulse {
  0%   { text-shadow: 0 0 20px rgba(61, 224, 252, 0.15); }
  50%  { text-shadow: 0 0 35px rgba(233, 119, 245, 0.25); }
  100% { text-shadow: 0 0 25px rgba(61, 224, 252, 0.35); }
}

@keyframes shimmer-text {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}

/* Category Pills Row */
.hero-neon-words {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.neon-word {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: neon-word-flicker 3s ease-in-out infinite;
}

.neon-word.cyan {
  color: var(--color-cyan);
  text-shadow: 0 0 8px rgba(61, 224, 252, 0.6);
}

.neon-word.pink {
  color: var(--color-pink);
  text-shadow: 0 0 8px rgba(233, 119, 245, 0.6);
  animation-delay: 0.5s;
}

.neon-sep {
  color: rgba(255, 255, 255, 0.15);
  font-size: 1.1rem;
}

@keyframes neon-word-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.75; }
}

.hero-desc {
  font-size: 1.15rem;
  color: #ffffff;
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.8;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 1), 0 2px 5px rgba(0, 0, 0, 0.9), 0 4px 12px rgba(0, 0, 0, 0.8);
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}

/* Hero Stats Section */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 900px;
  margin-top: 50px;
}

.hero-stat-card {
  padding: 20px 10px;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease;
}

.hero-stat-card:hover {
  transform: translateY(-3px);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-cyan), #a28eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.hero-stat-card:nth-child(even) .stat-num {
  background: linear-gradient(135deg, var(--color-pink), #a28eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
  background: transparent;
  border: none;
  position: relative;
  z-index: 3;
}

.section-subtitle {
  font-family: var(--font-display);
  color: var(--color-pink);
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(233, 119, 245, 0.35);
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.section-desc {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.7;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 1), 0 2px 4px rgba(0, 0, 0, 0.9);
}

/* ==========================================================================
   GLASSMORPHIC CARDS (Antigravity Clean Glass Vibe)
   ========================================================================== */
.glass-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
  animation: neon-border-shimmer 8s linear infinite;
}

/* Float Animation Triggered on Card Hovers */
.glass-panel:hover, .seo-card:hover, .why-card:hover {
  animation: float-y 2.6s ease-in-out infinite alternate, neon-border-shimmer 2.8s linear infinite;
}

.glass-panel.pink-accent:hover, .pink-card:hover {
  border-color: rgba(233, 119, 245, 0.25);
  box-shadow: 0 15px 40px rgba(233, 119, 245, 0.05);
}

@keyframes float-y {
  0%   { transform: translateY(0px); }
  100% { transform: translateY(-7px); }
}

/* ==========================================================================
   2. SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 3;
}

.service-card {
  padding: 36px 32px;
}

.service-card.pink-card:hover {
  border-color: rgba(233, 119, 245, 0.25);
  box-shadow: 0 15px 40px rgba(233, 119, 245, 0.05);
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(61, 224, 252, 0.06);
  border: 1px solid rgba(61, 224, 252, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-cyan);
}

.pink-card .service-icon-box {
  background: rgba(233, 119, 245, 0.06);
  border-color: rgba(233, 119, 245, 0.2);
  color: var(--color-pink);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features-list {
  list-style: none;
  margin-bottom: 24px;
}

.service-feature-item {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 4px 0 4px 16px;
  position: relative;
}

.service-feature-item::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--color-cyan);
  font-size: 1.1rem;
  line-height: 0.8;
}

.pink-card .service-feature-item::before {
  color: var(--color-pink);
}

.service-link {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-cyan);
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.service-link:hover {
  text-shadow: 0 0 8px var(--color-cyan);
}

.pink-card .service-link {
  color: var(--color-pink);
}

.pink-card .service-link:hover {
  text-shadow: 0 0 8px var(--color-pink);
}

/* ==========================================================================
   3. PRICING SECTION
   ========================================================================== */
.pricing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  position: relative;
  z-index: 3;
}

.pricing-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.pricing-label.active {
  color: var(--white);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* CSS Toggle switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-round {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: .4s;
  border-radius: 34px;
}

.slider-round:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--color-cyan);
  box-shadow: var(--glow-cyan);
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider-round:before {
  transform: translateX(26px);
  background-color: var(--color-pink);
  box-shadow: var(--glow-pink);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 3;
}

.pricing-card {
  padding: 40px 32px;
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(61, 224, 252, 0.3);
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 15px 45px rgba(61, 224, 252, 0.05);
}

.pricing-card.featured:hover {
  transform: translateY(-12px);
  border-color: var(--color-cyan);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-cyan);
  border: 1px solid rgba(61, 224, 252, 0.4);
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pricing-cost {
  margin-bottom: 30px;
}

.price-val {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
}

.price-period {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: 36px;
}

.pricing-feature {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-feature svg {
  color: var(--color-cyan);
  flex-shrink: 0;
}

.pricing-card.pink-accent .pricing-feature svg {
  color: var(--color-pink);
}

.pricing-feature.disabled {
  opacity: 0.25;
}

.pricing-action {
  width: 100%;
}

.btn-cyan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-cyan);
  background: rgba(61, 224, 252, 0.12);
  border: 1px solid rgba(61, 224, 252, 0.4);
  padding: 12px 28px;
  border-radius: 50px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
  animation: neon-border-shimmer 6s linear infinite;
}

.btn-cyan::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  z-index: -1;
}

.btn-cyan:hover {
  background: var(--color-cyan);
  color: var(--bg);
  transform: scale(1.05);
  animation: neon-border-shimmer 1.8s linear infinite;
}

.btn-cyan:hover::before {
  left: 150%;
  transition: all 0.6s ease;
}

.btn-outline-cyan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-cyan);
  background: transparent;
  border: 1px solid rgba(61, 224, 252, 0.35);
  padding: 12px 28px;
  border-radius: 50px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
  animation: neon-border-shimmer 6s linear infinite;
}

.btn-outline-cyan::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  z-index: -1;
}

.btn-outline-cyan:hover {
  background: rgba(61, 224, 252, 0.15);
  transform: scale(1.05);
  animation: neon-border-shimmer 1.8s linear infinite;
}

.btn-outline-cyan:hover::before {
  left: 150%;
  transition: all 0.6s ease;
}

.btn-outline-pink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-pink);
  background: transparent;
  border: 1px solid rgba(233, 119, 245, 0.35);
  padding: 12px 28px;
  border-radius: 50px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
  animation: neon-border-shimmer 6s linear infinite;
}

.btn-outline-pink::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  z-index: -1;
}

.btn-outline-pink:hover {
  background: rgba(233, 119, 245, 0.15);
  transform: scale(1.05);
  animation: neon-border-shimmer 1.8s linear infinite;
}

.btn-outline-pink:hover::before {
  left: 150%;
  transition: all 0.6s ease;
}

/* ==========================================================================
   3. PORTFOLIO SECTION
   ========================================================================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 3;
}

/* Portfolio Tabs styling */
.portfolio-tab-btn.active {
  background: var(--color-cyan) !important;
  color: #040408 !important;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(61, 224, 252, 0.4);
}

.portfolio-tab-btn:hover:not(.active) {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.05);
}

.portfolio-img-zoom {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-img-zoom:hover {
  transform: scale(1.06);
}

.portfolio-card {
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.portfolio-card.pink-card:hover {
  border-color: rgba(233, 119, 245, 0.25);
  box-shadow: 0 15px 40px rgba(233, 119, 245, 0.05);
}

.portfolio-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-cyan);
  border: 1px solid rgba(61, 224, 252, 0.3);
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.pink-card .portfolio-badge {
  color: var(--color-pink);
  border-color: rgba(233, 119, 245, 0.3);
}

.portfolio-content {
  margin-top: 15px;
}

.portfolio-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.portfolio-desc-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.portfolio-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tech-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.portfolio-link {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-cyan);
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.portfolio-link:hover {
  text-shadow: 0 0 8px var(--color-cyan);
}

.pink-card .portfolio-link {
  color: var(--color-pink);
}

.pink-card .portfolio-link:hover {
  text-shadow: 0 0 8px var(--color-pink);
}

/* ==========================================================================
   4. CONTACT SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  position: relative;
  z-index: 3;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
}

.contact-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(61, 224, 252, 0.05);
  border: 1px solid rgba(61, 224, 252, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cyan);
  flex-shrink: 0;
}

.pink-contact .contact-icon-box {
  background: rgba(233, 119, 245, 0.05);
  border-color: rgba(233, 119, 245, 0.18);
  color: var(--color-pink);
}

.contact-text-box h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.contact-text-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-text-box a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-text-box a:hover {
  color: var(--color-cyan);
}

.pink-contact .contact-text-box a:hover {
  color: var(--color-pink);
}

.cyber-map {
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.cyber-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) saturate(0.5);
  opacity: 0.8;
}

/* Contact Intake Form styling */
.contact-form-panel {
  padding: 40px;
}

.contact-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
}

.contact-tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 12px;
  transition: var(--transition-fast);
  position: relative;
}

.contact-tab-btn:hover {
  color: #ffffff;
}

.contact-tab-btn.active {
  color: var(--color-cyan);
  text-shadow: 0 0 8px rgba(61, 224, 252, 0.5);
}

.contact-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-cyan);
  box-shadow: 0 0 8px var(--color-cyan);
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: rgba(61, 224, 252, 0.4);
  box-shadow: 0 0 0 3px rgba(61, 224, 252, 0.06);
}

textarea.form-input {
  resize: vertical;
  min-height: 110px;
}

select.form-input option {
  background: #06060c;
  color: var(--white);
}

/* Neon Purple styling for Choose A Service dropdowns */
#contact-service, #career-type {
  color: #e977f5 !important;
}

#contact-service option, #career-type option {
  color: #e977f5 !important;
  background: #06060a;
}

.form-label {
  position: absolute;
  left: 16px;
  top: 16px;
  color: var(--text-muted);
  pointer-events: none;
  transition: 0.2s ease;
  font-size: 0.9rem;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  transform: translateY(-28px) scale(0.85);
  color: var(--color-cyan);
  font-weight: 600;
}

.contact-form-panel.pink-accent .form-input:focus ~ .form-label {
  color: var(--color-pink);
}

.form-feedback {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-top: 12px;
  display: none;
}

.form-feedback.success {
  background: rgba(61, 224, 252, 0.05);
  color: var(--color-cyan);
  border: 1px solid rgba(61, 224, 252, 0.2);
}

.form-feedback.error {
  background: rgba(233, 119, 245, 0.05);
  color: var(--color-pink);
  border: 1px solid rgba(233, 119, 245, 0.2);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
  background: rgba(4, 4, 8, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 -1px 12px rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 60px 0 30px;
  position: relative;
  z-index: 3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1.9fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-links-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 15px !important;
}

.footer-col-about h3 {
  font-family: var(--font-display);
  font-size: 1rem !important;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: none !important;
  margin-bottom: 12px;
}

.footer-col-about p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.7;
}

.footer-contact-details {
  margin-top: 16px;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.footer-contact-details p {
  margin-bottom: 6px;
}

.footer-contact-details strong {
  color: var(--color-cyan);
}

.footer-contact-details a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-contact-details a:hover {
  color: var(--color-cyan);
  text-shadow: 0 0 8px rgba(61, 224, 252, 0.5);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-link:hover {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
  box-shadow: 0 0 10px rgba(61, 224, 252, 0.2);
}

.social-link.pink-social:hover {
  border-color: var(--color-pink);
  color: var(--color-pink);
  box-shadow: 0 0 10px rgba(233, 119, 245, 0.2);
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-nav-link, .footer-service-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-nav-link:hover, .footer-service-link:hover {
  color: var(--color-cyan);
}

/* Newsletter Form Curation */
.newsletter-form {
  position: relative;
  display: flex;
  margin-top: 16px;
  width: 100%;
}

.newsletter-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px 50px 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  outline: none;
  transition: var(--transition-fast);
}

.newsletter-input:focus {
  border-color: rgba(61, 224, 252, 0.4);
}

.newsletter-btn {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  background: rgba(61, 224, 252, 0.12);
  border: 1px solid rgba(61, 224, 252, 0.3);
  color: var(--color-cyan);
  width: 36px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.newsletter-btn:hover {
  background: var(--color-cyan);
  color: var(--bg);
  box-shadow: var(--glow-cyan);
}

/* Footer Bottom Layout */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer-bottom-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--color-cyan);
}


/* ==========================================================================
   HAMBURGER MENU & DRAWER (Mobile)
   ========================================================================== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  margin: 5px 0;
  transition: 0.3s ease;
}

/* ==========================================================================
   ENTRANCE ANIMATIONS (Reveal on Scroll/Navigate)
   ========================================================================== */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-35px);
}

.reveal-right {
  transform: translateX(35px);
}

.reveal.active, .reveal-left.active, .reveal-right.active {
  opacity: 1;
  transform: none;
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes neon-border-shimmer {
  0%, 100% {
    border-color: rgba(61, 224, 252, 0.65);
    box-shadow: 0 0 15px rgba(61, 224, 252, 0.45);
  }
  33% {
    border-color: rgba(121, 40, 202, 0.65);
    box-shadow: 0 0 15px rgba(121, 40, 202, 0.45);
  }
  66% {
    border-color: rgba(233, 119, 245, 0.65);
    box-shadow: 0 0 15px rgba(233, 119, 245, 0.45);
  }
}

/* ==========================================================================
   SEO OVERVIEW PANEL
   ========================================================================== */
.hero-seo-overview {
  margin-top: 90px;
  width: 100%;
  max-width: 1100px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 50px;
}

.seo-section-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 36px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.seo-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: left;
  transition: var(--transition-smooth);
  animation: neon-border-shimmer 8s linear infinite;
}

.seo-card:hover {
  border-color: rgba(61, 224, 252, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(61, 224, 252, 0.03);
}

.seo-card h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 1px;
  line-height: 1.3;
}

.seo-card p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.hero-why-choose {
  margin-top: 90px;
  width: 100%;
  max-width: 1100px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 50px;
}

.why-section-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.why-section-tagline {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-cyan);
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(61, 224, 252, 0.25);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: left;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition-smooth);
  animation: neon-border-shimmer 8s linear infinite;
}

.why-card:hover {
  border-color: rgba(233, 119, 245, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(233, 119, 245, 0.03);
}

.why-num-box {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-pink);
  text-shadow: 0 0 8px rgba(233, 119, 245, 0.4);
  line-height: 1;
}

.why-card:nth-child(even) .why-num-box {
  color: var(--color-cyan);
  text-shadow: 0 0 8px rgba(61, 224, 252, 0.4);
}

.why-content h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 1px;
  line-height: 1.3;
}

.why-content p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3.8rem;
  }
  .services-grid, .pricing-grid, .portfolio-grid, .seo-grid, .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 16px 24px;
  }
  
  .hamburger {
    display: block !important;
    position: relative !important;
    z-index: 1000 !important;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75vw;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    background: rgba(6, 6, 12, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 100px 40px;
    transition: right 0.4s ease;
    z-index: 99;
    gap: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-menu.active {
    right: 0;
  }

  .btn-nav-cta {
    display: none;
  }

  .container {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.15;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    margin-top: 35px !important;
  }

  .stat-num {
    font-size: 1.8rem !important;
  }

  .stat-label {
    font-size: 0.68rem !important;
    letter-spacing: 1px !important;
  }

  .services-grid, .pricing-grid, .portfolio-grid, .seo-grid, .why-grid, .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links-double {
    grid-template-columns: 1fr;
    gap: 8px !important;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Scale down plasma orbs on smaller viewports */
  .orb-1 { width: 280px; height: 280px; }
  .orb-2 { width: 240px; height: 240px; }
  .orb-3 { width: 320px; height: 320px; }
  .orb-4 { width: 160px; height: 160px; }
  .orb-5 { width: 200px; height: 200px; }

  /* Center alignment styling on mobile screens */
  body, .section-header, .section-custom, .hero-content-wrapper {
    text-align: center !important;
  }

  /* Prevent screen height cut-offs on mobile viewports */
  .section, .section-custom {
    position: relative !important;
    width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: all !important;
    padding-top: 100px !important;
    padding-bottom: 60px !important;
  }

  .section.active, .section-custom.active {
    display: block !important;
  }

  #home {
    padding-top: 90px !important;
    min-height: auto !important;
    height: auto !important;
  }

  .hero-content-wrapper {
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
  }

  .logo-wrapper {
    left: 20px !important;
    text-align: left !important;
  }

  .hero-title {
    font-size: 1.55rem !important;
    line-height: 1.25 !important;
    margin-bottom: 20px !important;
    letter-spacing: 0.5px !important;
  }

  .hero-actions {
    justify-content: center !important;
  }

  .service-card, .pricing-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .service-icon-box {
    margin: 0 auto 20px auto !important;
  }

  .contact-info-panel, .contact-card {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .contact-icon-box {
    margin: 0 auto 15px auto !important;
  }

  /* Footer mobile optimization & centering */
  .footer {
    text-align: center !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 35px !important;
    text-align: center !important;
  }

  .footer-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .footer-col-about {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .footer-socials {
    justify-content: center !important;
    margin-top: 15px !important;
  }

  .footer-links {
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }

  .footer-links li {
    text-align: center !important;
    width: 100% !important;
  }

  .footer-links-double {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }

  .newsletter-form {
    justify-content: center !important;
    margin: 15px auto 0 auto !important;
    max-width: 320px !important;
  }

  .footer-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
    text-align: center !important;
  }

  .footer-bottom-links {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}

/* ==========================================================================
   9. INTERNSHIP & CAREERS APPLICATION MODAL STYLES
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 4, 8, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  width: 100%;
  max-width: 500px;
  background: rgba(10, 10, 16, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 2.2rem;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--color-pink);
  transform: rotate(90deg);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.modal-form .form-group select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ==========================================================================
   ADMIN PORTAL CUSTOM STYLES
   ========================================================================== */
.admin-portfolio-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  gap: 15px;
  transition: var(--transition-fast);
}

.admin-portfolio-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.admin-item-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-body);
}

.admin-item-category {
  font-size: 0.75rem;
  color: var(--color-cyan);
  text-transform: uppercase;
  font-family: var(--font-display);
  letter-spacing: 1px;
}

.admin-btn-delete {
  padding: 6px 12px;
  font-size: 0.75rem;
  background: rgba(233, 119, 245, 0.1);
  border: 1px solid rgba(233, 119, 245, 0.4);
  color: var(--color-pink);
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-display);
  transition: var(--transition-fast);
}

.admin-btn-delete:hover {
  background: var(--color-pink);
  color: #000;
  box-shadow: var(--glow-pink);
}

@media (max-width: 768px) {
  .admin-subgrid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================
   PORTFOLIO LIGHTBOX MODAL
   ========================================================== */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 12000;
  background: rgba(4, 4, 8, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-wrapper {
  max-width: 95%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active .lightbox-wrapper {
  transform: scale(1);
}

#lightbox-img,
.lightbox-media-wrapper img,
.lightbox-media-wrapper video {
  max-width: 95vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 45px rgba(61, 224, 252, 0.25);
  object-fit: contain;
}

#lightbox-caption {
  margin-top: 15px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: transparent;
  border: none;
  font-size: 3rem;
  color: var(--color-cyan);
  cursor: pointer;
  line-height: 1;
  transition: all 0.25s ease;
  z-index: 12010;
  text-shadow: 0 0 10px rgba(61, 224, 252, 0.5);
}

.lightbox-close:hover {
  color: var(--color-pink);
  transform: scale(1.15) rotate(90deg);
  text-shadow: 0 0 15px rgba(233, 119, 245, 0.8);
}

@media (max-width: 768px) {
  .lightbox-close {
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
  }
}

/* ==========================================================
   PORTFOLIO MULTI-MEDIA SLIDER & LIGHTBOX NAVIGATION
   ========================================================== */
.portfolio-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-slides {
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: rgba(6, 6, 12, 0.75);
  border: 1px solid rgba(61, 224, 252, 0.35);
  color: var(--color-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  transition: all 0.25s ease;
  text-shadow: 0 0 5px rgba(61, 224, 252, 0.5);
}

.slider-arrow:hover {
  background: var(--color-cyan);
  color: #040408;
  border-color: var(--color-cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 12px;
}

.slider-arrow.next {
  right: 12px;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background: rgba(6, 6, 12, 0.7);
  border: 1px solid rgba(61, 224, 252, 0.3);
  color: var(--color-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 12020;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
  transition: all 0.25s ease;
  text-shadow: 0 0 8px rgba(61, 224, 252, 0.5);
}

.lightbox-arrow:hover {
  background: var(--color-cyan);
  color: #040408;
  border-color: var(--color-cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-arrow.prev {
  left: 40px;
}

.lightbox-arrow.next {
  right: 40px;
}

@media (max-width: 992px) {
  .lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }
  .lightbox-arrow.prev {
    left: 20px;
  }
  .lightbox-arrow.next {
    right: 20px;
  }
}

/* ==========================================================================
   ENHANCED MOBILE OPTIMIZATION (768px additions)
   ========================================================================== */
@media (max-width: 768px) {
  /* --- Section Titles --- */
  .section-title {
    font-size: 1.6rem !important;
    letter-spacing: 1px !important;
    line-height: 1.2 !important;
  }

  .section-subtitle {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }

  .section-header {
    margin-bottom: 35px !important;
    padding: 0 10px !important;
  }

  /* --- Hero Neon Words --- */
  .hero-neon-words {
    gap: 8px !important;
    margin-bottom: 16px !important;
  }

  .neon-word {
    font-size: 0.58rem !important;
    letter-spacing: 1.5px !important;
  }

  .neon-sep {
    font-size: 0.6rem !important;
  }

  .hero-tag {
    font-size: 0.62rem !important;
    letter-spacing: 2px !important;
    margin-bottom: 16px !important;
  }

  .hero-desc {
    font-size: 0.88rem !important;
    max-width: 100% !important;
    padding: 0 5px !important;
  }

  .hero-content-wrapper {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  /* --- Hero Actions (CTA buttons) --- */
  .hero-actions {
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    padding: 0 10px !important;
  }

  .hero-actions .btn-neon-rotate,
  .hero-actions .btn-ghost {
    width: 100% !important;
    justify-content: center !important;
    font-size: 0.78rem !important;
    padding: 14px 20px !important;
  }

  /* --- Service Cards --- */
  .service-card {
    padding: 24px 20px !important;
  }

  .service-title {
    font-size: 1rem !important;
  }

  .service-desc {
    font-size: 0.82rem !important;
  }

  /* --- Pricing Cards --- */
  .pricing-card {
    padding: 28px 22px !important;
  }

  .pricing-card.featured {
    transform: none !important;
  }

  .price-val {
    font-size: 2rem !important;
  }

  .pricing-title {
    font-size: 1.1rem !important;
  }

  /* --- Portfolio Cards --- */
  .portfolio-card {
    padding: 0 !important;
  }

  .portfolio-title {
    font-size: 1rem !important;
  }

  .portfolio-desc-text {
    font-size: 0.8rem !important;
  }

  .portfolio-tech span {
    font-size: 0.6rem !important;
    padding: 3px 8px !important;
  }

  /* Portfolio tabs row */
  .portfolio-tab-btn {
    font-size: 0.65rem !important;
    padding: 8px 14px !important;
    letter-spacing: 0.5px !important;
  }

  /* --- Contact Section --- */
  .contact-form-panel {
    padding: 24px 18px !important;
  }

  .contact-form-title {
    font-size: 1.15rem !important;
  }

  .contact-info-panel {
    padding: 24px 18px !important;
  }

  /* --- Footer --- */
  .footer {
    padding: 40px 0 20px !important;
  }

  .footer-title {
    font-size: 0.85rem !important;
  }

  .footer-desc {
    font-size: 0.8rem !important;
  }

  /* --- SEO & Why Choose Us sections --- */
  .hero-seo-overview {
    margin-top: 50px !important;
  }

  .hero-why-choose {
    margin-top: 50px !important;
  }

  .seo-card, .why-card {
    padding: 24px 20px !important;
  }

  /* --- Admin Portal --- */
  .admin-portfolio-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .admin-btn-delete {
    align-self: flex-end !important;
  }

  /* --- Logo resize --- */
  .logo-wrapper {
    width: 140px !important;
    height: 50px !important;
    left: 15px !important;
    top: 15px !important;
  }

  .logo-img {
    height: 85px !important;
    width: 85px !important;
  }

  /* --- Modal --- */
  .modal-content {
    padding: 28px 20px !important;
  }

  .modal-title {
    font-size: 1.15rem !important;
  }

  /* --- Lightbox arrows mobile --- */
  .lightbox-arrow {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.4rem !important;
  }

  .lightbox-arrow.prev {
    left: 10px !important;
  }

  .lightbox-arrow.next {
    right: 10px !important;
  }

  /* --- Buttons --- */
  .btn-neon-rotate {
    font-size: 0.75rem !important;
    padding: 12px 22px !important;
    letter-spacing: 1.5px !important;
  }

  .btn-ghost {
    font-size: 0.75rem !important;
    padding: 12px 22px !important;
  }

  .btn-cyan {
    font-size: 0.78rem !important;
    padding: 12px 20px !important;
  }
}

/* ==========================================================================
   SMALL PHONE OPTIMIZATION (480px and below)
   ========================================================================== */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.3rem !important;
    letter-spacing: 0px !important;
  }

  .section-title {
    font-size: 1.35rem !important;
  }

  .neon-word {
    font-size: 0.5rem !important;
    letter-spacing: 1px !important;
  }

  .hero-neon-words {
    gap: 5px !important;
  }

  .neon-sep {
    display: none !important;
  }

  .hero-tag {
    font-size: 0.55rem !important;
  }

  .hero-desc {
    font-size: 0.82rem !important;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .stat-num {
    font-size: 1.5rem !important;
  }

  .stat-label {
    font-size: 0.6rem !important;
  }

  .price-val {
    font-size: 1.7rem !important;
  }

  .service-card,
  .pricing-card,
  .seo-card,
  .why-card {
    padding: 20px 16px !important;
  }

  .contact-form-panel,
  .contact-info-panel {
    padding: 20px 14px !important;
  }

  .container {
    padding: 0 14px !important;
  }

  /* Logo smaller on very small phones */
  .logo-wrapper {
    width: 110px !important;
    height: 42px !important;
    left: 10px !important;
  }

  .logo-img {
    height: 70px !important;
    width: 70px !important;
  }

  /* Header height compact */
  .header {
    height: 65px !important;
  }

  #home {
    padding-top: 75px !important;
  }

  .section, .section-custom {
    padding-top: 80px !important;
    padding-bottom: 40px !important;
  }

  /* Footer compact */
  .footer {
    padding: 30px 0 15px !important;
  }

  .footer-grid {
    gap: 25px !important;
  }

  /* Orbs even smaller */
  .orb-1 { width: 180px !important; height: 180px !important; }
  .orb-2 { width: 150px !important; height: 150px !important; }
  .orb-3 { width: 200px !important; height: 200px !important; }
  .orb-4 { width: 100px !important; height: 100px !important; }
  .orb-5 { width: 130px !important; height: 130px !important; }

  /* Modal compact */
  .modal-content {
    padding: 22px 16px !important;
    border-radius: 14px !important;
  }

  /* Admin panel on small phone */
  .admin-portfolio-item {
    padding: 10px !important;
  }

  .admin-item-title {
    font-size: 0.8rem !important;
  }

  .admin-item-category {
    font-size: 0.65rem !important;
  }
}

/* ==========================================================================
   INTERACTIVE HIGHLIGHT GLOW
   ========================================================================== */
@keyframes pulse-highlight {
  0% { box-shadow: 0 0 0 rgba(0, 245, 255, 0); border-color: rgba(255, 255, 255, 0.07); }
  30% { box-shadow: 0 0 25px rgba(0, 245, 255, 0.6); border-color: var(--color-cyan); }
  60% { box-shadow: 0 0 25px rgba(255, 60, 172, 0.6); border-color: var(--color-pink); }
  100% { box-shadow: 0 0 0 rgba(0, 245, 255, 0); border-color: rgba(255, 255, 255, 0.07); }
}

.service-card.highlight-glow {
  animation: pulse-highlight 2.5s ease-in-out !important;
}
