/*
Theme Name: Oksina Antigravity
Theme URI: https://oksina.com
Author: Oksina IT Service
Author URI: https://oksina.com
Description: Custom Antigravity Wave theme for Oksina IT Service – with SVG wave dividers, floating particle animations, and Google Material Design-inspired hover effects.
Version: 1.0.0
Requires at least: 6.6
Requires PHP: 8.2
License: Proprietary
Text Domain: oksina-antigravity
*/

/* ============================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  --primary-navy:  #060B19;
  --accent-blue:   #3B82F6;
  --accent-violet: #8B5CF6;
  --accent-cyan:   #06B6D4;
  --sky-blue:      #0B1221;
  --deep-dark:     #020617;
  --dark-card:     #0F172A;
  --body-text:     #F8FAFC;
  --body-text-dark:#1E293B;
  --muted-text:    #64748B;
  --light-gray:    #CBD5E1;
  --white:         #FFFFFF;
  --success:       #10B981;
  --warning:       #F59E0B;
  --hero-gradient: linear-gradient(135deg, #0a0f2c 0%, #0d1b4b 40%, #1a3470 70%, #2563EB 100%);
  --section-gradient: linear-gradient(160deg, #020617 0%, #0B1221 50%, #050d1f 100%);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 6px -1px rgba(0,0,0,.15);
  --shadow-md: 0 10px 25px -5px rgba(37,99,235,.2);
  --shadow-lg: 0 20px 60px -10px rgba(37,99,235,.35);
  --shadow-glow: 0 0 40px rgba(59,130,246,.3);
  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --glass-bg: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--body-text);
  background: var(--deep-dark);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none; /* Custom cursor */
  width: 100%;
}

/* ── Full-width sections — NO container restriction ── */
section {
  width: 100%;
}

/* ── Subtle animated gradient background on the page ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 20%, rgba(37,99,235,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 60% 80% at 80% 80%, rgba(139,92,246,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* ── WOW Factor: Hero Interactive Particle Canvas ── */
#hero-particle-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
  z-index: 1;
  display: block;
}

/* ── WOW Factor: Custom Cursor ── */
.cursor-dot, .cursor-outline {
  position: fixed; top: 0; left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%; z-index: 9999;
  pointer-events: none;
}
.cursor-dot {
  width: 8px; height: 8px;
  background-color: var(--warning);
}
.cursor-outline {
  width: 40px; height: 40px;
  border: 1px solid rgba(245,158,11,0.5);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}
.cursor-outline.hover-active {
  width: 60px; height: 60px;
  background-color: rgba(245,158,11,0.1);
  border-color: var(--warning);
}

/* ── WOW Factor: Hologram SVG Styling & Animations ── */
.hologram-svg {
  width: 75%; height: 75%;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
}
.holo-ring-1 {
  animation: rotateClockwise 14s linear infinite;
  transform-origin: center;
}
.holo-ring-2 {
  animation: rotateCounterClockwise 20s linear infinite;
  transform-origin: center;
}
.holo-ring-3 {
  animation: rotateClockwise 32s linear infinite;
  transform-origin: center;
}
@keyframes rotateClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes rotateCounterClockwise {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}
.holo-dot-1, .holo-dot-2, .holo-dot-3, .holo-dot-4 {
  animation: holoPulse 2.5s ease-in-out infinite alternate;
  transform-origin: center;
}
.holo-dot-2 { animation-delay: 0.6s; }
.holo-dot-3 { animation-delay: 1.2s; }
.holo-dot-4 { animation-delay: 1.8s; }
@keyframes holoPulse {
  0% { transform: scale(0.8); opacity: 0.35; }
  100% { transform: scale(1.3); opacity: 0.95; }
}

/* ── WOW Factor: Holographic Specular Shine for 3D Cards ── */
.service-card::before, .portfolio-card::before, .blog-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none; z-index: 2;
}
.service-card:hover::before, .portfolio-card:hover::before, .blog-card:hover::before {
  opacity: 1;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Syne', sans-serif; line-height: 1.15; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ============================================================
   LAYOUT UTILITIES — FULL WIDTH
   ============================================================ */
/* Container: full width with generous edge padding */
.container     { width: 100%; max-width: 100%; padding: 0 60px; }
.container--narrow { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 60px; }
.section-pad   { padding: 100px 0; }
.text-center   { text-align: center; }
.flex-center   { display: flex; align-items: center; justify-content: center; }
.grid-2        { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.grid-3        { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4        { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }

/* ============================================================
   SECTION BADGE / TITLES
   ============================================================ */
.badge {
  display: inline-block;
  background: rgba(37,99,235,.1);
  color: var(--accent-blue);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.badge--light { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); }
.badge--warning { background: rgba(245,158,11,.15); color: var(--warning); }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--body-text);
  margin-bottom: 16px;
}
.section-title--white { color: var(--white); }

.section-sub {
  color: var(--muted-text);
  font-size: 17px;
  line-height: 1.75;
  max-width: 620px;
}
.section-sub--white { color: rgba(255,255,255,.7); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  cursor: none;
  border: none;
  outline: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%); transition: transform 0.6s ease;
}
.btn:hover::before { transform: translateX(100%); }
.btn-primary {
  background: var(--warning);
  color: var(--deep-dark);
  box-shadow: 0 4px 20px rgba(245,158,11,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245,158,11,.5); }
.btn-outline {
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); transform: translateY(-2px); }
.btn-blue { background: var(--accent-blue); color: var(--white); }
.btn-blue:hover { background: #1d4ed8; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ============================================================
   SVG WAVE DIVIDERS
   ============================================================ */
.wave { display: block; overflow: hidden; line-height: 0; }
.wave svg { display: block; width: 100%; }

/* ============================================================
   STICKY NAVBAR
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 24px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
  background: rgba(6, 11, 25, 0.9); /* Global primary navy theme color */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header.scrolled {
  background: rgba(10,20,50,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
  padding: 16px 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.site-logo {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.site-logo span { color: var(--warning); }
.nav-menu { display: flex; gap: 40px; list-style: none; }
.nav-menu a {
  color: rgba(255,255,255,.9);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: color .2s;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 2px;
  background: var(--warning);
  transform: scaleX(0);
  transition: transform .25s;
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--warning);
  color: var(--deep-dark);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,158,11,.4); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; position: relative; z-index: 1001; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: transform 0.3s cubic-bezier(.4,0,.2,1), opacity 0.3s ease; transform-origin: center; }

/* Hamburger animated active states */
.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  width: 100%;
  background: var(--hero-gradient);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 140px 60px 100px;
}

/* Hero glow orbs for atmosphere */
#hero::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 70%; height: 120%;
  background: radial-gradient(ellipse, rgba(37,99,235,0.25) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -10%;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse, rgba(139,92,246,0.15) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

#particle-canvas { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-inner {
  width: 100%;
  display: grid; grid-template-columns: 55fr 45fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
.hero-badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  padding: 8px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: badgeBounce 2.5s ease-in-out infinite;
}
@keyframes badgeBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.hero-dot { width:8px; height:8px; border-radius:50%; background:var(--success); animation:dotPulse 1.5s infinite; }
@keyframes dotPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }
.hero-h1 { font-size: clamp(42px,5.5vw,80px); font-weight: 800; color: var(--white); line-height: 1.05; margin-bottom: 24px; letter-spacing: -1px; }
.hero-h1 .highlight { 
  color: var(--warning); 
  text-shadow: 0 0 40px rgba(245,158,11,0.5);
  display: inline-block;
}
.hero-sub { color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.8; margin-bottom: 40px; max-width: 560px; }
.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stat { position: relative; padding-left: 20px; }
.hero-stat::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); height: 70%; width: 2px; background: var(--warning); border-radius: 2px; }
.hero-stat .num { font-family: 'Syne',sans-serif; font-size: 34px; font-weight: 800; color: var(--white); }
.hero-stat .lbl { color: rgba(255,255,255,.6); font-size: 12px; margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-visual { position: relative; }
.hero-visual::before {
  content: '';
  position: absolute; inset: -40px;
  background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: orbGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes orbGlow {
  from { transform: scale(0.9); opacity: 0.7; }
  to   { transform: scale(1.1); opacity: 1; }
}
.hero-orb {
  width: min(440px, 45vw); height: min(440px, 45vw); border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.12), rgba(37,99,235,.25));
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  animation: floatOrb 5s ease-in-out infinite;
  box-shadow: 0 0 120px rgba(37,99,235,.5), 0 0 60px rgba(139,92,246,.3), inset 0 0 80px rgba(255,255,255,.04);
  position: relative; overflow: hidden;
}
@keyframes floatOrb { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-24px) rotate(3deg)} }
.hero-orb-emoji { font-size: 80px; z-index:2; }
.orb-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  animation: spin linear infinite;
}
.orb-ring:nth-child(1) { width:280px;height:280px;animation-duration:12s; }
.orb-ring:nth-child(2) { width:220px;height:220px;animation-duration:8s;animation-direction:reverse; }
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
.scroll-arrow { width:20px;height:20px;border-right:2px solid rgba(255,255,255,.4);border-bottom:2px solid rgba(255,255,255,.4);transform:rotate(45deg); }

/* ============================================================
   STATS BAR — FULL WIDTH DARK GLASS
   ============================================================ */
#stats { 
  background: linear-gradient(180deg, #050d1f 0%, #0B1221 100%);
  padding: 80px 0; 
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 24px; }
.stat-card {
  text-align: center; padding: 36px 20px; border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(59,130,246,0.1), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.stat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-glow); border-color: rgba(59,130,246,0.3); }
.stat-card:hover::before { opacity: 1; }
.stat-icon { font-size: 32px; margin-bottom: 14px; display: block; filter: drop-shadow(0 0 8px rgba(255,255,255,0.3)); }
.stat-num { font-family: 'Syne',sans-serif; font-size: 40px; font-weight: 800; color: var(--white); display: block; text-shadow: 0 0 20px rgba(59,130,246,0.5); }
.stat-suffix { font-family: 'Syne',sans-serif; font-size: 24px; font-weight: 800; color: var(--warning); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 8px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about { background: linear-gradient(135deg, #060B19 0%, #0d1b4b 100%); padding: 100px 0; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  padding: 16px 20px; border-radius: 12px; transition: var(--transition);
}
.about-feature:hover { background: rgba(255,255,255,.1); transform: translateX(6px); }
.about-feature-icon { font-size: 26px; flex-shrink:0; }
.about-feature h4 { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.about-feature p { color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.5; }
.about-visual {
  position: relative;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 40px;
}
.about-glass-card {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(37,99,235,0.1);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease;
  transform-style: preserve-3d;
  animation: floatOrb 6s ease-in-out infinite;
  background: var(--primary-navy);
  z-index: 2;
}
.about-glass-card:hover {
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg) scale(1.01) translateY(-4px);
  box-shadow: 0 48px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(37,99,235,0.3);
}
.about-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 24px;
  transition: transform 0.5s ease;
}
.about-glass-card:hover .about-card-img { transform: scale(1.03); }
.about-glass-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 35%;
  background: linear-gradient(to top, rgba(6,11,25,0.75) 0%, transparent 100%);
  pointer-events: none; z-index: 2;
}
/* Overlay Glass Card (Overlapping bottom-left) */
.about-overlay-card {
  position: absolute;
  bottom: -15px;
  left: -20px;
  width: 240px;
  background: rgba(10, 20, 50, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
  z-index: 10;
  transition: transform 0.4s ease;
  animation: overlayFloat 6s ease-in-out infinite;
  animation-delay: 1s;
}
.about-visual:hover .about-overlay-card {
  transform: translateY(-8px) scale(1.03);
}
@keyframes overlayFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.overlay-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 8px;
}
.overlay-card-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #10B981;
  box-shadow: 0 0 8px #10B981;
}
.overlay-card-title {
  font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.8);
  text-transform: uppercase; letter-spacing: 1px;
}
.overlay-card-code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px; color: #38BDF8; line-height: 1.5; margin: 0;
}
.overlay-card-code span.keyword { color: #F43F5E; }
.overlay-card-code span.string { color: #F59E0B; }
/* Floating badge pills (outside clipping container) */
.about-badge {
  position: absolute; z-index: 12;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  color: #fff;
  animation: badgeFloat 4s ease-in-out infinite;
}
.about-badge-1 { top: 4px; right: 12px; background: rgba(16,185,129,0.85); animation-delay: 0s; }
.about-badge-2 { bottom: 50px; right: 12px; background: rgba(37,99,235,0.85); animation-delay: 1.5s; }
.about-badge-3 { top: 40%; right: -24px; background: rgba(245,158,11,0.85); animation-delay: 0.75s; }
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.about-badge-icon { font-size: 14px; }
.holo-glow-ring {
  position: absolute; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  border: 1px dashed rgba(37,99,235,0.25);
  animation: rotateCW 20s linear infinite;
}
.holo-core {
  position: relative; width: 140px; height: 140px; display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.holo-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.rotate-cw { transform-origin: center; animation: rotateCW 10s linear infinite; }
.rotate-ccw { transform-origin: center; animation: rotateCCW 8s linear infinite; }
@keyframes rotateCW { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes rotateCCW { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }

.holo-icon {
  font-size: 48px; z-index: 2; filter: drop-shadow(0 0 15px rgba(245,158,11,0.6));
  animation: floatCore 4s ease-in-out infinite alternate;
}
@keyframes floatCore {
  0% { transform: translateY(-5px) scale(0.95); opacity: 0.85; }
  100% { transform: translateY(5px) scale(1.05); opacity: 1; }
}

.glass-dash-card {
  position: absolute; background: rgba(15, 23, 42, 0.75); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 16px; width: 200px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.35); z-index: 3;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.glass-dash-card:hover {
  transform: scale(1.08) translateY(-5px);
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 20px 40px rgba(37,99,235,0.3);
}
.dash-card-sla {
  top: 30px; left: 30px;
}
.dash-card-team {
  bottom: 30px; right: 30px;
}
.dash-card-globe {
  top: 50%; right: 20px; transform: translateY(-50%);
}
.dash-card-header {
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.dash-dot-active {
  width: 8px; height: 8px; background: var(--success); border-radius: 50%;
  box-shadow: 0 0 8px var(--success); animation: pulse 1.5s infinite;
}
.dash-card-title {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px;
}
.dash-card-icon {
  font-size: 14px;
}
.dash-card-val {
  font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: #fff;
  line-height: 1.1; display: flex; align-items: baseline; gap: 4px;
}
.dash-lbl {
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.5);
}
.dash-card-graph {
  margin-top: 10px; height: 20px; overflow: hidden;
}
.mini-graph {
  width: 100%; height: 100%;
}
.graph-path {
  stroke-dasharray: 100; stroke-dashoffset: 100;
  animation: drawGraph 3s ease-out infinite alternate;
}
@keyframes drawGraph {
  to { stroke-dashoffset: 0; }
}
.dash-card-tag {
  font-size: 10px; color: rgba(255,255,255,0.4); font-weight: 600; margin-top: 6px;
  background: rgba(255,255,255,0.05); padding: 2px 8px; border-radius: 4px; display: inline-block;
}
.dash-code-bg {
  position: absolute; bottom: 15px; left: 15px; font-family: monospace;
  font-size: 9px; color: rgba(255,255,255,0.12); pointer-events: none; line-height: 1.4;
  text-align: left;
}

/* ============================================================
   SERVICES
   ============================================================ */
#services { 
  background: linear-gradient(180deg, #050d1f 0%, #080f24 100%); 
  padding: 120px 0; 
}
.services-header { text-align: center; margin-bottom: 64px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px; padding: 40px 36px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative; overflow: hidden;
  backdrop-filter: blur(12px);
}
/* 3D Glowing Orb tracking mouse */
.service-card::after {
  content: ''; position: absolute;
  top: var(--mouse-y, -100px); left: var(--mouse-x, -100px);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(37,99,235,0.4) 0%, transparent 70%);
  transform: translate(-50%, -50%); opacity: 0;
  transition: opacity 0.3s; z-index: -1; pointer-events: none;
}
.service-card:hover::after { opacity: 1; }
.service-card:hover { border-color: rgba(255,255,255,0.2); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.service-icon-wrap {
  width: 60px; height: 60px; border-radius: var(--radius-sm);
  background: var(--sky-blue); display: flex; align-items: center;
  justify-content: center; font-size: 28px; margin-bottom: 20px; transition: var(--transition);
}
.service-card:hover .service-icon-wrap { background: var(--accent-blue); transform: rotate(10deg) scale(1.1); }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.service-card p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.service-link { color: var(--accent-blue); font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 6px; transition: gap .2s; }
.service-card:hover .service-link { gap: 10px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why-us { 
  background: linear-gradient(160deg, #0d1b4b 0%, #1a3470 50%, #0a0f2c 100%);
  padding: 120px 0; 
  position: relative; overflow: hidden;
}
#why-us::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 80%; height: 200%;
  background: radial-gradient(ellipse, rgba(37,99,235,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.usp-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px; padding: 40px 32px; text-align: center;
  transition: var(--transition); backdrop-filter: blur(16px);
  position: relative; overflow: hidden;
}
.usp-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.6), transparent);
  opacity: 0; transition: opacity .3s;
}
.usp-card:hover { background: rgba(255,255,255,.09); transform: translateY(-8px); box-shadow: var(--shadow-glow); }
.usp-card:hover::before { opacity: 1; }
.usp-icon { font-size: 48px; margin-bottom: 20px; display: block; }
.usp-card h3 { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.usp-card p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.7; }

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
#process { 
  background: linear-gradient(180deg, #060B19 0%, #080f24 100%); 
  padding: 120px 0; 
}
.process-timeline { display: flex; gap: 0; position: relative; }
.process-timeline::before {
  content:''; position:absolute; top: 40px; left:5%; right:5%; height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), rgba(59,130,246,0.3));
}
.process-step { flex:1; text-align:center; padding: 0 16px; position:relative; z-index:1; }
.step-circle {
  width:80px; height:80px; border-radius:50%; background: var(--hero-gradient);
  display:flex; align-items:center; justify-content:center; margin: 0 auto 20px;
  font-family:'Syne',sans-serif; font-size:20px; font-weight:800; color:var(--white);
  box-shadow: 0 8px 24px rgba(37,99,235,.35); transition: var(--transition);
}
.process-step:hover .step-circle { transform:scale(1.15); box-shadow:0 12px 36px rgba(37,99,235,.5); }
.process-step h3 { font-size:16px; font-weight:700; margin-bottom:8px; color: var(--white); }
.process-step p { color: rgba(255,255,255,.6); font-size:13px; line-height:1.6; }
.step-tag { display:inline-block; background:rgba(37,99,235,.2); color:var(--accent-blue); padding:4px 12px; border-radius:100px; font-size:11px; font-weight:700; margin-top:10px; border: 1px solid rgba(37,99,235,.3); }

/* ============================================================
   TECH STACK
   ============================================================ */
#tech { 
  background: linear-gradient(180deg, #020617 0%, #050d1f 100%); 
  padding: 120px 0; 
}
.tech-row { display:flex; align-items:center; gap:24px; margin-bottom:28px; }
.tech-row-label { font-size:11px; font-weight:700; color:rgba(255,255,255,.4); text-transform:uppercase; letter-spacing:1.5px; width:90px; text-align:right; white-space:nowrap; flex-shrink:0; }
.tech-track { flex:1; overflow:hidden; position:relative; }
.tech-track::before,.tech-track::after { content:''; position:absolute; top:0; bottom:0; width:60px; z-index:1; pointer-events:none; }
.tech-track::before { left:0; background:linear-gradient(90deg,var(--deep-dark),transparent); }
.tech-track::after { right:0; background:linear-gradient(-90deg,var(--deep-dark),transparent); }
.tech-inner { display:flex; gap:12px; animation:techScroll 30s linear infinite; width:max-content; }
.tech-inner.reverse { animation-direction:reverse; }
@keyframes techScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.tech-pill {
  display:flex; align-items:center; gap:10px;
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08);
  border-radius:100px; padding:10px 20px; white-space:nowrap; transition:var(--transition);
}
.tech-pill:hover { 
  background:rgba(0,212,255,0.15); border-color:rgba(0,212,255,0.45); 
  transform:translateY(-2px) scale(1.05); 
  box-shadow: 0 8px 24px rgba(0,212,255,0.25);
}
.tech-pill span { font-size:20px; }
.tech-pill p { color:rgba(255,255,255,.8); font-size:13px; font-weight:600; transition: color 0.3s; }
.tech-pill:hover p { color: #fff; text-shadow: 0 0 10px rgba(0, 212, 255, 0.5); }

/* ============================================================
   PORTFOLIO — Deep Blue + Electric Cyan
   ============================================================ */
#portfolio { 
  background: linear-gradient(180deg, #060D1F 0%, #050A18 100%); 
  padding: 120px 0; 
}
.portfolio-header { margin-bottom: 56px; }
.portfolio-header .badge { background: rgba(0,212,255,0.1) !important; color: #00D4FF !important; border: 1px solid rgba(0,212,255,0.2); }
.filter-tabs { display:flex; gap:10px; flex-wrap:wrap; justify-content:center; margin-bottom:40px; }
.filter-tab {
  padding: 9px 22px; border-radius: 100px; font-size: 13px; font-weight: 600; cursor: pointer;
  border: 1px solid rgba(0,212,255,0.2); background: rgba(0,212,255,0.05); color: rgba(255,255,255,0.65);
  transition: all .25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.filter-tab:hover { background: rgba(0,212,255,0.12); color: #00D4FF; border-color: rgba(0,212,255,0.5); transform: translateY(-2px); }
.filter-tab.active { background: linear-gradient(135deg, #0066FF, #00D4FF); color: #fff; border-color: transparent; box-shadow: 0 4px 20px rgba(0,212,255,0.35); transform: translateY(-2px); }
.portfolio-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.portfolio-card { 
  background: rgba(0,15,40,0.6); border-radius: 20px; overflow: hidden; 
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
  border: 1px solid rgba(0,212,255,0.1); backdrop-filter: blur(12px); position: relative;
  opacity: 1; transform: scale(1);
}
.portfolio-card.hidden { display: none; }
.portfolio-card:hover { transform: translateY(-10px); box-shadow: 0 24px 60px rgba(0,212,255,0.2), 0 0 0 1px rgba(0,212,255,0.25); border-color: rgba(0,212,255,0.4); }
.portfolio-thumb { height:180px; display:flex; align-items:center; justify-content:center; font-size:52px; position:relative; overflow:hidden; }
.portfolio-thumb-glow-ring {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(0,212,255,0.04); border: 1px solid rgba(0,212,255,0.15);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: inset 0 0 15px rgba(0,212,255,0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.portfolio-card:hover .portfolio-thumb-glow-ring {
  transform: scale(1.08) rotate(5deg);
  border-color: rgba(0,212,255,0.45);
  box-shadow: 0 0 25px rgba(0,212,255,0.3), inset 0 0 15px rgba(0,212,255,0.2);
}
.portfolio-overlay { position:absolute; inset:0; background:rgba(0,10,30,0.88); display:flex; align-items:center; justify-content:center; opacity:0; transition:var(--transition); z-index: 3; }
.portfolio-card:hover .portfolio-overlay { opacity:1; }
.portfolio-info { padding:20px 24px; }
.portfolio-tags { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:10px; }
.portfolio-tag { font-size:11px; font-weight:700; padding:3px 10px; border-radius:100px; background:rgba(0,212,255,0.08); color:#00D4FF; border: 1px solid rgba(0,212,255,0.2); }
.portfolio-info h3 { font-size:16px; font-weight:700; margin-bottom:6px; color:#fff !important; }
.portfolio-info p { color:rgba(255,255,255,.55); font-size:13px; }
.portfolio-metric { color:#10FFAA; font-size:13px; font-weight:700; margin-top:8px; display: flex; align-items: center; gap: 6px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { 
  background: linear-gradient(160deg, #020617 0%, #0B1221 100%); 
  padding: 120px 0; 
}
.testimonials-slider { position:relative; width: 100%; overflow: hidden; }
.testimonial-track { display:flex; width: 100%; }
.testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  padding:40px;
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08);
  border-radius:24px; position:relative; backdrop-filter:blur(8px);
}
.testimonial-quote { font-size:80px; color:rgba(37,99,235,.2); font-family:'Syne',sans-serif; line-height:1; position:absolute; top:20px; left:36px; }
.testimonial-text { color:rgba(255,255,255,.85); font-size:16px; line-height:1.8; font-style:italic; margin-bottom:28px; position:relative; z-index:1; }
.testimonial-author { display:flex; align-items:center; gap:16px; }
.testimonial-avatar { width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:28px; background:rgba(37,99,235,.2); border:2px solid rgba(37,99,235,.4); }
.testimonial-name { font-weight:700; color:var(--white); font-size:16px; }
.testimonial-role { color:rgba(255,255,255,.5); font-size:13px; }
.testimonial-stars { color:var(--warning); font-size:16px; margin-bottom:4px; }
.slider-dots { display:flex; gap:8px; justify-content:center; margin-top:32px; }
.slider-dot { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.2); cursor:pointer; transition:var(--transition); }
.slider-dot.active { background:var(--accent-blue); transform:scale(1.4); }

/* ============================================================
   INDUSTRIES
   ============================================================ */
#industries { 
  background: linear-gradient(180deg, #080f24 0%, #0B1221 100%); 
  padding: 120px 0; 
}
.industries-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.industry-card {
  padding:28px; border-radius:var(--radius-md);
  background: rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.08); text-align:center;
  transition:var(--transition); position:relative; overflow:hidden;
  cursor:pointer; backdrop-filter: blur(12px);
}
.industry-card::before { content:''; position:absolute; inset:0; background:var(--hero-gradient); opacity:0; transition:opacity .3s; z-index:0; }
.industry-card:hover::before { opacity:1; }
.industry-card:hover h3,.industry-card:hover p { color:var(--white); }
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); border-color: rgba(37,99,235,0.4); }
.industry-card>* { position:relative; z-index:1; }
.industry-icon { font-size:40px; margin-bottom:16px; display:block; }
.industry-card h3 { font-size:16px; font-weight:700; margin-bottom:8px; transition:color .3s; color: var(--white); }
.industry-card p { color:rgba(255,255,255,.55); font-size:13px; line-height:1.6; transition:color .3s; }

/* ============================================================
   BLOG
   ============================================================ */
#blog { 
  background: linear-gradient(180deg, #050d1f 0%, #080f24 100%); 
  padding: 120px 0; 
}
.blog-card { 
  background: rgba(255, 255, 255, 0.03); border-radius: 20px; overflow: hidden; 
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); box-shadow: var(--shadow-sm); 
  border: 1px solid rgba(255, 255, 255, 0.08); backdrop-filter: blur(12px); position: relative;
}
.blog-card::after {
  content: ''; position: absolute;
  top: var(--mouse-y, -100px); left: var(--mouse-x, -100px);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(37,99,235,0.4) 0%, transparent 70%);
  transform: translate(-50%, -50%); opacity: 0;
  transition: opacity 0.3s; z-index: -1; pointer-events: none;
}
.blog-card:hover { 
  transform: translateY(-10px); 
  border-color: rgba(0,212,255,0.4); 
  box-shadow: 0 24px 60px rgba(0,212,255,0.2), 0 0 0 1px rgba(0,212,255,0.25); 
}
.blog-thumb { height:200px; background:var(--hero-gradient); display:flex; align-items:center; justify-content:center; font-size:60px; overflow:hidden; }
.blog-thumb img { width:100%; height:100%; object-fit:cover; }
.blog-content { padding:24px; }
.blog-category { display:inline-block; padding:4px 12px; border-radius:100px; font-size:12px; font-weight:700; background:rgba(37,99,235,0.15); color:var(--accent-blue); margin-bottom:12px; border: 1px solid rgba(37,99,235,0.2); }
.blog-title { font-size:18px; font-weight:700; margin-bottom:10px; line-height:1.4; color: var(--white); }
.blog-title a { color: var(--white); transition: color .2s; }
.blog-title a:hover { color: var(--accent-blue); }
.blog-excerpt { color:rgba(255,255,255,.55); font-size:13px; line-height:1.7; margin-bottom:16px; }
.blog-meta { display:flex; align-items:center; gap:16px; color:rgba(255,255,255,.4); font-size:12px; }
.blog-read-more { color:var(--accent-blue); font-weight:700; font-size:13px; display:flex; align-items:center; gap:4px; margin-left:auto; transition:gap .2s, color .2s; }
.blog-card:hover .blog-read-more { gap:8px; color: #60A5FA; }

/* ============================================================
   CTA BAND
   ============================================================ */
#cta-band { 
  background: linear-gradient(135deg, #1a3470 0%, #2563EB 50%, #7c3aed 100%);
  padding: 100px 0; text-align:center; 
  position: relative; overflow: hidden;
}
#cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,255,255,0.06), transparent);
  pointer-events: none;
}
.cta-band-inner { max-width:700px; margin:0 auto; }
.cta-band-title { font-size:clamp(28px,4vw,44px); font-weight:800; color:var(--white); margin-bottom:16px; }
.cta-band-sub { color:rgba(255,255,255,.75); font-size:17px; line-height:1.7; margin-bottom:40px; }
.cta-band-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.cta-contact-info { display:flex; gap:32px; justify-content:center; margin-top:32px; flex-wrap:wrap; }
.cta-contact-item { color:rgba(255,255,255,.8); font-size:14px; display:flex; align-items:center; gap:8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { 
  background: linear-gradient(180deg, #020617 0%, #010410 100%);
  padding: 80px 0 32px; 
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.footer-brand { }
.footer-logo { font-family:'Syne',sans-serif; font-size:22px; font-weight:800; color:var(--white); margin-bottom:16px; }
.footer-logo span { color:var(--warning); }
.footer-brand p { color:rgba(255,255,255,.5); font-size:14px; line-height:1.7; margin-bottom:24px; max-width:280px; }
.footer-socials { display:flex; gap:12px; }
.footer-social { width:40px; height:40px; border-radius:var(--radius-sm); background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; font-size:18px; transition:var(--transition); }
.footer-social:hover { background:var(--accent-blue); border-color:var(--accent-blue); transform:translateY(-3px); }
.footer-col h4 { color:var(--white); font-size:14px; font-weight:700; margin-bottom:20px; text-transform:uppercase; letter-spacing:1px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:12px; }
.footer-col ul li a { color:rgba(255,255,255,.5); font-size:14px; transition:color .2s; }
.footer-col ul li a:hover { color:var(--white); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding-top:24px; display:flex; align-items:center; justify-content:space-between; }
.footer-copy { color:rgba(255,255,255,.4); font-size:13px; }
.footer-links { display:flex; gap:24px; }
.footer-links a { color:rgba(255,255,255,.4); font-size:13px; transition:color .2s; }
.footer-links a:hover { color:var(--white); }

/* ============================================================
   SCROLL-TRIGGERED ANIMATIONS
   ============================================================ */
.animate-on-scroll { opacity:0; transform:translateY(30px); transition:opacity .6s ease, transform .6s ease; }
.animate-on-scroll.visible { opacity:1; transform:translateY(0); }

/* ============================================================
   SINGLE POST CONTENT STYLES
   ============================================================ */
.post-content h1,.post-content h2,.post-content h3,
.post-content h4,.post-content h5,.post-content h6 { color: var(--white); margin: 28px 0 14px; }
.post-content p { color: rgba(255,255,255,.78); margin-bottom: 18px; }
.post-content a { color: var(--accent-blue); text-decoration: underline; text-underline-offset: 3px; }
.post-content a:hover { color: #60A5FA; }
.post-content ul, .post-content ol { color: rgba(255,255,255,.75); padding-left: 24px; margin-bottom: 18px; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote { border-left: 3px solid var(--accent-blue); padding: 16px 24px; background: rgba(59,130,246,0.08); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0; color: rgba(255,255,255,.8); font-style: italic; }
.post-content code { background: rgba(255,255,255,.08); color: #F472B6; padding: 2px 8px; border-radius: 4px; font-size: 14px; }
.post-content pre { background: rgba(0,0,0,.4); border: 1px solid var(--glass-border); border-radius: var(--radius-sm); padding: 20px; overflow-x: auto; margin-bottom: 20px; }
.post-content pre code { background: none; color: #86EFAC; padding: 0; }
.post-content img { border-radius: var(--radius-sm); margin: 24px 0; }
.post-content table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.post-content th { background: rgba(37,99,235,.2); color: var(--white); padding: 12px 16px; text-align: left; }
.post-content td { border-bottom: 1px solid var(--glass-border); padding: 12px 16px; color: rgba(255,255,255,.75); }
.post-content hr { border: none; border-top: 1px solid var(--glass-border); margin: 32px 0; }

/* Post nav links */
.nav-prev a, .nav-next a { color: var(--accent-blue); transition: color .2s; }
.nav-prev a:hover, .nav-next a:hover { color: var(--white); }

/* Blog pagination */
.page-numbers { display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:var(--radius-sm); background:rgba(255,255,255,.05); border:1px solid var(--glass-border); color:rgba(255,255,255,.7); font-size:14px; font-weight:600; transition:var(--transition); }
.page-numbers:hover, .page-numbers.current { background:var(--accent-blue); color:var(--white); border-color:var(--accent-blue); }
.nav-links { display:flex; gap:8px; flex-wrap:wrap; justify-content:center; }

/* ============================================================
   ELEMENTOR OVERRIDES
   ============================================================ */
.elementor-section { position: relative; }
.elementor-widget-wrap { position: relative; z-index: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1400px) {
  .container { padding: 0 48px; }
}
@media (max-width: 1024px) {
  .container { padding: 0 36px; }
  .stats-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  
  /* Disable custom cursor on mobile & tablets */
  .cursor-dot, .cursor-outline {
    display: none !important;
  }
  body, button, a, .btn, .service-card, .portfolio-card, .blog-card, .usp-card {
    cursor: auto !important;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section-pad { padding: 70px 0; }
  #hero { padding: 120px 24px 80px; min-height: auto; }
  .hero-inner, .about-grid, .grid-2 { grid-template-columns:1fr; gap: 40px; }
  .grid-3, .grid-4, .portfolio-grid, .industries-grid, .services-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .process-timeline { flex-direction:column; gap:32px; }
  .process-timeline::before { display:none; }
  .usp-grid { grid-template-columns:1fr 1fr; }
  .nav-menu, .nav-cta { display:none; }
  .nav-hamburger { display:flex; }
  
  /* Responsive Hero Orb & Visual fixes */
  .hero-orb {
    width: 220px !important;
    height: 220px !important;
    box-shadow: 0 0 60px rgba(37,99,235,.4), 0 0 30px rgba(139,92,246,.2) !important;
  }
  .hero-orb-emoji {
    font-size: 56px !important;
  }
  .orb-ring:nth-child(1) {
    width: 190px !important;
    height: 190px !important;
  }
  .orb-ring:nth-child(2) {
    width: 150px !important;
    height: 150px !important;
  }
  
  .hero-visual { margin-top: 24px; order: -1; padding: 20px 0; }
  .site-header { padding: 16px 24px !important; }
  .site-header.scrolled { padding: 12px 24px !important; }
  .footer-grid { grid-template-columns:1fr; }
  .cta-band-btns { flex-direction:column; align-items:center; }
  .hero-h1 { font-size: clamp(32px, 8vw, 44px); margin-bottom: 16px; }
  .hero-sub { margin-bottom: 28px; font-size: 15px; }
  
  /* Responsive overrides for Contact Form */
  #inquiry-form {
    padding: 24px !important;
    border-radius: 16px !important;
  }
  .contact-form-row {
    grid-template-columns: 1fr !important;
  }
  .contact-hours-col {
    padding-left: 0 !important;
    border-left: none !important;
    border-top: 1px solid var(--glass-border) !important;
    padding-top: 32px !important;
    margin-top: 16px !important;
  }
}

/* Extra small mobile adjustments */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-btns { flex-direction: column; width: 100%; gap: 12px; }
  .hero-btns .btn { width: 100%; text-align: center; justify-content: center; }
  #inquiry-form h2 { font-size: 24px !important; }
  .site-logo { font-size: 26px !important; }
}


