/* ═══════════════════════════════════════════════════════════════════════════
   PROSPERO WEBBOX — ULTRA-PREMIUM STYLESHEET
   Font: Orbitron (display) + Exo 2 (body) + Space Mono (code/accents)
   Theme: Deep space neon — midnight navy, electric cyan, vivid violet, hot pink
═══════════════════════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─────────────────────────────────────────────────────── */
:root {
  --bg: #050811;
  --bg2: #080d1a;
  --bg3: #0d1530;
  --cyan: #00f5ff;
  --violet: #7c3aff;
  --pink: #ff2d9e;
  --amber: #ffb800;
  --white: #e8eeff;
  --muted: #6272a4;
  --card: rgba(13, 21, 48, 0.75);
  --card-border: rgba(0, 245, 255, 0.12);
  --glow-cyan: 0 0 20px rgba(0, 245, 255, 0.5), 0 0 60px rgba(0, 245, 255, 0.15);
  --glow-violet: 0 0 20px rgba(124, 58, 255, 0.5), 0 0 60px rgba(124, 58, 255, 0.15);
  --glow-pink: 0 0 20px rgba(255, 45, 158, 0.5), 0 0 60px rgba(255, 45, 158, 0.15);
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Exo 2', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --radius: 16px;
}

/* ─── RESET & BASE ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

body.loading { overflow: hidden; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── CUSTOM CURSOR ──────────────────────────────────────────────────────── */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  box-shadow: var(--glow-cyan);
}

.cursor-ring {
  width: 40px; height: 40px;
  border: 2px solid rgba(83, 188, 236, 0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0; z-index: 9998;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.4s ease, width 0.1s, height 0.1s, border-color 0.3s;
}

.cursor-ring.hover {
  width: 60px; height: 60px;
  border-color: var(--pink);
  background: rgba(255, 45, 158, 0.05);
}

@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* ─── SCROLL PROGRESS ────────────────────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink));
  z-index: 10000;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(0, 245, 255, 0.8);
}

/* ─── LOADER ─────────────────────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9997;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.fade-out { opacity: 0; visibility: hidden; }

.loader-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(124, 58, 255, 0.15) 0%, transparent 70%);
  animation: loaderPulse 3s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.loader-content {
  position: relative; z-index: 2;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
}

.loader-logo {
  width: 100px; height: 100px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 20px;
  margin: 0 auto;
  animation: logoSpin 2s ease-out forwards;
}

.loader-logo img { width: 100%; height: 100%; object-fit: contain;border-radius: 20px; }

.loader-text-logo {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  gap: 0.1em;
}

@keyframes logoSpin {
  0% { transform: rotateY(0deg) scale(0.5); opacity: 0; }
  60% { transform: rotateY(360deg) scale(1.1); opacity: 1; }
  100% { transform: rotateY(360deg) scale(1); opacity: 1; }
}

.loader-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.6s ease 0.4s forwards; opacity: 0;
}

.loader-bar-wrap {
  width: 280px; height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px; overflow: hidden;
  position: relative;
  animation: fadeInUp 0.6s ease 0.6s forwards; opacity: 0;
}

.loader-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  border-radius: 4px;
  transition: width 0.05s linear;
  position: relative;
}

.loader-bar::after {
  content: '';
  position: absolute; right: 0; top: -4px;
  width: 12px; height: 12px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: var(--glow-cyan);
}

.loader-percent {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--cyan);
  animation: fadeInUp 0.6s ease 0.6s forwards; opacity: 0;
}

.loader-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeInUp 0.6s ease 0.8s forwards; opacity: 0;
}

.loader-particles { position: absolute; inset: 0; overflow: hidden; }
.loader-particles .particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--cyan);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle linear infinite;
  box-shadow: 0 0 6px var(--cyan);
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ─── NAVBAR ─────────────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(5, 8, 17, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 245, 255, 0.1);
  padding: 0.8rem 0;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center;
  height: 44px;
}

.nav-logo img { height: 44px; width: auto; border-radius: 12px;}

.nav-text-logo {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--white);
}

.nav-text-logo span { color: var(--cyan); }

.nav-links {
  display: flex; list-style: none; gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 238, 255, 0.7);
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover { color: var(--cyan); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}

.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 8rem 2rem 4rem;
}

#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 900px; margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0, 245, 255, 0.3);
  padding: 0.4em 1.2em;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  background: rgba(0, 245, 255, 0.05);
  backdrop-filter: blur(8px);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 245, 255, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(0, 245, 255, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e8ff 40%, var(--cyan) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 40px rgba(0, 245, 255, 0.2));
}

.title-accent {
  background: linear-gradient(90deg, var(--violet), var(--pink));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(124, 58, 255, 0.4));
}

.hero-tagline {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-family: var(--font-body);
  font-weight: 300;
  color: rgba(232, 238, 255, 0.75);
  margin-bottom: 2.5rem;
  min-height: 2.4em;
}

.tagline-dynamic {
  font-weight: 600;
  color: var(--cyan);
  border-right: 3px solid var(--cyan);
  padding-right: 4px;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { border-color: transparent; }
}

.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex; gap: 2rem; justify-content: center; align-items: center;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stat span { font-family: var(--font-display); font-size: 1.2rem; color: var(--violet); }
.hero-stat div { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.2rem; }

.hero-stat-divider {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, rgba(0, 245, 255, 0.4), transparent);
}

.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em;
  color: var(--muted);
  animation: scrollFloat 2.5s ease-in-out infinite;
}

.scroll-hint-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--cyan));
  animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* Floating orbs */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 1;
}

.orb1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 255, 0.2) 0%, transparent 70%);
  top: -150px; left: -200px;
  animation: orbFloat 18s ease-in-out infinite;
}

.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.15) 0%, transparent 70%);
  bottom: -100px; right: -150px;
  animation: orbFloat 14s ease-in-out infinite reverse;
}

.orb3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255, 45, 158, 0.12) 0%, transparent 70%);
  top: 40%; left: 60%;
  animation: orbFloat 20s ease-in-out infinite 5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(30px, -40px); }
  50% { transform: translate(-20px, 20px); }
  75% { transform: translate(40px, 30px); }
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85em 2em;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none; border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-text { position: relative; z-index: 2; }

.btn-glow {
  position: absolute; inset: -2px;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}

.btn:hover .btn-glow { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--violet) 0%, #5b21b6 100%);
  color: white;
  box-shadow: 0 4px 24px rgba(124, 58, 255, 0.35);
}

.btn-primary::before {
  background: linear-gradient(135deg, #8b5cf6 0%, var(--violet) 100%);
}

.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(124, 58, 255, 0.6);
}

.btn-primary .btn-glow {
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  filter: blur(8px);
}

.btn-secondary {
  background: transparent;
  color: var(--cyan);
  border: 2px solid rgba(0, 245, 255, 0.4);
  box-shadow: inset 0 0 20px rgba(0, 245, 255, 0.05);
}

.btn-secondary::before {
  background: rgba(0, 245, 255, 0.08);
}

.btn-secondary:hover {
  border-color: var(--cyan);
  color: white;
  box-shadow: var(--glow-cyan);
}

.btn-game {
  background: linear-gradient(135deg, var(--pink) 0%, #c41d7f 100%);
  color: white;
  box-shadow: 0 4px 24px rgba(255, 45, 158, 0.35);
}

.btn-game:hover {
  box-shadow: 0 8px 40px rgba(255, 45, 158, 0.6);
}

.btn-full { width: 100%; }

/* ─── SECTION BASE ───────────────── */
.section {
  padding: 7rem 0;
  position: relative;
}

.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #00f5ff;
  padding: 0.4em 1.2em;
  border-radius: 100px;
  border: 1px solid rgba(0,245,255,0.3);
  background: rgba(0,245,255,0.05);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
}

.accent {
  background: linear-gradient(90deg,#00f5ff,#7c3aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  color: #9aa4b2;
  max-width: 600px;
  margin: 1rem auto 0;
}

/* ─── SERVICES GRID ───────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  position: relative;
  padding: 2.2rem;
  border-radius: 18px;
  background: linear-gradient(145deg, #0a0f25, #04070f);
  border: 1px solid rgba(0,245,255,0.15);
  overflow: hidden;
  transition: 0.5s;
}

/* ICON */
.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* glow */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(0,245,255,0.2), transparent);
  opacity: 0;
  transition: 0.5s;
}

/* hover */
.service-card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 25px 80px rgba(0,245,255,0.25);
}

.service-card:hover::before {
  opacity: 1;
}

/* AI SPECIAL */
.ai-card {
  border: 1px solid #ff2d76;
  background: linear-gradient(145deg,#ff65c4,#bd56f5);
  box-shadow: 0 0 40px rgba(255,45,158,0.4);
}

.ai-card:hover {
  box-shadow: 0 0 80px rgba(255,45,158,0.6);
}
.web-card {
  border: 1px solid #2d96ff;
  background: linear-gradient(145deg,#3967ad,#a070d1);
  box-shadow: 0 0 40px rgba(45, 45, 255, 0.4);
}
.app-card {
  border: 1px solid #7be392;
  background: linear-gradient(145deg,#2bdf55,#9f72cd);
  box-shadow: 0 0 40px rgba(45, 255, 115, 0.4);
}

.app-card:hover {
  box-shadow: 0 0 80px rgba(59, 255, 45, 0.6);
}
.goog-card {
  border: 1px solid #ff7d2d;
  background: linear-gradient(145deg,#efed6d,#f2873fec);
  box-shadow: 0 0 40px rgba(223, 156, 31, 0.4);
}

.goog-card:hover {
  box-shadow: 0 0 80px rgba(255,45,158,0.6);
}
.logo-card {
  border: 1px solid #00a4f6;
  background: linear-gradient(145deg,#bf00ff,#b56aff);
  box-shadow: 0 0 40px rgba(255,45,158,0.4);
}

.logo-card:hover {
  box-shadow: 0 0 80px rgba(255,45,158,0.6);
}
.web-card:hover {
  box-shadow: 0 0 80px rgba(23, 125, 226, 0.6);
}
/* BUTTON */
.card-btn {
  display: inline-block;
  margin-top: 1rem;
  color: #00f5ff;
  font-weight: 700;
  transition: 0.3s;
}

.card-btn:hover {
  color: #ff2d9e;
  transform: translateX(6px);
}
.service-card::before {
  pointer-events: none; /* 🔥 THIS FIXES THE ISSUE */
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

/* CARD */
.pricing-card {
  position: relative;
  padding: 2rem;
  border-radius: 20px;
  background: rgba(10,15,40,0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.5s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}

/* glow layer */
.glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg,#00f5ff,#7c3aff,#ff2d9e);
  opacity: 0;
  filter: blur(20px);
  transition: 0.5s;
  z-index: 0;
}

.pricing-card:hover .glow {
  opacity: 0.6;
}

/* hover motion */
.pricing-card:hover {
  transform: translateY(-15px) scale(1.04);
}

/* shine sweep */
.pricing-card::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg,transparent,rgba(255,255,255,0.2),transparent);
  transform: rotate(25deg) translateX(-100%);
  transition: 0.6s;
}

.pricing-card:hover::after {
  transform: rotate(25deg) translateX(100%);
}

/* price */
.price {
  font-size: 2.2rem;
  font-weight: 900;
  margin: 1rem 0;
  background: linear-gradient(90deg,#00f5ff,#7c3aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* features */
.features li {
  margin: 0.5rem 0;
  color: #aab3c5;
}

/* MAIN BUTTON */
.btn-main {
  display: block;
  text-align: center;
  padding: 0.8rem;
  border-radius: 12px;
  background: linear-gradient(90deg,#7c3aff,#00f5ff);
  color: white;
  font-weight: 700;
  margin-top: 1rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.btn-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,transparent,rgba(255,255,255,0.4),transparent);
  transform: translateX(-100%);
}

.btn-main:hover::before {
  transform: translateX(100%);
  transition: 0.6s;
}

.btn-main:hover {
  transform: scale(1.05);
}

/* SECOND BUTTON */
.btn-alt {
  display: block;
  margin-top: 0.6rem;
  text-align: center;
  padding: 0.6rem;
  border-radius: 10px;
  border: 1px solid #00f5ff;
  color: #00f5ff;
  text-decoration: none;
  transition: 0.3s;
}

.btn-alt:hover {
  background: #00f5ff;
  color: black;
}

/* BADGE */
.badge {
  position: absolute;
  top: 15px;
  right: -45px;
  background: linear-gradient(90deg,#ff2d9e,#ff7a18);
  padding: 6px 55px;
  transform: rotate(45deg);
  font-size: 0.7rem;
  color: white;
}

/* TYPES */
.ai { border: 1px solid #ff2d9e; }
.popular { border: 1px solid #00f5ff; }
.premium { border: 1px solid #7c3aff; }
.custom { border: 1px solid gold; }
.extra { border: 1px solid #00ffae; }
.glow {
  pointer-events: none;
}
/* ─── ABOUT ──────────────────────────────────────────────────────────────── */
.about-section { background: var(--bg2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

.about-text p {
  color: rgba(232, 238, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
  overflow: hidden;
  transition: var(--transition);
}

.stat-card:hover { transform: translateY(-4px); border-color: rgba(0, 245, 255, 0.35); }
.stat-card:hover .stat-glow { opacity: 1; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 900;
  color: var(--violet);
  display: inline;
}

.stat-label {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-top: 0.4rem;
}

.stat-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(0, 245, 255, 0.06) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}

/* From Uiverse.io by cssbuttons-io */ 
.but1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(144deg, #af40ff, #5b42f3 50%, #00ddeb);
  border: 0;
  border-radius: 10px;
  box-shadow: rgba(151, 65, 252, 0.3) 0 15px 30px -5px;
  font-size: 16px;
  min-width: 140px;
  padding: 3px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.but1 span {
  background-color: rgb(5, 6, 45);
  padding: 14px 24px;
  border-radius: 8px;
  transition: 0.3s;
}

.but1:hover span {
  background: transparent;
}

.but1:active {
  transform: scale(0.92);
}
/* ─── FAQs ────────────────────────────────────────────────────────────── */
/* ───────── FAQ SECTION ───────── */
.faq-section {
  background: radial-gradient(circle at 20% 20%, #0b0f2a, #03060f);
  position: relative;
  overflow: hidden;
}

/* container spacing */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* ───────── FAQ CARD ───────── */
.faq-item {
  background: linear-gradient(145deg, #0a0f25, #04070f);
  border: 1px solid rgba(0,245,255,0.12);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s ease;
  position: relative;
}

/* glow border effect */
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(120deg, transparent, rgba(0,245,255,0.15), transparent);
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}

.faq-item:hover::before {
  opacity: 1;
}

/* hover lift */
.faq-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 10px 40px rgba(0,245,255,0.15);
}

/* open state */
.faq-item.open {
  border-color: rgba(255,45,158,0.5);
  box-shadow: 0 0 25px rgba(255,45,158,0.2);
}

/* ───────── QUESTION BUTTON ───────── */
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;

  padding: 1.3rem 1.5rem;

  background: transparent;
  border: none;
  cursor: pointer;

  font-size: 0.95rem;
  font-weight: 600;
  color: #eaf2ff;
  text-align: left;

  transition: all 0.3s ease;
}

/* hover text */
.faq-q:hover {
  color: #00f5ff;
  letter-spacing: 0.3px;
}

/* ───────── ICON ───────── */
.faq-icon {
  font-size: 1.4rem;
  color: #00f5ff;
  transition: all 0.35s ease;
}

/* rotate when open */
.faq-item.open .faq-icon {
  transform: rotate(45deg) scale(1.2);
  color: #ff2d9e;
}

/* ───────── ANSWER ───────── */
.faq-a {
  max-height: 0;
  overflow: hidden;

  transition: 
    max-height 0.6s cubic-bezier(0.23,1,0.32,1),
    padding 0.3s ease;
}

/* open answer */
.faq-item.open .faq-a {
  max-height: 500px;
}

/* text */
.faq-a p {
  padding: 0 1.5rem 1.4rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(232,238,255,0.7);
}

/* ───────── SCROLL REVEAL (OPTIONAL) ───────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ───────── RESPONSIVE ───────── */
@media (max-width: 768px) {
  .faq-q {
    font-size: 0.85rem;
    padding: 1rem;
  }

  .faq-a p {
    font-size: 0.85rem;
  }
}
/* ─── CONTACT ────────────────────────────────────────────────────────────── */
.contact-section {
  padding: 5rem 8%;
  background: radial-gradient(circle at top, #0b0f2a, #03050d);
  color: white;
}

/* layout */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* LEFT */
.contact-left h2 {
  font-size: 2.5rem;
}

.contact-left span {
  background: linear-gradient(90deg,#00f5ff,#7c3aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-links {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.contact-item:hover {
  transform: translateX(10px);
  background: rgba(0,245,255,0.1);
}

.icon {
  font-size: 1.5rem;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
}

.input-box {
  position: relative;
  margin-bottom: 1.5rem;
}

.input-box input,
.input-box textarea {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: 1px solid #555;
  color: white;
  border-radius: 10px;
  outline: none;
}

.input-box label {
  position: absolute;
  left: 12px;
  top: 12px;
  color: #888;
  transition: 0.3s;
}

.input-box input:focus + label,
.input-box textarea:focus + label,
.input-box input:valid + label,
.input-box textarea:valid + label {
  top: -10px;
  font-size: 0.8rem;
  color: #00f5ff;
}

/* BUTTON */
.submit-btn {
  padding: 1rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg,#7c3aff,#00f5ff);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: scale(1.05);
}

/* 🤖 ROBOT */
.robot {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: float 3s ease-in-out infinite;
}

.head {
  width: 80px;
  height: 60px;
  background: #111;
  border-radius: 12px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.eye {
  width: 12px;
  height: 12px;
  background: #00f5ff;
  border-radius: 50%;
  animation: blink 4s infinite;
}

.body {
  width: 60px;
  height: 80px;
  background: #222;
  margin-top: 10px;
  border-radius: 10px;
}

.arm {
  width: 12px;
  height: 50px;
  background: #333;
  position: absolute;
}

.left-arm {
  transform: translateX(-60px);
  animation: wave 2s infinite;
}

.right-arm {
  transform: translateX(60px);
}

/* animations */
@keyframes blink {
  0%, 90%, 100% { height: 12px; }
  95% { height: 2px; }
}

@keyframes wave {
  0%,100% { transform: translateX(-60px) rotate(0); }
  50% { transform: translateX(-60px) rotate(-30deg); }
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* responsive */
@media(max-width: 900px){
  .contact-container {
    grid-template-columns: 1fr;
  }
}
/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.footer {
  position: relative;
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 4rem 0 2rem;
  overflow: hidden;
}

.footer-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at bottom left, rgba(124, 58, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--white), var(--muted));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-logo span { color: var(--amber); -webkit-text-fill-color: var(--amber); }
.footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links h4 { font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.85rem; color: var(--muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--cyan); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 0.8rem; color: var(--muted);
}

/* ─── FLOATING ELEMENTS ──────────────────────────────────────────────────── */
.floating-cta {
  position: fixed; bottom: 5rem; right: 1.5rem; z-index: 900;
  display: flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: white; font-family: var(--font-display); font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.7em 1.2em; border-radius: 100px;
  box-shadow: 0 4px 24px rgba(124, 58, 255, 0.5);
  transition: var(--transition);
  animation: floatCTA 3s ease-in-out infinite;
}

.floating-cta:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 8px 40px rgba(124, 58, 255, 0.7); }
.floating-cta span { font-size: 1rem; animation: sparkle 1.5s ease-in-out infinite; }

@keyframes floatCTA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.3) rotate(20deg); }
}

.back-to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
  width: 44px; height: 44px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 50%;
  color: var(--cyan); font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: rgba(0, 245, 255, 0.15); box-shadow: var(--glow-cyan); transform: translateY(-3px); }

/* ─── GAME OVERLAY ───────────────────────────────────────────────────────── */
.game-overlay {
  position: fixed; inset: 0; z-index: 9990;
  background: #000010;
  display: flex; align-items: center; justify-content: center;
}

.back-to-site {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(0, 245, 255, 0.1);
  border: 1px solid rgba(0, 245, 255, 0.3);
  color: var(--cyan);
  font-family: var(--font-display); font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.6em 1.2em; border-radius: 8px;
  cursor: pointer;
  transition: var(--transition); z-index: 2;
}

.back-to-site:hover { background: rgba(0, 245, 255, 0.2); box-shadow: var(--glow-cyan); }

#gameCanvas { display: block; }

.game-ui {
  position: absolute; top: 1rem; right: 1rem;
  display: flex; gap: 1.5rem;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--cyan); letter-spacing: 0.1em;
  z-index: 2;
}

.game-screen {
  position: absolute; z-index: 3;
  text-align: center;
  background: rgba(5, 8, 17, 0.92);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 380px; width: 90%;
  backdrop-filter: blur(24px);
}

.game-screen h2 {
  font-family: var(--font-display); font-size: 2rem; font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.game-screen p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.5rem; }

.controls-hint {
  background: rgba(0, 245, 255, 0.06);
  border: 1px solid rgba(0, 245, 255, 0.15);
  border-radius: 8px;
  padding: 0.8rem;
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--cyan); letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.final-score {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 900;
  color: var(--amber); margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(255, 184, 0, 0.5);
}

/* ─── GLOBAL AMBIENT PARTICLES ───────────────────────────────────────────── */
.ambient-particle {
  position: fixed;
  width: 2px; height: 2px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none; z-index: 1;
  opacity: 0;
  animation: ambientFloat linear infinite;
}

@keyframes ambientFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  5% { opacity: 0.6; }
  95% { opacity: 0.3; }
  100% { transform: translateY(-10px) scale(1.5); opacity: 0; }
}

/* ─── UTILITY ────────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(20px); }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%;
    height: 100vh; width: 72vw; max-width: 300px;
    background: rgba(5, 8, 17, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column; gap: 0;
    padding: 6rem 2rem 2rem;
    border-left: 1px solid rgba(0, 245, 255, 0.1);
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 999;
  }

  .nav-links.open { right: 0; }
  .nav-link { font-size: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .hamburger { display: flex; z-index: 1000; }

  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .floating-cta { display: none; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .hero { padding: 6rem 1.5rem 3rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1rem; }
}
/* 🔥 SPECIAL AI CARD */
.ai-card {
  position: relative;
  border: 1px solid rgba(255, 45, 158, 0.25);
  overflow: hidden;
}

/* glowing animated border */
.ai-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, #ff2d9e, #7c3aff, #00f5ff, #ff2d9e);
  background-size: 300% 300%;
  z-index: 0;
  filter: blur(12px);
  opacity: 0.4;
  animation: aiBorderFlow 6s linear infinite;
}

/* inner overlay to keep content readable */
.ai-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 21, 48, 0.85);
  z-index: 1;
}

.ai-card * {
  position: relative;
  z-index: 2;
}

/* animated gradient border */
@keyframes aiBorderFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* 🚀 ICON GLOW */
.ai-icon {
  box-shadow: 0 0 25px rgba(255, 45, 158, 0.6);
  background: linear-gradient(135deg, rgba(255,45,158,0.2), rgba(124,58,255,0.2));
}

/* 💡 TITLE GLOW */
.ai-title {
  background: linear-gradient(90deg, #ff2d9e, #00f5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  letter-spacing: 0.05em;
}

/* 🚨 PULSE BADGE */
.pulse-badge {
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 45, 158, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 45, 158, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 45, 158, 0);
  }
}

/* ⚡ DESCRIPTION */
.ai-desc {
  color: #cfd8ff;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 🔥 BUTTON */
.ai-btn {
  color: #ff2d9e;
  font-weight: 800;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.ai-btn:hover {
  color: #00f5ff;
  transform: translateX(6px) scale(1.05);
}

/* ✨ HOVER EFFECT (THIS MAKES IT FEEL PREMIUM) */
.ai-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 80px rgba(255, 45, 158, 0.25);
}
/* FLOATING BUTTONS */
.floating-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  background: linear-gradient(135deg,#000000,#000000);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.float-btn img {
  width: 54px;
  border-radius: 40px;
}

/* hover glow */
.float-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 0 25px rgba(0,245,255,0.7);
}

/* specific */
.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.call {
  background: linear-gradient(135deg,#ff2d9e,#ff7a18);
}

/* PANEL */
.quick-panel {
  position: fixed;
  right: -320px;
  bottom: 20px;
  width: 300px;
  background: rgba(10,15,40,0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  transition: 0.5s;
  z-index: 9998;
  overflow: hidden;
}

.quick-panel.open {
  right: 90px;
}

/* header */
.panel-header {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  font-weight: bold;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.panel-header button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* links */
.panel-links {
  display: flex;
  flex-direction: column;
}

.panel-links a {
  padding: 1rem;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.panel-links a:hover {
  background: rgba(0,245,255,0.1);
  transform: translateX(8px);
}
/* ===== NAV BUTTON ===== */
.nav-prosai {
  margin-left: 1.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg,#7c3aff,#00f5ff);
  color: white;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

/* shine */
.nav-prosai::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,transparent,rgba(255,255,255,0.4),transparent);
  transform: translateX(-100%);
}

.nav-prosai:hover::before {
  transform: translateX(100%);
  transition: 0.6s;
}

/* glow */
.nav-prosai:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,245,255,0.7);
}

/* pulse */
@keyframes aiPulse {
  0%,100% { box-shadow: 0 0 0 rgba(0,245,255,0); }
  50% { box-shadow: 0 0 18px rgba(0,245,255,0.6); }
}

.nav-prosai {
  animation: aiPulse 3s infinite;
}

/* ===== PANEL ===== */
#prosai-panel {
  position: fixed;
  right: -400px;
  top: 0;
  width: 360px;
  height: 100%;
  background: #050811;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  z-index: 9999;
  box-shadow: -10px 0 50px rgba(0,0,0,0.6);
}

#prosai-panel.open {
  right: 0;
}

/* header */
.prosai-header {
  padding: 1rem;
  background: linear-gradient(90deg,#00f5ff,#7c3aff);
  display: flex;
  justify-content: space-between;
}

/* chat */
#chat-box {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
}

.msg {
  margin: 10px 0;
  padding: 10px;
  border-radius: 10px;
  max-width: 80%;
}

.user {
  background: #7c3aff;
  align-self: flex-end;
}

.bot {
  background: #111;
}

/* suggestions */
#suggestions {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.suggestion {
  background: rgba(255,255,255,0.1);
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: 0.3s;
}

.suggestion:hover {
  background: rgba(0,245,255,0.2);
  transform: scale(1.05);
}
/* PORTFOLIO */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  background: rgba(10,15,40,0.6);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s;
  position: relative;
}

/* hover lift */
.portfolio-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 80px rgba(124,58,255,0.4);
}

/* image */
.portfolio-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* content */
.portfolio-content {
  padding: 1.2rem;
}

.portfolio-content h3 {
  margin-bottom: 0.5rem;
}

.portfolio-content p {
  font-size: 0.9rem;
  color: #aab3c5;
  margin-bottom: 1rem;
}

/* button */
.portfolio-content a {
  text-decoration: none;
  color: #00f5ff;
  font-weight: bold;
  transition: 0.3s;
}

.portfolio-content a:hover {
  color: #7c3aff;
}