/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #6366f1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #818cf8; }

/* ── ANIMATED HERO BLOBS ── */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 70%);
  top: 10%; left: 50%; margin-left: -250px;
  animation-delay: 0s;
}
.hero-blob-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(129,140,248,0.12) 0%, transparent 70%);
  top: 30%; left: 20%;
  animation-delay: 2s;
  animation-duration: 10s;
}
.hero-blob-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%);
  top: 20%; right: 15%;
  animation-delay: 4s;
  animation-duration: 12s;
}

@keyframes blobFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  33%       { transform: translateY(-20px) scale(1.05); }
  66%       { transform: translateY(10px) scale(0.97); }
}

@media (max-width: 768px) {
  .hero-blob-1 { width: 300px; height: 300px; margin-left: -150px; }
  .hero-blob-2 { width: 200px; height: 200px; }
  .hero-blob-3 { width: 180px; height: 180px; }
}

/* ── HERO BADGE FLOAT ── */
.hero-badge {
  animation: badgeFloat 3s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ── ANIMATED GRADIENT TEXT ── */
.hero h1 .highlight {
  background: linear-gradient(135deg, #6366f1, #818cf8, #a5b4fc, #6366f1);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── SHIMMER BUTTON ── */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0% { left: -100%; }
  60%, 100% { left: 150%; }
}

/* ── GLASSMORPHISM CARDS ── */
.service-card {
  background: rgba(26, 26, 26, 0.7) !important;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
}
.service-card:hover {
  background: rgba(30, 30, 40, 0.85) !important;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 40px rgba(99,102,241,0.12) !important;
}

/* ── NAV ENHANCED ── */
nav {
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(8,8,8,0.95) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  border-bottom-color: rgba(99,102,241,0.2) !important;
}

/* ── SECTION DIVIDERS ── */
section + section::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.3), transparent);
  margin: 0 auto;
  max-width: 600px;
}

/* ── STEP NUMBER GLOW ── */
.step-number {
  transition: all 0.3s ease;
  position: relative;
}
.step:hover .step-number {
  background: rgba(99,102,241,0.25);
  box-shadow: 0 0 20px rgba(99,102,241,0.3);
}

/* ── WHY ITEM HOVER ── */
.why-item {
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.why-item:hover {
  border-color: rgba(99,102,241,0.4);
  background: rgba(30,30,40,0.9);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3), 0 0 20px rgba(99,102,241,0.08);
}

/* ── CONTACT DETAIL HOVER ── */
.contact-detail {
  transition: color 0.2s;
  padding: 0.4rem 0;
}
.contact-detail:hover { color: #f1f1f1; }

/* ── INPUT GLOW ── */
input:focus, textarea:focus, select:focus {
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

/* ── STATS GLOW ── */
.stat-number {
  text-shadow: 0 0 30px rgba(129,140,248,0.4);
}

/* ── FOOTER LOGO HOVER ── */
.footer-logo {
  transition: opacity 0.2s;
  cursor: default;
}
.footer-logo:hover { opacity: 0.8; }

/* ── SCROLL TO TOP BUTTON ── */
#scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--accent, #6366f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(99,102,241,0.4);
}
#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
#scroll-top:hover {
  background: #818cf8;
  box-shadow: 0 6px 25px rgba(99,102,241,0.55);
  transform: translateY(-2px);
}

/* ── CUSTOM CURSOR ── */
#cursor-dot, #cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition: opacity 0.3s;
}
#cursor-dot {
  width: 8px; height: 8px;
  background: #6366f1;
  transform: translate(-50%, -50%);
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(99,102,241,0.5);
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}
#cursor-ring.hovering {
  width: 54px; height: 54px;
  border-color: rgba(99,102,241,0.8);
}

@media (hover: none) {
  #cursor-dot, #cursor-ring { display: none; }
}

/* ── CANVAS PARTICLES ── */
#particles-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero > div:not(.hero-blob) {
  position: relative;
  z-index: 1;
}
