@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Playfair+Display:wght@400;600;700&display=swap');

body {
  font-family: 'DM Sans', sans-serif;
  transition: background-color 0.3s, color 0.3s;
  margin: 0;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

[data-theme="light"] {
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --card-bg: #f1f5f9;
  --shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08);
  --gradient: linear-gradient(to bottom right, #1e40af, #a855f7);
}

[data-theme="dark"] {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --card-bg: #2e1065;
  --shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.6);
  --gradient: linear-gradient(to bottom right, #1e40af, #a855f7);
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

.glassmorphism {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s, border-color 0.3s;
}

.neumorphism {
  background: linear-gradient(145deg, var(--card-bg), #ffffff10);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.15), -6px -6px 12px rgba(255, 255, 255, 0.05);
  transition: box-shadow 0.3s, transform 0.3s;
}

.neumorphism:hover {
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2), -3px -3px 6px rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.card {
  position: relative;
  z-index: 5;
  transition: transform 0.4s ease, border-color 0.4s ease;
  border: 2px solid transparent;
  border-radius: 1rem;
}

.card:hover {
  border-color: #3b82f6;
  transform: translateY(-6px);
}

.parallax-layer {
  transform: translateZ(0);
  z-index: 1;
}

.cursor-orb {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,0.7) 0%, rgba(236,72,153,0.5) 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 1000;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 0.9; }
}

.follow-banner {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  opacity: 0;
  transition: opacity 0.5s;
  padding: 1rem 2rem;
  max-width: 600px;
  pointer-events: none;
}

.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, rgba(96,165,250,0.7) 0%, rgba(236,72,153,0.3) 70%);
  border-radius: 50%;
  z-index: 0;
}

input:focus, textarea:focus, button:focus {
  outline: none;
  ring: 4px solid #3b82f6;
}

/* Add to existing styles.css */
#hero, #about, #services, #portfolio, #whyus, #successmetrics, #testimonials, #casestudies, #process, #pricing, #faq, #contact, #footer {
  scroll-margin-top: 80px;
}
input, textarea {
  box-sizing: border-box;
}