:root {
  --bg: #0B0F1A;
  --card: #12141C;
  --accent: #00E3FF;
  --accent2: #7F5FFF;
  --text: #B1B1B1;
  --glass: rgba(18,20,28,0.7);
  --border-glow: 0 0 12px #00E3FF, 0 0 32px #7F5FFF;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Space Grotesk', 'Urbanist', 'Manrope', sans-serif;
  background: linear-gradient(135deg, #0B0F1A 0%, #12141C 100%);
  color: var(--text);
  overflow-x: hidden;
}
body {
  min-height: 100vh;
  position: relative;
  padding-top: 64px;
}
@media (max-width: 700px) {
  body {
    padding-top: 56px;
  }
}
.hero-bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  min-height: 100%;
  min-width: 100%;
  pointer-events: none;
}
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  margin-top: 0; /* Ensure no overlap with navbar */
}
.hero-content-card {
  background: var(--glass);
  border-radius: 2rem;
  box-shadow: var(--border-glow);
  border: 1.5px solid rgba(0,227,255,0.18);
  backdrop-filter: blur(18px);
  padding: 3rem 2.5rem 3rem 2.5rem;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  margin-right: 3rem;
  animation: fadeInUp 1.2s cubic-bezier(.6,.2,.2,1) 0.2s both;
}
.hero-headline {
  font-size: 2.6rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
  text-shadow: 0 0 16px #00E3FF33;
}
.hero-subheadline {
  font-size: 1.18rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.hero-buttons {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}
.hero-btn {
  padding: 0.85em 2.2em;
  font-size: 1.08rem;
  font-weight: 600;
  border: none;
  border-radius: 2em;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 16px #00E3FF55;
  transition: transform 0.13s, box-shadow 0.13s, background 0.3s;
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-btn:hover, .hero-btn:focus {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 32px #00E3FF99, 0 0 48px #7F5FFF55;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
}
.hero-btn.secondary {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  box-shadow: 0 0 8px #00E3FF33;
}
.hero-btn.secondary:hover, .hero-btn.secondary:focus {
  background: var(--accent);
  color: #12141C;
  box-shadow: 0 0 24px #00E3FF99;
}
.hero-visual {
  flex: 1;
  min-width: 320px;
  max-width: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: fadeIn 1.5s cubic-bezier(.6,.2,.2,1) 0.6s both;
}
.hero-visual-placeholder {
  width: 100%;
  aspect-ratio: 1.2/1;
  background: linear-gradient(135deg, #00E3FF22 0%, #7F5FFF22 100%);
  border-radius: 2.5rem;
  box-shadow: 0 0 48px #00E3FF33, 0 0 96px #7F5FFF22;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 2px solid #00E3FF33;
  /* Glitch effect */
  animation: glitch 2.5s infinite alternate;
}
.hero-visual-placeholder span {
  font-size: 1.3rem;
  color: var(--accent);
  opacity: 0.7;
  letter-spacing: 0.05em;
  text-shadow: 0 0 12px #00E3FF99;
  font-family: monospace;
}
.about-section {
  width: 100vw;
  min-height: 60vh;
  background: linear-gradient(120deg, #0B0F1A 80%, #12141C 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  box-sizing: border-box;
}
.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  max-width: 1400px;
  gap: 4vw;
  padding: 4vw 4vw;
  box-sizing: border-box;
}
.about-text {
  flex: 1 1 50%;
  max-width: 540px;
  min-width: 320px;
  background: var(--glass);
  border-radius: 1.5rem;
  box-shadow: var(--border-glow);
  border: 1.5px solid rgba(0,227,255,0.13);
  backdrop-filter: blur(12px);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  animation: fadeInUp 1.2s cubic-bezier(.6,.2,.2,1) 0.2s both;
}
.about-title {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.5px;
  text-shadow: 0 0 12px #00E3FF22;
}
.about-desc {
  font-size: 1.13rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 1.2rem 0;
}
.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.2rem;
}
.about-stat {
  display: flex;
  align-items: baseline;
  gap: 0.4em;
  font-size: 1.13rem;
  font-weight: 500;
  color: #fff;
  background: rgba(0,227,255,0.06);
  border-radius: 1em;
  padding: 0.5em 1.1em 0.5em 0.8em;
  box-shadow: 0 0 12px #00E3FF11;
  margin-bottom: 0.2em;
  min-width: 180px;
}
.about-stat-icon {
  font-size: 1.3em;
  margin-right: 0.2em;
  filter: drop-shadow(0 0 6px #00E3FF88);
}
.about-stat-number {
  font-size: 1.35em;
  font-weight: 700;
  color: var(--accent);
  min-width: 2.2em;
  display: inline-block;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.about-stat-label {
  font-size: 0.98em;
  color: var(--text);
  margin-left: 0.2em;
  font-weight: 400;
}
.about-visual {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  animation: fadeIn 1.5s cubic-bezier(.6,.2,.2,1) 0.6s both;
}
.about-visual dotlottie-wc {
  max-width: 90%;
  max-height: 340px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
body > *:not(.hero-bg-canvas) {
  position: relative;
  z-index: 1;
}
.services-section {
  width: 100%;
  background: linear-gradient(120deg, #0B0F1A 80%, #12141C 100%);
  padding: 0 0 6rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 3.5rem 2rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2.5rem;
  letter-spacing: -1px;
  text-shadow: 0 0 18px #00E3FF22;
}
.services-categories {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.services-category {
  width: 100%;
}
.services-category-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent2);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
  letter-spacing: 0.01em;
}
.services-category-icon {
  font-size: 1.5em;
  filter: drop-shadow(0 0 8px #00E3FF88);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.2rem;
}
.service-card {
  background: rgba(18,20,28,0.85);
  border-radius: 1.5rem;
  border: 1.5px solid #00E3FF33;
  box-shadow: 0 0 24px #00E3FF22, 0 0 48px #7F5FFF11;
  padding: 2.1rem 1.5rem 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.18s;
  cursor: pointer;
  z-index: 1;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 0 48px #00E3FF77, 0 0 96px #7F5FFF44;
  border-color: var(--accent);
  transform: translateY(-6px) scale(1.025);
}
.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.2em;
}
.neon-outline svg {
  filter: drop-shadow(0 0 8px #00E3FF88) drop-shadow(0 0 16px #7F5FFF44);
}
.service-name {
  font-size: 1.13rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.2em;
  letter-spacing: 0.01em;
}
.service-desc {
  font-size: 1.01rem;
  color: var(--text);
  line-height: 1.4;
  min-height: 2.5em;
  transition: opacity 0.2s;
}
.service-hover {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #00E3FF22 0%, #7F5FFF22 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  border-radius: 1.5rem;
  font-size: 1.01rem;
  font-weight: 500;
  text-align: center;
  padding: 2.1rem 1.5rem 1.7rem 1.5rem;
  transition: opacity 0.22s;
  z-index: 2;
  box-shadow: 0 0 32px #00E3FF33;
}
.service-card:hover .service-hover,
.service-card:focus-within .service-hover {
  opacity: 1;
  pointer-events: auto;
  animation: morphCard 0.45s cubic-bezier(.7,.2,.2,1);
}
.service-card:hover .service-desc,
.service-card:focus-within .service-desc,
.service-card:hover .service-name,
.service-card:focus-within .service-name {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.see-how {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.07em;
  letter-spacing: 0.01em;
  text-shadow: 0 0 8px #00E3FF99;
}
.techstack-section {
  width: 100vw;
  background: linear-gradient(120deg, #0B0F1A 80%, #12141C 100%);
  padding: 0 0 4rem 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.techstack-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.techstack-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
  text-shadow: 0 0 12px #00E3FF22;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.techstack-icon {
  font-size: 1.5em;
  filter: drop-shadow(0 0 8px #00E3FF88);
}
.techstack-table-wrapper {
  width: 100%;
  overflow-x: auto;
  background: var(--glass);
  border-radius: 1.2rem;
  box-shadow: 0 0 24px #00E3FF11;
  padding: 1.5rem 1rem 1rem 1rem;
  margin-bottom: 1.2rem;
}
.techstack-table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
  font-size: 1.08rem;
  min-width: 700px;
}
.techstack-table th, .techstack-table td {
  padding: 0.7em 1.1em;
  text-align: left;
  border-bottom: 1px solid #23263a;
}
.techstack-table th {
  color: var(--accent2);
  font-weight: 600;
  font-size: 1.08em;
  background: transparent;
  border-bottom: 2px solid #23263a;
}
.techstack-table tr:last-child td {
  border-bottom: none;
}
.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  background: rgba(0,227,255,0.08);
  color: #00E3FF;
  border: 1px solid #00E3FF44;
  border-radius: 1.2em;
  padding: 0.18em 0.85em;
  font-size: 1em;
  font-weight: 600;
  margin-right: 0.3em;
  margin-bottom: 0.2em;
  box-shadow: 0 0 8px #00E3FF22;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  position: relative;
  cursor: default;
  letter-spacing: 0.01em;
}
.tech-badge.partner {
  border-color: #00E3FF;
  color: #fff;
  background: linear-gradient(90deg, #00E3FF44 0%, #7F5FFF33 100%);
  box-shadow: 0 0 16px #00E3FF44;
}
.tech-badge.react { color: #61dafb; border-color: #61dafb; }
.tech-badge.nodejs { color: #8cc84b; border-color: #8cc84b; }
.tech-badge.nextjs { color: #fff; border-color: #fff; background: #222; }
.tech-badge.typescript { color: #3178c6; border-color: #3178c6; }
.tech-badge.django { color: #092e20; border-color: #092e20; }
.tech-badge.spring { color: #6db33f; border-color: #6db33f; }
.tech-badge.aws { color: #ff9900; border-color: #ff9900; }
.tech-badge.gcp { color: #4285f4; border-color: #4285f4; }
.tech-badge.azure { color: #0078d4; border-color: #0078d4; }
.tech-badge.docker { color: #2496ed; border-color: #2496ed; }
.tech-badge.k8s { color: #326ce5; border-color: #326ce5; }
.tech-badge.github { color: #fff; border-color: #fff; background: #23263a; }
.tech-badge.tensorflow { color: #ff6f00; border-color: #ff6f00; }
.tech-badge.openai { color: #10a37f; border-color: #10a37f; }
.tech-badge.pytorch { color: #ee4c2c; border-color: #ee4c2c; }
.tech-badge.langchain { color: #fff; border-color: #fff; background: #23263a; }
.tech-badge.opencv { color: #5c3ee8; border-color: #5c3ee8; }
.tech-badge.kafka { color: #231f20; border-color: #231f20; background: #fff; }
.verified {
  display: inline-block;
  color: #00E3FF;
  font-size: 1em;
  font-weight: 700;
  margin-left: 0.3em;
  background: #12141C;
  border-radius: 0.8em;
  padding: 0.08em 0.5em;
  border: 1px solid #00E3FF;
  box-shadow: 0 0 8px #00E3FF55;
  letter-spacing: 0.01em;
  vertical-align: middle;
}
.techstack-note {
  color: var(--text);
  font-size: 1.01rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.insight-section {
  width: 100vw;
  background: linear-gradient(120deg, #0B0F1A 80%, #12141C 100%);
  padding: 0 0 5rem 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.insight-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.insight-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2.2rem;
  letter-spacing: -0.5px;
  text-shadow: 0 0 12px #00E3FF22;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.insight-icon {
  font-size: 1.5em;
  filter: drop-shadow(0 0 8px #00E3FF88);
}
.insight-grid {
  display: flex;
  gap: 2.5rem;
  width: 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.insight-card {
  background: var(--glass);
  border-radius: 1.3rem;
  box-shadow: 0 0 24px #00E3FF22, 0 0 48px #7F5FFF11;
  border: 1.5px solid #00E3FF33;
  padding: 2.2rem 2rem 2rem 2rem;
  min-width: 280px;
  max-width: 350px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.18s;
  z-index: 1;
}
.insight-card:hover, .insight-card:focus-within {
  box-shadow: 0 0 48px #00E3FF77, 0 0 96px #7F5FFF44;
  border-color: var(--accent);
  transform: translateY(-6px) scale(1.025);
}
.insight-meta {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.98em;
  color: var(--accent2);
  font-weight: 500;
  margin-bottom: 0.2em;
}
.insight-dot {
  color: var(--accent);
  font-size: 1.1em;
}
.insight-headline {
  font-size: 1.18rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5em;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.insight-cta {
  margin-top: auto;
}
.insight-btn {
  display: inline-block;
  padding: 0.6em 1.5em;
  border-radius: 2em;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #fff;
  font-weight: 600;
  font-size: 1.01em;
  text-decoration: none;
  box-shadow: 0 0 12px #00E3FF55;
  transition: background 0.22s, box-shadow 0.22s, color 0.18s;
  border: none;
  outline: none;
  cursor: pointer;
}
.insight-btn:hover, .insight-btn:focus {
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  color: #fff;
  box-shadow: 0 0 32px #00E3FF99, 0 0 48px #7F5FFF55;
}
.casestudy-section {
  width: 100vw;
  background: linear-gradient(120deg, #0B0F1A 80%, #12141C 100%);
  padding: 0 0 6rem 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.casestudy-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.casestudy-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2.2rem;
  letter-spacing: -0.5px;
  text-shadow: 0 0 12px #00E3FF22;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.casestudy-icon {
  font-size: 1.5em;
  filter: drop-shadow(0 0 8px #00E3FF88);
}
.casestudy-grid {
  display: flex;
  gap: 2.5rem;
  width: 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.casestudy-card {
  background: var(--glass);
  border-radius: 1.3rem 3.5rem 1.3rem 1.3rem/1.3rem 1.3rem 3.5rem 1.3rem;
  box-shadow: 0 0 32px #00E3FF22, 0 0 64px #7F5FFF11;
  border: 1.5px solid #00E3FF33;
  padding: 2.2rem 2rem 2rem 2rem;
  min-width: 280px;
  max-width: 350px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.18s;
  z-index: 1;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transform: skewY(-3deg);
}
.casestudy-card:hover, .casestudy-card:focus-within {
  box-shadow: 0 0 48px #00E3FF77, 0 0 96px #7F5FFF44;
  border-color: var(--accent);
  transform: skewY(-3deg) scale(1.03);
}
.casestudy-logo {
  font-size: 2.2rem;
  margin-bottom: 0.3em;
  filter: drop-shadow(0 0 8px #00E3FF88);
}
.casestudy-client {
  font-size: 1.13rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.1em;
  line-height: 1.2;
}
.casestudy-client-meta {
  font-size: 0.98em;
  color: var(--accent2);
  font-weight: 400;
}
.casestudy-challenge,
.casestudy-solution {
  font-size: 1.01rem;
  color: var(--text);
  margin-bottom: 0.1em;
}
.casestudy-impact {
  font-size: 0.98em;
  color: var(--accent);
  margin-bottom: 0.5em;
  font-weight: 600;
}
.casestudy-expand {
  margin-top: auto;
  padding: 0.5em 1.3em;
  border-radius: 2em;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #fff;
  font-weight: 600;
  font-size: 1.01em;
  text-decoration: none;
  box-shadow: 0 0 12px #00E3FF55;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.22s, color 0.18s;
}
.casestudy-expand:hover, .casestudy-expand:focus {
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  color: #fff;
  box-shadow: 0 0 32px #00E3FF99, 0 0 48px #7F5FFF55;
}
.casestudy-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(11,15,26,0.85);
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.casestudy-modal.active {
  display: flex;
}
.casestudy-modal-content {
  background: var(--glass);
  border-radius: 2rem;
  box-shadow: 0 0 48px #00E3FF55, 0 0 96px #7F5FFF22;
  padding: 2.5rem 2.2rem;
  max-width: 420px;
  width: 90vw;
  color: #fff;
  position: relative;
  animation: fadeInUp 0.4s;
}
.casestudy-modal-content h3 {
  margin-top: 0;
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 1.1em;
}
.casestudy-modal-content p {
  margin: 0.5em 0;
  color: var(--text);
  font-size: 1.05em;
}
.casestudy-modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}
.casestudy-modal-close:hover {
  color: var(--accent);
}
.navbar {
  width: 100vw;
  position: fixed;
  top: 0; left: 0;
  z-index: 2000;
  background: rgba(11,15,26,0.92);
  box-shadow: 0 2px 24px #00E3FF11;
  border-bottom: 1.5px solid #23263a;
  backdrop-filter: blur(12px);
}
.navbar-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.7rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.navbar-logo-icon {
  font-size: 1.5em;
  filter: drop-shadow(0 0 8px #00E3FF88);
}
.navbar-links {
  display: flex;
  gap: 2.2em;
  align-items: center;
  z-index: 3000;
}
.navbar-link {
  color: #B1B1B1;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05em;
  padding: 0.3em 0.7em;
  border-radius: 1.2em;
  transition: color 0.18s, background 0.18s;
  position: relative;
}
.navbar-link:hover,
.navbar-link:focus {
  color: #fff;
  background: rgba(0,227,255,0.08);
}
.navbar-link.navbar-cta {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 12px #00E3FF55;
  padding: 0.3em 1.3em;
  margin-left: 0.7em;
}
.navbar-link.navbar-cta:hover,
.navbar-link.navbar-cta:focus {
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  color: #fff;
  box-shadow: 0 0 24px #00E3FF99;
}
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3em;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: 1.2em;
}
.navbar-toggle-bar {
  width: 28px;
  height: 3px;
  background: var(--accent2);
  border-radius: 2px;
  display: block;
  transition: background 0.2s;
}
@media (max-width: 900px) {
  .navbar-container {
    padding: 0.7rem 1rem;
  }
  .navbar-links {
    gap: 1.1em;
  }
}
@media (max-width: 700px) {
  .navbar-container {
    padding: 0.7rem 0.7rem;
  }
  .navbar-links {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100vw;
    background: rgba(11,15,26,0.98);
    flex-direction: column;
    gap: 1.5em;
    align-items: flex-start;
    padding: 1.5em 1.2em 1.2em 1.2em;
    box-shadow: 0 8px 32px #00E3FF22;
    border-bottom: 1.5px solid #23263a;
    transform: translateY(-120%);
    transition: transform 0.28s cubic-bezier(.7,.2,.2,1);
    z-index: 999;
  }
  .navbar-links.open {
    transform: translateY(0);
  }
  .navbar-toggle {
    display: flex;
    z-index: 999; /* Ensure toggle is above menu */
  }
}


@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: none;}
}
@keyframes fadeIn {
  from { opacity: 0;}
  to { opacity: 1;}
}
@keyframes glitch {
  0% { filter: none; }
  20% { filter: blur(0.5px) brightness(1.1);}
  40% { filter: blur(1.2px) brightness(1.2);}
  60% { filter: none;}
  80% { filter: blur(0.7px) brightness(1.05);}
  100% { filter: none;}
}
@keyframes morphCard {
  0% { transform: scale(0.98) rotate(-2deg);}
  60% { transform: scale(1.04) rotate(1deg);}
  100% { transform: scale(1) rotate(0);}
}
@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5vh;
  }
  .hero-content-card {
    margin-right: 0;
    margin-bottom: 2.5rem;
    max-width: 98vw;
  }
  .hero-visual {
    max-width: 98vw;
  }
  .services-container {
    padding: 2rem 0.5rem 0 0.5rem;
  }
  .services-title {
    font-size: 1.5rem;
  }
  .services-grid {
    gap: 1.2rem;
  }
  .service-card {
    padding: 1.2rem 0.8rem 1.1rem 0.8rem;
    border-radius: 1rem;
  }
  .service-hover {
    border-radius: 1rem;
    padding: 1.2rem 0.8rem 1.1rem 0.8rem;
  }
  .techstack-container {
    padding: 2rem 0.5rem 0 0.5rem;
  }
  .techstack-title {
    font-size: 1.2rem;
  }
  .techstack-table-wrapper {
    padding: 1rem 0.3rem;
  }
  .techstack-table {
    font-size: 0.98rem;
    min-width: 600px;
  }
  .insight-container {
    padding: 2rem 0.5rem 0 0.5rem;
  }
  .insight-title {
    font-size: 1.2rem;
  }
  .insight-grid {
    gap: 1.2rem;
    flex-direction: column;
  }
  .insight-card {
    max-width: 98vw;
    min-width: 0;
    padding: 1.2rem 1rem 1rem 1rem;
    border-radius: 1rem;
  }
  .casestudy-container {
    padding: 2rem 0.5rem 0 0.5rem;
  }
  .casestudy-title {
    font-size: 1.2rem;
  }
  .casestudy-grid {
    gap: 1.2rem;
    flex-direction: column;
  }
  .casestudy-card {
    max-width: 98vw;
    min-width: 0;
    padding: 1.2rem 1rem 1rem 1rem;
    border-radius: 1rem 2.5rem 1rem 1rem/1rem 1rem 2.5rem 1rem;
  }
  .casestudy-modal-content {
    padding: 1.5rem 1rem;
    border-radius: 1.2rem;
  }
}
@media (max-width: 1100px) {
  .about-content {
    flex-direction: column;
    width: 100vw;
    gap: 2.5rem;
    padding: 2rem 0;
  }
  .about-text, .about-visual {
    flex: none;
    width: 90vw;
    max-width: 600px;
    min-width: 0;
    margin: 0 auto;
  }
  .about-visual dotlottie-wc {
    max-width: 100%;
    max-height: 240px;
  }
}
@media (max-width: 700px) {
  .about-section {
    min-height: unset;
    height: auto;
    padding-bottom: 2.5rem;
  }
  .about-content {
    padding: 1.5rem 0 0 0;
    gap: 1.5rem;
    height: auto;
  }
  .about-text, .about-visual {
    width: 98vw;
    max-width: 98vw;
    padding: 1.3rem 0.7rem;
    border-radius: 1rem;
  }
  .about-title {
    font-size: 1.3rem;
  }
  .about-visual dotlottie-wc {
    max-width: 100%;
    max-height: 160px;
  }
  .about-stat {
    min-width: 120px;
    font-size: 0.98rem;
    padding: 0.4em 0.7em 0.4em 0.6em;
  }
}
@media (max-width: 600px) {
  .services-section {
    padding-bottom: 2.5rem;
  }
  .services-title {
    font-size: 1.1rem;
  }
  .techstack-table {
    font-size: 0.92rem;
    min-width: 420px;
  }
  .techstack-title {
    font-size: 1rem;
  }
}
.process-section {
  width: 100vw;
  background: linear-gradient(120deg, #0B0F1A 80%, #12141C 100%);
  padding: 0 0 5rem 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.process-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.process-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2.2rem;
  letter-spacing: -0.5px;
  text-shadow: 0 0 12px #00E3FF22;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.process-icon {
  font-size: 1.5em;
  filter: drop-shadow(0 0 8px #00E3FF88);
}
.process-bar {
  display: flex;
  gap: 2.5rem;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.process-step {
  background: var(--glass);
  border-radius: 1.2rem;
  box-shadow: 0 0 24px #00E3FF22, 0 0 48px #7F5FFF11;
  border: 1.5px solid #00E3FF33;
  padding: 1.2rem 1.1rem 1.1rem 1.1rem;
  min-width: 120px;
  max-width: 160px;
  flex: 1 1 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.18s;
  z-index: 1;
  outline: none;
}
.process-step:focus,
.process-step:hover {
  box-shadow: 0 0 32px #00E3FF77, 0 0 64px #7F5FFF44;
  border-color: var(--accent);
  transform: scale(1.04);
}
.process-step-icon {
  font-size: 2.1rem;
  margin-bottom: 0.2em;
  filter: drop-shadow(0 0 8px #00E3FF88);
}
.process-step-label {
  font-size: 1.08rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.1em;
  letter-spacing: 0.01em;
}
.process-step-detail {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 110%;
  transform: translateX(-50%);
  min-width: 220px;
  max-width: 320px;
  background: var(--glass);
  border-radius: 1rem;
  box-shadow: 0 0 32px #00E3FF33;
  padding: 1.1rem 1rem;
  color: #fff;
  z-index: 10;
  text-align: left;
  animation: fadeInUp 0.3s;
  pointer-events: none;
}
.process-step:hover .process-step-detail,
.process-step:focus .process-step-detail {
  display: block;
  pointer-events: auto;
}
.process-step-detail-inner {
  font-size: 1.01rem;
  color: var(--text);
  line-height: 1.5;
}
.process-step-detail-inner strong {
  color: var(--accent2);
  font-size: 1.08em;
}
.process-step-detail-inner em {
  color: var(--accent);
  font-size: 0.98em;
  display: block;
  margin-top: 0.7em;
}
.testimonials-section {
  width: 100vw;
  background: linear-gradient(120deg, #0B0F1A 80%, #12141C 100%);
  padding: 0 0 5rem 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.testimonials-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2.2rem;
  letter-spacing: -0.5px;
  text-shadow: 0 0 12px #00E3FF22;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.testimonials-icon {
  font-size: 1.5em;
  filter: drop-shadow(0 0 8px #00E3FF88);
}
.testimonials-carousel {
  width: 100%;
  max-width: 700px;
  min-height: 220px;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}
.testimonial {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border-radius: 1.5rem;
  box-shadow: 0 0 24px #00E3FF22, 0 0 48px #7F5FFF11;
  border: 1.5px solid #00E3FF33;
  padding: 2.2rem 2rem 2rem 2rem;
  width: 100%;
  min-height: 220px;
  position: absolute;
  left: 0; top: 0;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
}
.testimonial.active {
  display: flex;
  opacity: 1;
  position: relative;
  z-index: 2;
}
.testimonial-quote {
  font-size: 1.18rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.2em;
  text-align: center;
  line-height: 1.5;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 1.1em;
  flex-wrap: wrap;
  justify-content: center;
}
.testimonial-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 0.7em;
  background: #fff;
  box-shadow: 0 0 8px #00E3FF33;
  padding: 0.2em;
}
.testimonial-client {
  color: var(--accent2);
  font-weight: 600;
  font-size: 1.01em;
}
.testimonial-rating {
  background: #fff;
  color: #12141C;
  border-radius: 1em;
  padding: 0.18em 0.9em;
  font-weight: 700;
  font-size: 0.98em;
  margin-left: 0.5em;
  box-shadow: 0 0 8px #00E3FF33;
}
.testimonial-rating.clutch { color: #00E3FF; }
.testimonial-rating.google { color: #7F5FFF; }
.testimonial-awards {
  display: flex;
  gap: 0.5em;
  margin-left: 0.5em;
  flex-wrap: wrap;
}
.award {
  background: #23263a;
  color: #fff;
  border-radius: 1em;
  padding: 0.18em 0.9em;
  font-weight: 700;
  font-size: 0.98em;
  box-shadow: 0 0 8px #00E3FF33;
}
.testimonials-controls {
  display: flex;
  gap: 1.2em;
  margin-top: 1.5em;
  justify-content: center;
}
.testimonial-prev, .testimonial-next {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  font-size: 1.5em;
  cursor: pointer;
  box-shadow: 0 0 12px #00E3FF55;
  transition: background 0.22s, box-shadow 0.22s;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-prev:hover, .testimonial-next:hover {
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  box-shadow: 0 0 32px #00E3FF99, 0 0 48px #7F5FFF55;
}
@media (max-width: 700px) {
  .testimonials-container {
    padding: 1.5rem 0.5rem 0 0.5rem;
  }
  .testimonials-title {
    font-size: 1.1rem;
  }
  .testimonials-carousel {
    min-height: 180px;
    max-width: 98vw;
  }
  .testimonial {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
    min-height: 180px;
  }
  .testimonial-logo {
    width: 36px;
    height: 36px;
  }
}
.cta-section {
  width: 100vw;
  min-height: 340px;
  background: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 5rem 0;
  z-index: 2;
}
.cta-bg-glow {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  height: 340px;
  background: radial-gradient(ellipse at center, #00E3FF33 0%, #7F5FFF11 80%, transparent 100%);
  filter: blur(32px);
  z-index: 1;
  pointer-events: none;
}
.cta-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 3.5rem 2rem 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--glass);
  border-radius: 2rem;
  box-shadow: 0 0 48px #00E3FF33, 0 0 96px #7F5FFF22;
  border: 1.5px solid #00E3FF33;
}
.cta-headline {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
  text-align: center;
  text-shadow: 0 0 18px #00E3FF22;
}
.cta-subheadline {
  font-size: 1.18rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 2.2rem;
  text-align: center;
}
.cta-btn {
  padding: 1em 3em;
  font-size: 1.18rem;
  font-weight: 700;
  border: none;
  border-radius: 2em;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 16px #00E3FF55;
  transition: transform 0.13s, box-shadow 0.13s, background 0.3s;
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 32px #00E3FF99, 0 0 48px #7F5FFF55;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
}
@media (max-width: 700px) {
  .cta-container {
    padding: 1.5rem 0.7rem 1.5rem 0.7rem;
    border-radius: 1rem;
    max-width: 98vw;
  }
  .cta-headline {
    font-size: 1.3rem;
  }
  .cta-subheadline {
    font-size: 1rem;
  }
  .cta-bg-glow {
    height: 180px;
    width: 98vw;
  }
}
.contact-section {
  width: 100vw;
  background: linear-gradient(120deg, #0B0F1A 90%, #12141C 100%);
  padding: 0 0 5rem 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.contact-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 0 2rem;
  display: flex;
  gap: 4vw;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact-form-side {
  flex: 1 1 340px;
  min-width: 320px;
  max-width: 480px;
  background: var(--glass);
  border-radius: 1.5rem;
  box-shadow: 0 0 24px #00E3FF22;
  border: 1.5px solid #00E3FF33;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.contact-icon {
  font-size: 1.3em;
  filter: drop-shadow(0 0 8px #00E3FF88);
}
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-row {
  display: flex;
  gap: 1rem;
  width: 100%;
}
.contact-form input,
.contact-form textarea {
  flex: 1 1 0;
  font-size: 1.05rem;
  border-radius: 0.7em;
  border: 1.5px solid #23263a;
  background: #181b24;
  color: #fff;
  padding: 0.9em 1em;
  margin-bottom: 0;
  outline: none;
  transition: border 0.18s;
  box-shadow: 0 0 8px #00E3FF11;
  resize: none;
  width: 100%;
  box-sizing: border-box;
}
.contact-form input[type="email"] {
  min-width: 0;
  max-width: 100%;
}
.contact-form textarea {
  min-height: 90px;
  max-height: 200px;
}
.contact-btn {
  padding: 0.9em 2.2em;
  font-size: 1.08rem;
  font-weight: 600;
  border: none;
  border-radius: 2em;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 16px #00E3FF55;
  transition: transform 0.13s, box-shadow 0.13s, background 0.3s;
  outline: none;
  margin-top: 0.7em;
}
.contact-btn:hover, .contact-btn:focus {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 32px #00E3FF99, 0 0 48px #7F5FFF55;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
}
.contact-info-side {
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: flex-start;
}
.contact-info-block {
  margin-bottom: 0.7em;
}
.contact-info-label {
  color: var(--accent2);
  font-weight: 600;
  font-size: 1.01em;
  margin-bottom: 0.2em;
}
.contact-info-value {
  color: #fff;
  font-size: 1.08em;
  margin-bottom: 0.1em;
}
.contact-info-value a {
  color: var(--accent);
  text-decoration: none;
}
.contact-socials {
  display: flex;
  gap: 1em;
  margin-top: 0.2em;
}
.contact-social-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.08em;
  transition: color 0.18s;
}
.contact-social-link:hover {
  color: var(--accent2);
}
.contact-map {
  width: 100%;
  margin-top: 1.2em;
  border-radius: 1em;
  overflow: hidden;
  box-shadow: 0 0 16px #00E3FF22;
  border: 1.5px solid #23263a;
  min-height: 120px;
  height: 180px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0.5rem 0 0.5rem;
  }
  .contact-form-side, .contact-info-side {
    max-width: 98vw;
    width: 100%;
    padding: 1.5rem 1rem;
    border-radius: 1rem;
  }
  .contact-map {
    min-height: 80px;
    height: 120px;
  }
}
.footer-section {
  width: 100vw;
  background: #0B0F1A url('https://www.transparenttextures.com/patterns/diamond-upholstery.png');
  background-blend-mode: overlay;
  border-top: 2px solid #23263a;
  position: relative;
  z-index: 2;
  color: #B1B1B1;
  font-size: 1.01rem;
  padding-top: 3rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.footer-bg-lines {
  position: absolute;
  left: 0; top: 0; width: 100vw; height: 100%;
  pointer-events: none;
  z-index: 1;
  background: repeating-linear-gradient(135deg, #00E3FF22 0 2px, transparent 2px 40px), repeating-linear-gradient(-135deg, #7F5FFF22 0 2px, transparent 2px 40px);
  opacity: 0.5;
}
.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-cols {
  display: flex;
  gap: 3vw;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2.2rem;
}
.footer-col {
  min-width: 120px;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.footer-col-title {
  color: var(--accent2);
  font-weight: 700;
  margin-bottom: 0.7em;
  font-size: 1.09em;
  letter-spacing: 0.01em;
}
.footer-col a {
  color: #B1B1B1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s;
  font-size: 1em;
}
.footer-col a:hover {
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid #23263a;
  padding-top: 1.2em;
  color: #888;
  font-size: 0.98em;
  text-align: center;
}
@media (max-width: 900px) {
  .footer-container {
    padding: 0 0.5rem;
  }
  .footer-cols {
    gap: 1.5vw;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .footer-col {
    min-width: 100px;
    font-size: 0.98em;
  }
}
@media (max-width: 700px) {
  .footer-cols {
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .footer-section {
    padding-top: 1.5rem;
    padding-bottom: 0.7rem;
  }
}
