/* =====================
   RESET & BASE
   ===================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #060610;
  color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* =====================
   ANIMATIONS
   ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(127,119,221,0.4); }
  70%       { box-shadow: 0 0 0 10px rgba(127,119,221,0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(127,119,221,0.3); }
  50%       { border-color: rgba(93,202,165,0.6); }
}

/* =====================
   PARTICLES CANVAS
   ===================== */
canvas#particles {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* =====================
   NAV
   ===================== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  background: rgba(6,6,16,0.92);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-size: 17px;
  font-weight: 600;
  background: linear-gradient(135deg, #a78bfa, #34d399, #f472b6);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  text-decoration: none !important ;
  color: inherit; /* This keeps the color white/original */
  cursor: pointer;
  display: inline-block;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, #a78bfa, #34d399);
  transition: width 0.3s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  padding: 9px 20px;
  border: 1px solid rgba(167,139,250,0.4);
  border-radius: 50px;
  color: #a78bfa;
  background: rgba(167,139,250,0.08);
  cursor: pointer;
  transition: all 0.3s;
  animation: borderGlow 3s ease infinite;
}
.nav-cta:hover { background: rgba(167,139,250,0.18); transform: translateY(-1px); }

/* =====================
   HERO
   ===================== */
.hero {
  padding: 90px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.orb1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(127,119,221,0.15) 0%, transparent 65%); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.orb2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(52,211,153,0.1) 0%, transparent 65%); top: 20%; right: 10%; }
.orb3 { width: 250px; height: 250px; background: radial-gradient(circle, rgba(244,114,182,0.08) 0%, transparent 65%); bottom: 10%; left: 10%; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #34d399;
  background: rgba(52,211,153,0.08);
  border: 0.5px solid rgba(52,211,153,0.25);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
  position: relative;
  z-index: 1;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #34d399;
  animation: pulse 2s ease infinite;
}
.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease 0.15s both;
  position: relative;
  z-index: 1;
}
.g1 {
  background: linear-gradient(135deg, #a78bfa, #34d399);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
.g2 {
  background: linear-gradient(135deg, #f472b6, #a78bfa);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
  animation: fadeUp 0.6s ease 0.25s both;
  position: relative;
  z-index: 1;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease 0.35s both;
  position: relative;
  z-index: 1;
}

/* =====================
   BUTTONS
   ===================== */
.btn-glow {
  font-size: 14px;
  font-weight: 600;
  padding: 13px 32px;
  background: linear-gradient(135deg, #7F77DD, #a78bfa);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(127,119,221,0.35);
}
.btn-glow:hover { transform: translateY(-3px); box-shadow: 0 0 35px rgba(127,119,221,0.55); }
.btn-outline {
  font-size: 14px;
  font-weight: 500;
  padding: 13px 32px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-outline:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.3); transform: translateY(-3px); }

/* =====================
   STATS
   ===================== */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; padding: 40px; }
.stat {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s;
}
.stat:hover { background: rgba(255,255,255,0.06); border-color: rgba(167,139,250,0.3); transform: translateY(-5px); }
.stat-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-icon svg { width: 26px; height: 26px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.stat-info { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-size: 30px; font-weight: 700; line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }

/* =====================
   SECTIONS
   ===================== */
.section { padding: 72px 40px; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #a78bfa;
  background: rgba(167,139,250,0.08);
  border: 0.5px solid rgba(167,139,250,0.2);
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
h2 { font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.section-sub { font-size: 15px; color: rgba(255,255,255,0.4); margin-bottom: 40px; line-height: 1.7; }
.divider { height: 0.5px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent); margin: 0 40px; }

/* =====================
   SERVICES
   ===================== */
.services { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.svc {
  background: rgba(255,255,255,0.02);
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 28px 22px;
  transition: all 0.35s;
  cursor: pointer;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}
.svc::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(127,119,221,0.06),transparent); opacity: 0; transition: opacity 0.3s; border-radius: 20px; }
.svc:hover { border-color: rgba(167,139,250,0.35); transform: translateY(-6px); }
.svc:hover::before { opacity: 1; }
.svc-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.svc-icon svg { width: 22px; height: 22px; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.svc h3 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.svc p { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.65; }

/* =====================
   WEBSITE CATEGORIES
   ===================== */
.cats { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.cat { border-radius: 24px; padding: 34px 26px; cursor: pointer; transition: all 0.35s; position: relative; overflow: hidden; transform-style: preserve-3d; }
.cat:hover { transform: translateY(-10px) scale(1.01); }
.cat-em { font-size: 36px; margin-bottom: 16px; display: block; animation: float 4s ease infinite; }
.cat:nth-child(2) .cat-em { animation-delay: 0.5s; }
.cat:nth-child(3) .cat-em { animation-delay: 1s; }
.cat:nth-child(4) .cat-em { animation-delay: 1.5s; }
.cat:nth-child(5) .cat-em { animation-delay: 2s; }
.cat:nth-child(6) .cat-em { animation-delay: 2.5s; }
.cat h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.cat p { font-size: 12px; line-height: 1.65; opacity: 0.7; }
.cat-pill { display: inline-block; font-size: 10px; font-weight: 600; padding: 3px 12px; border-radius: 50px; margin-top: 14px; letter-spacing: 0.06em; }
.ca { background: linear-gradient(135deg,rgba(167,139,250,0.15),rgba(109,40,217,0.2)); border: 0.5px solid rgba(167,139,250,0.2); }
.ca h3 { color: #c4b5fd; } .ca .cat-pill { background: rgba(167,139,250,0.15); color: #c4b5fd; }
.cb { background: linear-gradient(135deg,rgba(52,211,153,0.12),rgba(4,120,87,0.2)); border: 0.5px solid rgba(52,211,153,0.2); }
.cb h3 { color: #6ee7b7; } .cb .cat-pill { background: rgba(52,211,153,0.15); color: #6ee7b7; }
.cc { background: linear-gradient(135deg,rgba(244,114,182,0.12),rgba(157,23,77,0.2)); border: 0.5px solid rgba(244,114,182,0.2); }
.cc h3 { color: #f9a8d4; } .cc .cat-pill { background: rgba(244,114,182,0.15); color: #f9a8d4; }
.cd { background: linear-gradient(135deg,rgba(251,191,36,0.12),rgba(180,83,9,0.2)); border: 0.5px solid rgba(251,191,36,0.2); }
.cd h3 { color: #fcd34d; } .cd .cat-pill { background: rgba(251,191,36,0.15); color: #fcd34d; }
.ce { background: linear-gradient(135deg,rgba(96,165,250,0.12),rgba(29,78,216,0.2)); border: 0.5px solid rgba(96,165,250,0.2); }
.ce h3 { color: #93c5fd; } .ce .cat-pill { background: rgba(96,165,250,0.15); color: #93c5fd; }
.cf { background: linear-gradient(135deg,rgba(74,222,128,0.12),rgba(20,83,45,0.2)); border: 0.5px solid rgba(74,222,128,0.2); }
.cf h3 { color: #86efac; } .cf .cat-pill { background: rgba(74,222,128,0.15); color: #86efac; }

/* =====================
   REVIEWS 1x4
   ===================== */
.reviews-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.review {
  background: rgba(255,255,255,0.025);
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 26px 22px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review::before { content: '"'; position: absolute; top: -10px; right: 14px; font-size: 72px; color: rgba(167,139,250,0.08); font-family: Georgia, serif; line-height: 1; }
.review:hover { background: rgba(255,255,255,0.05); border-color: rgba(167,139,250,0.2); transform: translateY(-6px); }
.stars { color: #fbbf24; font-size: 12px; margin-bottom: 12px; letter-spacing: 3px; }
.review p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 20px; font-style: italic; flex: 1; }
.rev-author { display: flex; align-items: center; gap: 10px; }
.rev-av { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; flex-shrink: 0; }
.rev-name { font-size: 13px; font-weight: 600; color: #fff; text-transform: capitalize; }
.rev-role { font-size: 11px; color: rgba(255,255,255,0.3); text-transform: capitalize; }

/* =====================
   CONTACT
   ===================== */
.contact-box {
  margin: 0 40px 64px;
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  background: linear-gradient(135deg,rgba(127,119,221,0.1),rgba(52,211,153,0.06),rgba(244,114,182,0.06));
  border: 0.5px solid rgba(167,139,250,0.15);
  position: relative;
  overflow: hidden;
}
.contact-box::before, .contact-box::after { content: ''; position: absolute; border-radius: 50%; pointer-events: none; }
.contact-box::before { width: 300px; height: 300px; background: radial-gradient(circle,rgba(127,119,221,0.1),transparent); top: -100px; right: -80px; }
.contact-box::after  { width: 200px; height: 200px; background: radial-gradient(circle,rgba(52,211,153,0.08),transparent); bottom: -60px; left: -60px; }
.contact-box h2 { font-size: 34px; font-weight: 700; margin-bottom: 10px; position: relative; z-index: 1; }
.contact-box p { font-size: 15px; color: rgba(255,255,255,0.45); margin-bottom: 32px; position: relative; z-index: 1; }
.contact-email { font-size: 13px; color: rgba(167,139,250,0.7); margin-top: 16px; display: block; position: relative; z-index: 1; }

/* =====================
   FOOTER
   ===================== */
.footer { padding: 28px 40px; border-top: 0.5px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; }
.footer p { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.2); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.6); }

/* =====================
   SCROLL ANIMATION
   ===================== */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 992px) {
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .services { grid-template-columns: repeat(2,1fr); }
  .cats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero { padding: 56px 20px; }
  .hero h1 { font-size: 30px; }
  .stats { grid-template-columns: 1fr; padding: 24px 20px; gap: 12px; }
  .section { padding: 48px 20px; }
  .services { grid-template-columns: 1fr 1fr; }
  .cats { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-box { margin: 0 20px 48px; padding: 40px 24px; }
  .footer { padding: 20px; flex-direction: column; gap: 12px; text-align: center; }
  .divider { margin: 0 20px; }
}
