:root {
  --bg: #f6f2ff;
  --bg-soft: #ffffff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #0f0a17;
  --muted: #5f5870;
  --line: rgba(57, 36, 94, 0.12);
  --primary: #6d28d9;
  --primary-dark: #3b0a75;
  --accent: #111111;
  --shadow: 0 20px 50px rgba(49, 24, 93, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.2), transparent 30%),
    radial-gradient(circle at top right, rgba(17, 17, 17, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5efff 100%);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.home-page {
  position: relative;
}

.page-background {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.background-glow,
.background-plane,
.bg-symbol {
  position: absolute;
}

.background-glow {
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.65;
}

.glow-one {
  top: 8%;
  left: -4%;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.28), rgba(168, 85, 247, 0));
  animation: spaceFloat 16s ease-in-out infinite;
}

.glow-two {
  top: 30%;
  right: -6%;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(17, 17, 17, 0.12), rgba(17, 17, 17, 0));
  animation: spaceFloat 18s ease-in-out infinite reverse;
}

.glow-three {
  bottom: -8%;
  left: 18%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.16), rgba(109, 40, 217, 0));
  animation: pulseGlow 14s ease-in-out infinite;
}

.background-plane {
  border: 1px solid rgba(109, 40, 217, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.08)),
    linear-gradient(90deg, rgba(109, 40, 217, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(109, 40, 217, 0.06) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.plane-one {
  top: -10%;
  right: -8%;
  width: 38rem;
  height: 30rem;
  border-radius: 42px;
  --plane-transform: rotate(-16deg) rotateX(68deg) translate3d(0, 0, -120px);
  transform: var(--plane-transform);
  opacity: 0.42;
  animation: gridDrift 20s linear infinite;
}

.plane-two {
  bottom: -16%;
  left: -10%;
  width: 34rem;
  height: 26rem;
  border-radius: 42px;
  --plane-transform: rotate(18deg) rotateX(70deg) translate3d(0, 0, -160px);
  transform: var(--plane-transform);
  opacity: 0.32;
  animation: gridDrift 24s linear infinite reverse;
}

.background-icons {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.bg-symbol {
  display: grid;
  place-items: center;
  min-width: 3.8rem;
  min-height: 3.8rem;
  padding: 0.85rem 1rem;
  border-radius: 22px;
  border: 1px solid rgba(109, 40, 217, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.12));
  backdrop-filter: blur(10px);
  box-shadow:
    0 18px 36px rgba(61, 23, 117, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  color: rgba(59, 10, 117, 0.5);
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  --parallax-x: 0px;
  --parallax-y: 0px;
  --parallax-z: 0px;
  transform: var(--icon-transform) translate3d(var(--parallax-x), var(--parallax-y), var(--parallax-z));
  transform-style: preserve-3d;
  animation: iconOrbit 14s ease-in-out infinite;
}

.bg-symbol::before {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  opacity: 0.7;
}

.symbol-code {
  top: 12%;
  left: 12%;
  --icon-transform: translate3d(0, 0, -10px) rotate(-8deg);
}

.symbol-cap {
  top: 15%;
  right: 16%;
  font-size: 1.7rem;
  --icon-transform: translate3d(0, 0, 40px) rotate(8deg);
  animation-delay: -3s;
}

.symbol-chip {
  top: 38%;
  left: 8%;
  font-size: 2rem;
  --icon-transform: translate3d(0, 0, 18px) rotate(9deg);
  animation-delay: -6s;
}

.symbol-book {
  top: 48%;
  right: 14%;
  --icon-transform: translate3d(0, 0, 8px) rotate(-12deg);
  animation-delay: -2s;
}

.symbol-atom {
  bottom: 16%;
  left: 20%;
  font-size: 2.3rem;
  --icon-transform: translate3d(0, 0, 54px) rotate(10deg);
  animation-delay: -5s;
}

.symbol-ai {
  bottom: 14%;
  right: 22%;
  --icon-transform: translate3d(0, 0, 22px) rotate(-7deg);
  animation-delay: -8s;
}

.symbol-brackets {
  top: 66%;
  left: 44%;
  --icon-transform: translate3d(0, 0, 12px) rotate(5deg);
  animation-delay: -4s;
}

.symbol-network {
  top: 24%;
  left: 48%;
  font-size: 1.8rem;
  --icon-transform: translate3d(0, 0, 34px) rotate(-9deg);
  animation-delay: -7s;
}

.home-page::before,
.home-page::after {
  content: "";
  position: fixed;
  z-index: -2;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.6;
  animation: floatOrb 16s ease-in-out infinite;
  pointer-events: none;
}

.home-page::before {
  top: 10vh;
  left: -6rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.24), rgba(139, 92, 246, 0));
}

.home-page::after {
  right: -4rem;
  bottom: 8vh;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(17, 17, 17, 0.12), rgba(17, 17, 17, 0));
  animation-delay: -6s;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  padding-left: 1rem;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(57, 36, 94, 0.08);
}

.header-wrap,
.footer-wrap,
.hero-grid,
.split-layout,
.section-heading,
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-wrap {
  padding: 1rem 0;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.brand-block h1,
.site-footer h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.brand-block p,
.site-footer p {
  color: var(--muted);
  font-size: 0.92rem;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #111111, var(--primary));
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.main-nav a {
  position: relative;
  font-weight: 600;
  color: var(--muted);
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--text);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #a855f7);
}

.hero {
  position: relative;
  padding: 5rem 0 3.25rem;
}

.hero-grid {
  position: relative;
  z-index: 1;
  align-items: stretch;
  gap: 2rem;
  perspective: 1400px;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-orb,
.bg-grid {
  position: absolute;
}

.bg-orb {
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.7;
}

.orb-one {
  top: 4%;
  left: 5%;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(139, 92, 246, 0.14) 40%, rgba(139, 92, 246, 0) 72%);
  animation: orbitDrift 14s ease-in-out infinite;
}

.orb-two {
  right: 8%;
  bottom: 8%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle at 60% 40%, rgba(17, 17, 17, 0.16), rgba(109, 40, 217, 0.1) 38%, rgba(109, 40, 217, 0) 70%);
  animation: orbitDrift 18s ease-in-out infinite reverse;
}

.bg-grid {
  top: 12%;
  right: -6%;
  width: 30rem;
  height: 30rem;
  border-radius: 36px;
  background-image:
    linear-gradient(rgba(109, 40, 217, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 40, 217, 0.11) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 0.9), transparent 72%);
  transform: rotate(-12deg);
  opacity: 0.45;
  animation: gridPulse 12s linear infinite;
}

.hero-copy,
.hero-panel,
.feature-card,
.card,
.testimonial-grid blockquote,
.process-grid article,
.cta-box {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  flex: 1.1;
  padding: 2.4rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 240, 255, 0.9));
  transform-style: preserve-3d;
}

.hero-panel {
  flex: 0.9;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #120818, #24103d 55%, #090909 100%);
  color: #f9f7ff;
  transform-style: preserve-3d;
  animation: panelFloat 6.5s ease-in-out infinite;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 800;
  animation: fadeRise 0.8s ease both;
}

.hero h2,
.section h2,
.cta-box h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.section h2,
.cta-box h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
}

.hero-text,
.section-copy,
.cta-box p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 62ch;
}

.hero-title {
  display: grid;
  gap: 0.2rem;
  perspective: 1000px;
}

.title-line {
  display: block;
  animation: titleReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.title-line:nth-child(2) {
  animation-delay: 0.12s;
}

.accent-line {
  background: linear-gradient(90deg, #2a1247 0%, #6d28d9 45%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation:
    titleReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both 0.12s,
    shimmerText 7s linear infinite 1.2s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 2.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), #6d28d9);
}

.btn-secondary {
  background: rgba(109, 40, 217, 0.1);
  color: var(--primary-dark);
}

.hero-stats,
.mini-cards,
.feature-grid,
.cards,
.process-grid,
.testimonial-grid,
.contact-layout,
.form-grid {
  display: grid;
  gap: 1rem;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-stats div {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(109, 40, 217, 0.08);
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-stats strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.banner-slider {
  position: relative;
  min-height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(168, 85, 247, 0.35), rgba(17, 17, 17, 0.18)),
    linear-gradient(135deg, #1f0d31, #09090b);
  isolation: isolate;
}

.banner-slider::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 90deg, rgba(255, 255, 255, 0.14), transparent 30%, rgba(192, 132, 252, 0.26), transparent 68%);
  animation: spinHalo 16s linear infinite;
  z-index: 0;
  opacity: 0.8;
}

.slide {
  position: absolute;
  inset: 0;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  transform: translateY(0);
}

.slide-tag {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: auto;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slide h3 {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  line-height: 1.05;
  margin-bottom: 0.6rem;
}

.slide p {
  max-width: 34ch;
  color: rgba(244, 246, 242, 0.86);
}

.slider-controls {
  position: absolute;
  left: 1.2rem;
  bottom: 1rem;
  z-index: 3;
  display: flex;
  gap: 0.55rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.slider-dot:hover,
.slider-dot:focus-visible {
  background: rgba(255, 255, 255, 0.75);
  transform: scale(1.08);
  outline: none;
}

.slider-dot.active {
  background: #c084fc;
}

.mini-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.mini-cards article {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.mini-cards h4 {
  font-family: "Outfit", sans-serif;
  margin-bottom: 0.3rem;
}

.mini-cards p {
  font-size: 0.9rem;
  color: rgba(244, 246, 242, 0.72);
}

.section {
  padding: 1.5rem 0 3.25rem;
}

.intro {
  padding-top: 0.25rem;
}

.split-layout {
  align-items: flex-start;
}

.feature-grid,
.cards,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.feature-card,
.card,
.testimonial-grid blockquote,
.process-grid article,
.contact-card {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  backdrop-filter: blur(14px);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.feature-card h3,
.card h3,
.process-grid h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.feature-card p,
.card p,
.card li,
.process-grid p,
.testimonial-grid cite {
  color: var(--muted);
}

.section-heading {
  margin-bottom: 1.2rem;
  align-items: end;
}

.text-link {
  font-weight: 700;
  color: var(--primary);
}

.card {
  overflow: hidden;
  padding: 0;
}

.card-image {
  min-height: 180px;
  position: relative;
  overflow: hidden;
}

.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.28) 50%, transparent 80%);
  transform: translateX(-130%);
  animation: sheenPass 8s ease-in-out infinite;
}

.gradient-one {
  background: linear-gradient(135deg, #111111, #7c3aed);
}

.gradient-two {
  background: linear-gradient(135deg, #6d28d9, #c084fc);
}

.gradient-three {
  background: linear-gradient(135deg, #2a1247, #111111);
}

.card-body {
  padding: 1.4rem;
}

.card-meta {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 700;
}

.card ul {
  margin-top: 0.85rem;
}

.contact-card h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  margin-bottom: 1rem;
}

.contact-info-list {
  display: grid;
  gap: 1rem;
}

.contact-info-list div {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(109, 40, 217, 0.08);
}

.contact-info-list h3 {
  font-family: "Outfit", sans-serif;
  margin-bottom: 0.35rem;
}

.contact-info-list p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(24, 34, 29, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(109, 40, 217, 0.5);
  box-shadow: 0 0 0 4px rgba(109, 40, 217, 0.12);
}

.verification-notes {
  display: grid;
  gap: 1rem;
}

.verification-form {
  align-items: start;
}

.verification-submit {
  justify-self: start;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.verification-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid article span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #111111, var(--primary));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(109, 40, 217, 0.25);
}

.testimonial-grid blockquote p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.cta-box {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.14), rgba(17, 17, 17, 0.08));
}

[data-tilt] {
  transform: perspective(1200px) rotateX(0deg) rotateY(0deg) translateZ(0);
  will-change: transform;
}

.hero-copy:hover,
.hero-panel:hover,
.feature-card:hover,
.card:hover,
.mini-cards article:hover,
.hero-stats div:hover,
.testimonial-grid blockquote:hover,
.process-grid article:hover,
.cta-box:hover {
  box-shadow: 0 28px 60px rgba(49, 24, 93, 0.18);
  border-color: rgba(109, 40, 217, 0.2);
}

.mini-cards article:hover,
.hero-stats div:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.js-motion [data-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-motion [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes floatOrb {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0.8rem, -1rem, 0) scale(1.06);
  }
}

@keyframes orbitDrift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }
  50% {
    transform: translate3d(1rem, -1.4rem, 0) scale(1.08) rotate(8deg);
  }
}

@keyframes gridPulse {
  0% {
    transform: rotate(-12deg) translate3d(0, 0, 0);
    opacity: 0.18;
  }
  50% {
    transform: rotate(-8deg) translate3d(-1rem, 0.8rem, 0);
    opacity: 0.42;
  }
  100% {
    transform: rotate(-12deg) translate3d(0, 0, 0);
    opacity: 0.18;
  }
}

@keyframes panelFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

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

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: rotateX(72deg) translateY(24px);
    transform-origin: center bottom;
  }
  to {
    opacity: 1;
    transform: rotateX(0deg) translateY(0);
    transform-origin: center bottom;
  }
}

@keyframes shimmerText {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

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

@keyframes sheenPass {
  0%, 100% {
    transform: translateX(-130%);
  }
  45%, 55% {
    transform: translateX(130%);
  }
}

@keyframes spaceFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(1.5rem, -1.2rem, 0) scale(1.08);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.46;
  }
  50% {
    transform: scale(1.14);
    opacity: 0.72;
  }
}

@keyframes gridDrift {
  0%, 100% {
    transform: var(--plane-transform);
  }
  50% {
    transform: var(--plane-transform) translate3d(-1.5rem, 1rem, 26px);
  }
}

@keyframes iconOrbit {
  0%, 100% {
    transform: var(--icon-transform) translate3d(var(--parallax-x), var(--parallax-y), var(--parallax-z));
  }
  50% {
    transform: var(--icon-transform) translate3d(calc(var(--parallax-x) + 0.8rem), calc(var(--parallax-y) - 0.8rem), calc(var(--parallax-z) + 20px));
  }
}

.site-footer {
  padding: 1rem 0 2rem;
}

.footer-wrap {
  padding-top: 1rem;
  border-top: 1px solid rgba(57, 36, 94, 0.1);
}

@media (max-width: 920px) {
  .header-wrap,
  .hero-grid,
  .split-layout,
  .section-heading,
  .cta-box,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats,
  .mini-cards,
  .feature-grid,
  .cards,
  .process-grid,
  .testimonial-grid,
  .contact-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .bg-grid {
    right: -20%;
    width: 22rem;
    height: 22rem;
  }

  .symbol-book,
  .symbol-network,
  .plane-two {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.25rem, 1120px);
  }

  .hero-copy,
  .hero-panel,
  .feature-card,
  .card-body,
  .process-grid article,
  .testimonial-grid blockquote,
  .cta-box {
    padding: 1.15rem;
  }

  .main-nav {
    gap: 0.8rem;
  }

  .brand-block {
    align-items: flex-start;
  }

  .orb-one,
  .orb-two {
    width: 12rem;
    height: 12rem;
  }

  .title-line {
    word-break: normal;
  }

  .bg-symbol {
    min-width: 3rem;
    min-height: 3rem;
    padding: 0.65rem 0.8rem;
    font-size: 1rem;
  }

  .symbol-chip,
  .symbol-brackets,
  .symbol-atom {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .js-motion [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
.footer {
  background: #4b0082;
  color: white;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-section h2,
.footer-section h3 {
  margin-bottom: 15px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

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

.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #d8b4ff;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  color: white;
  background: #6a0dad;
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  background: white;
  color: #4b0082;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 14px;
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  z-index: 1000;
  animation: pulse 2s infinite;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
#searchInput {
  width: 60%;
  padding: 12px;
  margin: 20px auto;
  display: block;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.course-card {
  transition: 0.3s ease;
}
.course-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin: 40px 0 20px;
  color: #1a1a1a;
  letter-spacing: 1px;
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  z-index: 1000;
  animation: pulse 2s infinite;
  text-decoration: none;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}