body{
  font-family: "SN Pro", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
/* --- Services Page Modern Card & Parallax Styles --- */
.service-card {
  transition: transform 0.5s cubic-bezier(.22,1,.36,1), box-shadow 0.4s;
  will-change: transform;
  perspective: 1200px;
}
.service-card:hover {
  transform: translateY(-12px) scale(1.03) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 12px 48px 0 rgba(59,130,246,0.10), 0 2px 16px 0 rgba(251,146,60,0.10);
  z-index: 2;
}

/* Enhanced Service Cards */
.service-card-enhanced {
  will-change: transform, box-shadow;
}
.service-card-enhanced .parallax-img {
  will-change: transform;
}
.parallax-img {
  transition: transform 0.7s cubic-bezier(.22,1,.36,1);
}

.parallax-img-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.animate-bounce-slow {
  animation: bounce-slow 2.8s infinite cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes bounce-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* Service visuals: keep images vibrant, add color-overlay and in-view/hover pop */
.service-img {
  transition: transform 0.8s cubic-bezier(.22,1,.36,1), filter 0.6s ease, opacity 0.6s;
  transform-origin: center;
  filter: saturate(0.98) contrast(0.98) brightness(0.98);
  will-change: transform, filter, opacity;
}

.color-overlay {
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(249,115,22,0.06) 28%, rgba(37,99,235,0.03) 100%);
  mix-blend-mode: overlay;
  opacity: 0.8;
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.service-card-enhanced:hover .color-overlay {
  opacity: 0.95;
}

/* color-pop when card becomes visible or on hover */
.service-card-enhanced.in-view .parallax-img,
.service-card-enhanced:hover .parallax-img {
  transform: scale(1.06) translateY(-6px);
  filter: saturate(1.15) contrast(1.04) brightness(1.03);
  opacity: 1;
}

.service-content-card {
  transition: transform 0.6s cubic-bezier(.22,1,.36,1), box-shadow 0.3s ease;
}
.service-card-enhanced.in-view .service-content-card {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(2,6,23,0.12);
}

.service-cta { transition: transform .18s ease, box-shadow .18s; }
.service-cta:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 30px rgba(251,146,60,0.16); }

/* keep accent SVG subtle */
.service-card-enhanced svg.animate-bounce-slow { transform-origin: center; }

/* Services Pillars - immersive redesign (scoped to services page cards only) */
.services-pillars-grid .pillar-card {
  perspective: 1400px;
  transform-style: preserve-3d;
  animation: pillar-card-rise 0.9s cubic-bezier(.22,1,.36,1) both;
}

.services-pillars-grid .pillar-card:nth-child(1) { animation-delay: 0.08s; }
.services-pillars-grid .pillar-card:nth-child(2) { animation-delay: 0.16s; }
.services-pillars-grid .pillar-card:nth-child(3) { animation-delay: 0.24s; }
.services-pillars-grid .pillar-card:nth-child(4) { animation-delay: 0.32s; }

.services-pillars-grid .pillar-card-shell {
  position: relative;
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(.22,1,.36,1), box-shadow 0.6s cubic-bezier(.22,1,.36,1), border-color 0.4s ease;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.08), 0 2px 10px rgba(2, 6, 23, 0.04);
}

.services-pillars-grid .pillar-card-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.34), rgba(251, 146, 60, 0.32), rgba(255, 255, 255, 0.12));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.services-pillars-grid .pillar-card-shell::after {
  content: "";
  position: absolute;
  left: -40%;
  top: -160%;
  width: 56%;
  height: 280%;
  background: linear-gradient(95deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
  transform: rotate(10deg) translateX(0);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(.22,1,.36,1), opacity 0.5s ease;
  pointer-events: none;
  z-index: 3;
}

.services-pillars-grid .pillar-card:hover .pillar-card-shell,
.services-pillars-grid .pillar-card:focus-within .pillar-card-shell {
  transform: translateY(-14px) rotateX(2.2deg) rotateY(-1.6deg);
  box-shadow: 0 28px 70px rgba(37, 99, 235, 0.12), 0 16px 42px rgba(251, 146, 60, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

.services-pillars-grid .pillar-card:hover .pillar-card-shell::before,
.services-pillars-grid .pillar-card:focus-within .pillar-card-shell::before {
  opacity: 1;
}

.services-pillars-grid .pillar-card:hover .pillar-card-shell::after,
.services-pillars-grid .pillar-card:focus-within .pillar-card-shell::after {
  transform: rotate(10deg) translateX(260%);
  opacity: 0.72;
}

.services-pillars-grid .pillar-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 24%, rgba(15, 23, 42, 0.44) 100%);
  opacity: 0.8;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 1;
}

.services-pillars-grid .pillar-card .parallax-img {
  transform: scale(1.01);
  transition: transform 0.9s cubic-bezier(.22,1,.36,1), filter 0.7s ease;
  filter: saturate(1.02) contrast(1.02);
}

.services-pillars-grid .pillar-card:hover .parallax-img,
.services-pillars-grid .pillar-card:focus-within .parallax-img {
  transform: scale(1.14) rotate(1.1deg);
  filter: saturate(1.14) contrast(1.07) brightness(1.03);
}

.services-pillars-grid .pillar-card:hover .pillar-media::before,
.services-pillars-grid .pillar-card:focus-within .pillar-media::before {
  opacity: 0.42;
}

.services-pillars-grid .pillar-content h3 {
  position: relative;
  transition: transform 0.35s ease, letter-spacing 0.35s ease;
}

.services-pillars-grid .pillar-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: min(140px, 52%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(251, 146, 60, 0.95), rgba(37, 99, 235, 0.9));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.42s cubic-bezier(.22,1,.36,1);
}

.services-pillars-grid .pillar-card:hover .pillar-content h3,
.services-pillars-grid .pillar-card:focus-within .pillar-content h3 {
  transform: translateY(-1px);
  letter-spacing: 0.2px;
}

.services-pillars-grid .pillar-card:hover .pillar-content h3::after,
.services-pillars-grid .pillar-card:focus-within .pillar-content h3::after {
  transform: scaleX(1);
}

.services-pillars-grid .pillar-content p {
  padding-top:10px;
  transition: color 0.35s ease, transform 0.45s ease;
}

.services-pillars-grid .pillar-card:hover .pillar-content p,
.services-pillars-grid .pillar-card:focus-within .pillar-content p {
  color: rgba(31, 41, 55, 0.96);
  transform: translateY(-2px);
}

.services-pillars-grid .pillar-description {
  position: relative;
  overflow: hidden;
  max-height: 195px;
  padding: 16px 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(241, 245, 249, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 8px 26px rgba(2, 6, 23, 0.05);
  backdrop-filter: blur(2px);
  transition: max-height 0.65s cubic-bezier(.22,1,.36,1), background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.services-pillars-grid .pillar-description::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(251, 146, 60, 0.95), rgba(37, 99, 235, 0.85));
  opacity: 0.85;
}

.services-pillars-grid .pillar-description::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(241, 245, 249, 0) 0%, rgba(241, 245, 249, 0.94) 60%, rgba(241, 245, 249, 1) 100%);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.services-pillars-grid .pillar-card:hover .pillar-description,
.services-pillars-grid .pillar-card:focus-within .pillar-description {
  max-height: 420px;
  border-color: rgba(59, 130, 246, 0.28);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 36px rgba(37, 99, 235, 0.09);
}

.services-pillars-grid .pillar-card:hover .pillar-description::after,
.services-pillars-grid .pillar-card:focus-within .pillar-description::after {
  opacity: 0;
}

.services-pillars-grid .pillar-description::first-letter {
  float: left;
  font-size: 2.1em;
  line-height: 1;
  padding-right: 8px;
  margin-top: 5px;
  font-weight: 700;
  color: rgba(30, 58, 138, 0.85);
}

.services-pillars-grid .pillar-cta {
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.services-pillars-grid .pillar-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 80%);
  transform: skewX(-20deg);
  transition: left 0.7s cubic-bezier(.22,1,.36,1);
}

.services-pillars-grid .pillar-card:hover .pillar-cta,
.services-pillars-grid .pillar-card:focus-within .pillar-cta {
  transform: translateY(-2px) scale(1.02);
  filter: saturate(1.08);
}

.services-pillars-grid .pillar-card:hover .pillar-cta::before,
.services-pillars-grid .pillar-card:focus-within .pillar-cta::before {
  left: 125%;
}

@keyframes pillar-card-rise {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-pillars-grid .pillar-card,
  .services-pillars-grid .pillar-card-shell,
  .services-pillars-grid .pillar-card .parallax-img,
  .services-pillars-grid .pillar-content h3,
  .services-pillars-grid .pillar-content p,
  .services-pillars-grid .pillar-description,
  .services-pillars-grid .pillar-description::after,
  .services-pillars-grid .pillar-cta,
  .services-pillars-grid .pillar-cta::before,
  .services-pillars-grid .pillar-card-shell::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@media (hover: none), (pointer: coarse) {
  .services-pillars-grid .pillar-description {
    max-height: none;
  }

  .services-pillars-grid .pillar-description::after {
    display: none;
  }
}

.service-card .bg-white {
  box-shadow: 0 2px 16px 0 rgba(59,130,246,0.04), 0 1px 4px 0 rgba(251,146,60,0.04);
}
.service-card ul li span {
  display: inline-block;
  vertical-align: middle;
}
.service-card a {
  transition: box-shadow 0.3s, filter 0.3s;
}
.service-card a:hover {
  box-shadow: 0 4px 16px 0 rgba(251,146,60,0.18), 0 1.5px 8px 0 rgba(59,130,246,0.10);
  filter: brightness(1.08) saturate(1.1);
}
/* Revolving hero stat boxes */
.revolve-box {
  transition: box-shadow 0.3s, filter 0.3s;
  will-change: transform;
  z-index: 2;
}

/* Animated underline for WORLDS in hero */
.animated-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.10em;
  background: linear-gradient(90deg, #fb6767 0%,#ffe6e6 100%);
  border-radius: 1em;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}

.animated-underline::before {
  content: '';
  position: absolute;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #d62929 0%, #c50000 100%);
  opacity: 0.4;
  border-radius: 1em;
  animation: underline-move 4s linear infinite;
}

@keyframes underline-move {
  0% {
    left: -40%;
    width: 40%;
    opacity: 0.8;
  }
  40% {
    left: 20%;
    width: 60%;
    opacity: 1;
  }
  80% {
    left: 60%;
    width: 40%;
    opacity: 0.8;
  }
  100% {
    left: 100%;
    width: 40%;
    opacity: 0;
  }
}

/* Animate hero orange lines */
.hero-orange-line {
  will-change: transform;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   About Section – Interactive & Eye-Catching
   ═══════════════════════════════════════════════════════════════ */

/* Mouse-follow glow spotlight */
.about-glow-spot {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,146,60,0.10) 0%, rgba(37,99,235,0.06) 40%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  will-change: transform;
  filter: blur(30px);
}

/* Floating particle orbs */
.about-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  animation: about-orb-float 14s ease-in-out infinite alternate;
  transition: transform 0.6s cubic-bezier(.22,1,.36,1);
}

.about-orb-1 {
  width: 120px; height: 120px;
  top: 8%; left: 6%;
  background: radial-gradient(circle, rgba(251,146,60,0.14) 0%, transparent 70%);
  animation-duration: 12s;
}
.about-orb-2 {
  width: 180px; height: 180px;
  top: 60%; right: 4%;
  background: radial-gradient(circle, rgba(37,99,235,0.10) 0%, transparent 70%);
  animation-duration: 16s;
  animation-delay: -3s;
}
.about-orb-3 {
  width: 65px; height: 65px;
  top: 22%; right: 18%;
  background: radial-gradient(circle, rgba(251,146,60,0.18) 0%, transparent 70%);
  animation-duration: 10s;
  animation-delay: -5s;
}
.about-orb-4 {
  width: 90px; height: 90px;
  bottom: 12%; left: 14%;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  animation-duration: 18s;
  animation-delay: -8s;
}
.about-orb-5 {
  width: 40px; height: 40px;
  top: 45%; left: 42%;
  background: radial-gradient(circle, rgba(251,146,60,0.16) 0%, transparent 70%);
  animation-duration: 9s;
  animation-delay: -2s;
}
.about-orb-6 {
  width: 55px; height: 55px;
  top: 15%; left: 55%;
  background: radial-gradient(circle, rgba(37,99,235,0.13) 0%, transparent 70%);
  animation-duration: 13s;
  animation-delay: -6s;
}

@keyframes about-orb-float {
  0% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(18px, -22px) scale(1.08); }
  50% { transform: translate(-14px, 16px) scale(0.95); }
  75% { transform: translate(22px, 10px) scale(1.05); }
  100% { transform: translate(-10px, -18px) scale(1); }
}

/* Badge with pulsing dot */
.about-badge {
  animation: about-badge-in 0.8s cubic-bezier(.22,1,.36,1) both;
}

.about-badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f97316;
  position: relative;
}

.about-badge-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(249,115,22, 0.35);
  animation: about-dot-pulse 2s ease-in-out infinite;
}

@keyframes about-dot-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.8); opacity: 0; }
}

@keyframes about-badge-in {
  from { opacity: 0; transform: translateY(-12px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Interactive glass cards */
.about-card {
  perspective: 1200px;
  animation: about-card-rise 0.85s cubic-bezier(.22,1,.36,1) both;
}

.about-card:nth-child(1) { animation-delay: 0.12s; }
.about-card:nth-child(2) { animation-delay: 0.24s; }

@keyframes about-card-rise {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.about-card-inner {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(2, 6, 23, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Shine overlay that follows cursor inside cards */
.about-card-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.35s ease;
  mix-blend-mode: soft-light;
}

.about-card:hover .about-card-inner,
.about-card:focus-within .about-card-inner {
  transform: translateY(-8px) rotateX(1.5deg) rotateY(-1deg);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(251, 146, 60, 0.28);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.10), 0 10px 30px rgba(251, 146, 60, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Icon container */
.about-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.9), rgba(241, 245, 249, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 4px 12px rgba(2, 6, 23, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-card:hover .about-card-icon {
  transform: scale(1.12) rotate(-4deg);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.15);
}

/* Animated bottom accent line */
.about-card-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(90deg, #f97316, #2563eb, #f97316);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(.22,1,.36,1);
  animation: about-line-shift 4s linear infinite paused;
}

.about-card:hover .about-card-line {
  transform: scaleX(1);
  animation-play-state: running;
}

@keyframes about-line-shift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* Stats ribbon */
.about-stats-ribbon {
  animation: about-stats-in 0.9s cubic-bezier(.22,1,.36,1) 0.35s both;
}

@keyframes about-stats-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 20px;
  border-radius: 16px;
  transition: transform 0.25s cubic-bezier(.22,1,.36,1), background 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  will-change: transform;
}

.about-stat-item:hover {
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.06);
}

.about-stat-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(180deg, #f9aeae 0%, #c50000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.about-stat-item:hover .about-stat-number {
  transform: scale(1.1);
}

.about-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.about-stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, rgba(148,163,184,0.35), transparent);
  align-self: center;
}

@media (max-width: 640px) {
  .about-stat-divider { display: none; }
  .about-stats-ribbon { gap: 8px; }
  .about-stat-item { padding: 10px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .about-orb,
  .about-badge,
  .about-badge-dot::after,
  .about-card,
  .about-card-inner,
  .about-card-icon,
  .about-card-line,
  .about-card-shine,
  .about-glow-spot,
  .about-stats-ribbon,
  .about-stat-item,
  .about-stat-number {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  .about-card-line { transform: scaleX(1) !important; }
  .about-glow-spot { display: none !important; }
  #aboutParticlesCanvas { display: none !important; }
}
@custom-variant dark (&:is(.dark *));

:root {
  --font-size: 16px;
  --background: #ffffff;
  --foreground: oklch(0.145 0 0);
  --card: #ffffff;
  --card-foreground: oklch(0.145 0 0);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.145 0 0);
  --primary: #030213;
  --primary-foreground: oklch(1 0 0);
  --secondary: oklch(0.95 0.0058 264.53);
  --secondary-foreground: #030213;
  --muted: #ececf0;
  --muted-foreground: #717182;
  --accent: #e9ebef;
  --accent-foreground: #030213;
  --destructive: #d4183d;
  --destructive-foreground: #ffffff;
  --border: rgba(0, 0, 0, 0.1);
  --input: transparent;
  --input-background: #f3f3f5;
  --switch-background: #cbced4;
  --font-weight-medium: 500;
  --font-weight-normal: 400;
  --ring: oklch(0.708 0 0);
  --chart-1: oklch(0.646 0.222 41.116);
  --chart-2: oklch(0.6 0.118 184.704);
  --chart-3: oklch(0.398 0.07 227.392);
  --chart-4: oklch(0.828 0.189 84.429);
  --chart-5: oklch(0.769 0.188 70.08);
  --radius: 0.625rem;
  --sidebar: oklch(0.985 0 0);
  --sidebar-foreground: oklch(0.145 0 0);
  --sidebar-primary: #030213;
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.97 0 0);
  --sidebar-accent-foreground: oklch(0.205 0 0);
  --sidebar-border: oklch(0.922 0 0);
  --sidebar-ring: oklch(0.708 0 0);
}

.dark {
  --background: oklch(0.145 0 0);
  --foreground: oklch(0.985 0 0);
  --card: oklch(0.145 0 0);
  --card-foreground: oklch(0.985 0 0);
  --popover: oklch(0.145 0 0);
  --popover-foreground: oklch(0.985 0 0);
  --primary: oklch(0.985 0 0);
  --primary-foreground: oklch(0.205 0 0);
  --secondary: oklch(0.269 0 0);
  --secondary-foreground: oklch(0.985 0 0);
  --muted: oklch(0.269 0 0);
  --muted-foreground: oklch(0.708 0 0);
  --accent: oklch(0.269 0 0);
  --accent-foreground: oklch(0.985 0 0);
  --destructive: oklch(0.396 0.141 25.723);
  --destructive-foreground: oklch(0.637 0.237 25.331);
  --border: oklch(0.269 0 0);
  --input: oklch(0.269 0 0);
  --ring: oklch(0.439 0 0);
  --font-weight-medium: 500;
  --font-weight-normal: 400;
  --chart-1: oklch(0.488 0.243 264.376);
  --chart-2: oklch(0.696 0.17 162.48);
  --chart-3: oklch(0.769 0.188 70.08);
  --chart-4: oklch(0.627 0.265 303.9);
  --chart-5: oklch(0.645 0.246 16.439);
  --sidebar: oklch(0.205 0 0);
  --sidebar-foreground: oklch(0.985 0 0);
  --sidebar-primary: oklch(0.488 0.243 264.376);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.269 0 0);
  --sidebar-accent-foreground: oklch(0.985 0 0);
  --sidebar-border: oklch(0.269 0 0);
  --sidebar-ring: oklch(0.439 0 0);
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-destructive: var(--destructive);
  --color-destructive-foreground: var(--destructive-foreground);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-input-background: var(--input-background);
  --color-switch-background: var(--switch-background);
  --color-ring: var(--ring);
  --color-chart-1: var(--chart-1);
  --color-chart-2: var(--chart-2);
  --color-chart-3: var(--chart-3);
  --color-chart-4: var(--chart-4);
  --color-chart-5: var(--chart-5);
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --color-sidebar: var(--sidebar);
  --color-sidebar-foreground: var(--sidebar-foreground);
  --color-sidebar-primary: var(--sidebar-primary);
  --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
  --color-sidebar-accent: var(--sidebar-accent);
  --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
  --color-sidebar-border: var(--sidebar-border);
  --color-sidebar-ring: var(--sidebar-ring);
}

@layer base {
  * {
    @apply border-border outline-ring/50;
  }

  body {
    @apply bg-background text-foreground;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/**
 * Base typography. This is not applied to elements which have an ancestor with a Tailwind text class.
 */
@layer base {
  :where(:not(:has([class*=' text-']), :not(:has([class^='text-'])))) {
    h1 {
      font-size: var(--text-2xl);
      font-weight: var(--font-weight-medium);
      line-height: 1.5;
    }

    h2 {
      font-size: var(--text-xl);
      font-weight: var(--font-weight-medium);
      line-height: 1.5;
    }

    h3 {
      font-size: var(--text-lg);
      font-weight: var(--font-weight-medium);
      line-height: 1.5;
    }

    h4 {
      font-size: var(--text-base);
      font-weight: var(--font-weight-medium);
      line-height: 1.5;
    }

    label {
      font-size: var(--text-base);
      font-weight: var(--font-weight-medium);
      line-height: 1.5;
    }

    button {
      font-size: var(--text-base);
      font-weight: var(--font-weight-medium);
      line-height: 1.5;
    }

    input {
      font-size: var(--text-base);
      font-weight: var(--font-weight-normal);
      line-height: 1.5;
    }
  }
}

html {
  font-size: var(--font-size);
}
/* --- Why Choose Us Feature Cards --- */
.feature-card {
  will-change: transform, box-shadow;
  transition: all 0.4s cubic-bezier(.22,1,.36,1);
  border: 1px solid rgba(251, 146, 60, 0.1);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #fb923c, #2563eb, #fb923c);
  transition: left 0.6s cubic-bezier(.22,1,.36,1);
  z-index: 1;
}
.feature-card:hover::before {
  left: 100%;
}
.feature-card:hover {
  border-color: rgba(251, 146, 60, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px 0 rgba(251,146,60,0.12), 0 2px 8px 0 rgba(37,99,235,0.08);
}
.feature-card p {
  line-height: 1.6;
}

/* --- Services Hero Section --- */
.services-hero {
  background: linear-gradient(135deg, #1e293b 0%, #1e3a8a 50%, #44403c 100%);
  position: relative;
}

.particle-item {
  will-change: transform, opacity;
  animation: float-particle 6s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(251, 146, 60, 0.4));
}

.particle-item:nth-child(1) { animation-delay: 0s; }
.particle-item:nth-child(2) { animation-delay: 0.5s; }
.particle-item:nth-child(3) { animation-delay: 1s; }
.particle-item:nth-child(4) { animation-delay: 1.5s; }
.particle-item:nth-child(5) { animation-delay: 2s; }
.particle-item:nth-child(6) { animation-delay: 2.5s; }
.particle-item:nth-child(7) { animation-delay: 3s; }
.particle-item:nth-child(8) { animation-delay: 3.5s; }

@keyframes float-particle {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-30px) translateX(15px);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-60px) translateX(-20px);
    opacity: 0.5;
  }
  75% {
    transform: translateY(-30px) translateX(25px);
    opacity: 0.7;
  }
}

.hero-content {
  animation: slideUp 0.8s cubic-bezier(.22,1,.36,1) backwards;
}

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

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

.animate-fade-in-down {
  animation: fadeInDown 0.8s cubic-bezier(.22,1,.36,1) backwards;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-spin-slow {
  animation: spinSlow 3s linear infinite;
}

/* Scroll Indicator Animation */
@keyframes scrollBounce {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  30% {
    transform: translateY(8px);
    opacity: 1;
  }
  60% {
    transform: translateY(12px);
    opacity: 0.8;
  }
  100% {
    transform: translateY(24px);
    opacity: 0;
  }
}

.scroll-indicator {
  animation: scrollBounce 2.5s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

/* Mouse wheel container animation */
@keyframes mouseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(249, 115, 22, 0), inset 0 0 0 2px rgba(249, 115, 22, 0.6);
  }
}

.mouse-wheel {
  animation: mouseGlow 3s ease-in-out infinite;
}

/* Scroll text pulse */
@keyframes textPulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.scroll-text {
  animation: textPulse 2.5s ease-in-out infinite;
}

/* Enhanced Service Card Border Animations */
.service-card-enhanced {
  position: relative;
  border-image-source: linear-gradient(135deg, rgba(249,115,22,0.5), rgba(37,99,235,0.5), rgba(249,115,22,0.5)) !important;
  border-image-slice: 1 !important;
}

.service-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 1.5rem;
  padding: 2px;
  background: linear-gradient(135deg, 
    rgba(249,115,22,0) 0%,
    rgba(249,115,22,0.2) 25%,
    rgba(37,99,235,0.2) 50%,
    rgba(249,115,22,0.2) 75%,
    rgba(249,115,22,0) 100%);
  background-size: 200% 200%;
  animation: borderGlow 4s ease-in-out infinite;
  pointer-events: none;
  opacity: 0;
  z-index: -1;
}

.service-card-enhanced:hover::before {
  opacity: 1;
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0% {
    background-position: 0% 0%;
    opacity: 0.3;
  }
  50% {
    background-position: 100% 100%;
    opacity: 0.8;
  }
  100% {
    background-position: 0% 0%;
    opacity: 0.3;
  }
}

/* Animated gradient border overlay */
.service-card-enhanced .relative.bg-white {
  position: relative;
  overflow: hidden;
}

.service-card-enhanced .relative.bg-white::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent,
    rgba(255,255,255,0.2),
    transparent);
  animation: shineBorder 3s infinite;
  pointer-events: none;
  border-radius: 1.5rem;
}

@keyframes shineBorder {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

/* Service Card Enhanced Hover Effect */
.service-card-enhanced {
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.service-card-enhanced:hover {
  border-color: rgba(249,115,22,0.8) !important;
}

.service-card-enhanced:hover .relative.bg-white {
  border-color: rgba(249,115,22,0.5) !important;
  box-shadow: 0 0 30px rgba(249,115,22,0.2), 0 0 60px rgba(37,99,235,0.1) !important;
}

/* Enhanced Button Styles */
.group/btn:hover {
  animation: buttonPulse 0.6s ease-in-out;
}

@keyframes buttonPulse {
  0% {
    box-shadow: 0 0 0 0 currentColor;
  }
  70% {
    box-shadow: 0 0 0 10px rgba(249,115,22,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(249,115,22,0);
  }
}

footer p.copywrite-text:hover {color:var(--color-gray-400);font-weight: normal;}