* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0a0a;
  font-family: 'Inter', sans-serif;
  color: #ecedee;
  line-height: 1.5;
  scroll-behavior: smooth;
  cursor: none;
}

/* Black Theme Core - Changed accent color to Teal/Cyan instead of blue */
:root {
  --bg-dark: #050505;
  --card-dark: #111111;
  --surface-dark: #0e0e0e;
  --border-dim: #262626;
  --accent-color: #00d4ff;
  --accent-glow: rgba(0, 212, 255, 0.25);
  --text-light: #f0f0f0;
  --text-muted: #aaa;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Custom Cursor */
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
}

.cursor-outline {
  width: 30px;
  height: 30px;
  border: 2px solid var(--accent-color);
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.15s ease-out;
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }
  .cursor-dot, .cursor-outline {
    display: none;
  }
}

::-webkit-scrollbar {
  width: 6px;
  background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 8px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.navbar {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-dim);
  background-color: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo h1 {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-color) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo-highlight {
  background: linear-gradient(135deg, var(--accent-color), #7efff5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  font-weight: 500;
}
.nav-links a {
  transition: var(--transition);
  font-size: 1rem;
  position: relative;
  color: #ecedee;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: 0.3s;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a:hover {
  color: var(--accent-color);
}

.btn-primary {
  background: var(--accent-color);
  color: #0a0a0a;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 40px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: #00b8e6;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}
.glow-btn {
  animation: pulseGlow 2s infinite;
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

.btn-outline {
  border: 1.5px solid var(--accent-color);
  background: transparent;
  padding: 8px 24px;
  border-radius: 40px;
  font-weight: 600;
  transition: var(--transition);
  color: var(--accent-color);
}
.btn-outline:hover {
  background: var(--accent-color);
  color: #050505;
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--accent-color);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: #0a0a0a;
  border-right: 1px solid var(--accent-color);
  z-index: 200;
  padding: 80px 30px;
  transition: 0.4s;
  backdrop-filter: blur(12px);
}
.mobile-menu.active {
  left: 0;
}
.mobile-menu ul {
  list-style: none;
}
.mobile-menu li {
  margin: 25px 0;
}
.mobile-menu a {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
}
.mobile-cta {
  display: inline-block;
  background: var(--accent-color);
  color: black;
  padding: 8px 20px;
  border-radius: 40px;
}

@media (max-width: 820px) {
  .nav-links, .navbar .btn-primary {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* Hero */
.hero {
  padding: 80px 0 70px;
}
.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.hero-content {
  flex: 1.2;
}
.hero-badge {
  background: #1f1f1f;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.8rem;
  margin-bottom: 24px;
  color: var(--accent-color);
  border-left: 3px solid var(--accent-color);
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.highlight {
  color: var(--accent-color);
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 20px 0 32px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin: 28px 0;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
}
.stat-label {
  font-size: 0.8rem;
  color: #aaa;
}
.hero-visual {
  flex: 0.9;
  background: radial-gradient(circle at 30% 20%, #1c1c1c, #020202);
  border-radius: 32px;
  padding: 40px 20px;
  text-align: center;
  border: 1px solid #2a2a2a;
  position: relative;
  overflow: hidden;
}
.floating-icon {
  font-size: 4rem;
  color: var(--accent-color);
  animation: float 3s infinite;
}
@keyframes float {
  0%,100%{ transform: translateY(0);}
  50%{ transform: translateY(-12px);}
}
.tech-icons i {
  font-size: 1.8rem;
  margin: 12px 10px;
  color: var(--accent-color);
}
.digital-printer-tag {
  background: #000000aa;
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: 20px;
  margin-top: 20px;
  font-size: 0.75rem;
}

/* Section */
.section {
  padding: 80px 0;
  border-top: 1px solid var(--border-dim);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-badge {
  background: rgba(0, 212, 255, 0.15);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  color: var(--accent-color);
}
.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin: 12px 0;
}
.section-sub {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.service-card {
  background: var(--card-dark);
  border-radius: 28px;
  padding: 32px 24px;
  transition: 0.4s;
  border: 1px solid #202020;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-12px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 35px -12px rgba(0, 212, 255, 0.3);
}
.service-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent, rgba(0, 212, 255, 0.05));
  opacity: 0;
  transition: 0.3s;
}
.service-card:hover .card-overlay {
  opacity: 1;
}

/* Why Us */
.whyus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.why-item {
  background: #0c0c0c;
  border-radius: 24px;
  padding: 32px;
  flex: 1 1 220px;
  text-align: center;
  border-bottom: 3px solid var(--accent-color);
  transition: 0.3s;
}
.why-item:hover {
  transform: scale(1.02);
  background: #141414;
}
.why-item i {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--accent-color);
}

/* Showcase */
.showcase-card {
  background: linear-gradient(135deg, #0e0e0e, #030303);
  border-radius: 32px;
  padding: 28px 32px;
  border-left: 6px solid var(--accent-color);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 40px 0;
}
.showcase-icon i {
  font-size: 3rem;
  color: var(--accent-color);
}

/* CTA */
.cta-section {
  background: linear-gradient(145deg, #0f0f0f, #030303);
  border-radius: 48px;
  margin: 40px auto;
  padding: 56px 40px;
  text-align: center;
  border: 1px solid #2c2c2c;
}
.cta-section h2 {
  font-size: 2rem;
}
.btn-large {
  padding: 14px 40px;
  font-size: 1rem;
  margin-top: 24px;
}

/* Contact */
.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}
.contact-info, .contact-form {
  flex: 1;
  background: #0b0b0b;
  border-radius: 28px;
  padding: 32px;
  border: 1px solid #222;
}
.info-row, .whatsapp-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.info-row i, .whatsapp-row i {
  color: var(--accent-color);
  width: 32px;
  font-size: 1.3rem;
}
.whatsapp-row i {
  color: #25D366;
}
input, textarea {
  width: 100%;
  background: #121212;
  border: 1px solid #2c2c2c;
  padding: 14px 18px;
  border-radius: 24px;
  color: white;
  transition: 0.2s;
}
input:focus, textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}
.form-submit {
  background: var(--accent-color);
  border: none;
  width: 100%;
  padding: 14px;
  border-radius: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
  color: #0a0a0a;
}
.form-submit:hover {
  background: #00b8e6;
}
.form-feedback {
  margin-top: 16px;
  text-align: center;
  font-size: 0.85rem;
}

/* Footer */
footer {
  background: #020202;
  padding: 48px 0 24px;
  border-top: 1px solid #202020;
  margin-top: 40px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.social i {
  font-size: 1.6rem;
  margin-right: 20px;
  transition: 0.2s;
  color: #bbb;
}
.social i:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}
.copyright {
  text-align: center;
  margin-top: 48px;
  color: #5a5a5a;
}

@media (max-width: 780px) {
  .hero-content h1 { font-size: 2.3rem; }
  .section-title { font-size: 1.9rem; }
  .hero-stats { flex-wrap: wrap; }
}