/* =====================
   CSS RESET & VARIABLES
===================== */
:root {
  --bg-dark: #0b0f1a;
  --primary: #7c7cff;
  --secondary: #f5c2a8;
  --accent: #2de2e6;
  --text-light: #ffffff;
  --text-muted: #b8b8c5;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
}

/* =====================
   BLURRED BACKGROUND
===================== */
.background-blur {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.blur {
  position: absolute;
  width: 400px;
  height: 400px;
  filter: blur(120px);
  opacity: 0.6;
  border-radius: 50%;
}

.blur.one {
  background: var(--primary);
  top: -100px;
  left: -100px;
}

.blur.two {
  background: var(--secondary);
  bottom: -120px;
  right: -120px;
}

.blur.three {
  background: var(--accent);
  top: 40%;
  left: 60%;
}

/* =====================
   GLASS EFFECT
===================== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
}

/* =====================
   CONTAINER
===================== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px 20px;
}

.section-container{
  max-width: 1400px;
  margin: auto;
  padding-left: 40px;
  padding-right: 40px;
}



/* =====================
   BUTTON
===================== */
.btn {
  padding: 12px 22px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(124,124,255,0.4);
}

/* =====================
   LINKS
===================== */
a {
  text-decoration: none;
  color: inherit;
}

p{
  margin-bottom: 15px;
  font-size: 0.9rem;
}


/* =====================
   GLOBAL DYNAMIC ORBS
===================== */
.global-orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

/* Base orb */
.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(45,226,230,0.6),
    rgba(45,226,230,0.15),
    transparent 70%
  );
  filter: blur(20px);
  opacity: 0.8;
  animation-timing-function: linear;
  will-change: transform;
}

/* Individual orbs */
.orb-1 {
  width: 220px;
  height: 220px;
  top: 10%;
  left: 8%;
  animation: drift1 14s infinite alternate;
}

.orb-2 {
  width: 320px;
  height: 320px;
  top: 65%;
  left: 65%;
  animation: drift2 18s infinite alternate;
}

.orb-3 {
  width: 160px;
  height: 160px;
  top: 30%;
  left: 45%;
  animation: drift3 12s infinite alternate;
}

.orb-4 {
  width: 260px;
  height: 260px;
  top: 75%;
  left: 15%;
  animation: drift4 20s infinite alternate;
}

.orb-5 {
  width: 140px;
  height: 140px;
  top: 20%;
  left: 75%;
  animation: drift5 10s infinite alternate;
}

/* =====================
   ADVANCED MOTION
===================== */
@keyframes drift1 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(120px, -80px) scale(1.2); }
  100% { transform: translate(-60px, 60px) scale(0.9); }
}

@keyframes drift2 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(-140px, 100px) rotate(180deg); }
  100% { transform: translate(80px, -120px) rotate(360deg); }
}

@keyframes drift3 {
  0%   { transform: translate(0, 0) scale(0.9); }
  50%  { transform: translate(60px, 140px) scale(1.3); }
  100% { transform: translate(-90px, -70px) scale(1); }
}

@keyframes drift4 {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(180px, -120px); }
  100% { transform: translate(-120px, 90px); }
}

@keyframes drift5 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-80px, 100px) scale(1.4); }
  100% { transform: translate(60px, -120px) scale(0.8); }
}

/* =====================
   MOBILE PERFORMANCE
===================== */
@media (max-width: 768px) {
  .orb {
    filter: blur(26px);
    opacity: 0.6;
  }

  .orb-4,
  .orb-5 {
    display: none;
  }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .orb {
    animation: none;
  }
}

/* =====================
   GLOBAL RESPONSIVE SAFETY
===================== */
html,
body {
  max-width: 100%;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
  height: auto;
}

table {
  width: 100%;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.section-container,
.container {
  width: 100%;
  min-width: 0;
}

@media (max-width: 768px) {
  .section-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}