:root {
  --primary: #00f2fe;
  --secondary: #4facfe;
  --accent: #ff00d9;
  --bg-dark: #050505;
  --card-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --font-family: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-family);
  overflow-x: hidden;
  line-height: 1.6;
}

.highlight {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.glass {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo {
  height: 40px;
  filter: drop-shadow(0 0 8px var(--primary));
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.btn-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600 !important;
  color: #000 !important;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 10%;
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #000;
}

.btn.primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.3);
}

.btn.secondary {
  border: 1px solid var(--glass-border);
  color: var(--text-main);
}

.btn.secondary:hover {
  background: var(--card-bg);
  transform: translateY(-5px);
}

/* Blobs for Hero Visual */
.hero-visual {
  flex: 0.8;
  position: relative;
}

.blob-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: move 20s infinite alternate;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: -50px;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: var(--accent);
  bottom: -100px;
  left: -50px;
  animation-delay: -5s;
}

@keyframes move {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(50px, 50px) scale(1.2); }
}

/* Services */
.services {
  padding: 10rem 0;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 3rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.service-card .icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--text-muted);
}

/* About */
.about {
  padding: 5rem 0;
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 4rem;
  background: var(--card-bg);
  padding: 4rem;
  border-radius: 30px;
}

.about-text {
  flex: 1.5;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-stats {
  flex: 1;
  display: flex;
  justify-content: space-around;
  padding: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

/* Contact */
.contact {
  padding: 10rem 0;
}

.contact-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem;
  text-align: center;
}

.contact-card h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-card p {
  margin-bottom: 3rem;
  color: var(--text-muted);
}

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

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 1.2rem;
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* Footer */
.footer {
  text-align: center;
  padding: 4rem 0;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { flex-direction: column; text-align: center; padding-top: 8rem; }
  .hero-visual { display: none; }
  .about-flex { flex-direction: column; padding: 2rem; }
  .section-title { font-size: 2.5rem; }
}
