/* ===== Root Variables & Base ===== */
:root {
  --color-bg: #101223;
  --color-bg-alt: #181c2f;
  --color-primary: #00fff7;
  --color-secondary: #6f00ff;
  --color-accent: #6f0;
  --color-text: #eaf6fb;
  --color-muted: #8a9bb7;
  --shadow-glow: 0 0 16px var(--color-primary), 0 0 32px var(--color-secondary);
  --font-main: 'Poppins', Arial, sans-serif;
}

html, body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

/* ===== Navbar Styles ===== */
.navbar-section {
  position: sticky;
  top: 0;
  width: 100%;
  background: #16192a;
  box-shadow: 0 2px 24px #00fff722;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0;
  min-height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding-left: 2.2rem;
  font-family: 'Poppins', sans-serif;
}

.nav-logo-svg {
  width: 44px;
  height: 44px;
  display: block;
  animation: nav-logo-glow 2.5s infinite alternate;
}
@keyframes nav-logo-glow {
  0% { filter: drop-shadow(0 0 0 #00fff7);}
  100% { filter: drop-shadow(0 0 16px #00fff7);}
}
.nav-logo-hex {
  animation: nav-hex-rotate 12s linear infinite;
  transform-origin: 22px 22px;
}
@keyframes nav-hex-rotate {
  100% { transform: rotate(360deg);}
}
.nav-logo-a {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: nav-a-draw 1.2s 0.5s forwards;
}
@keyframes nav-a-draw {
  to { stroke-dashoffset: 0;}
}
.nav-logo-spark line {
  stroke-dasharray: 8;
  stroke-dashoffset: 8;
  animation: nav-spark-draw 1.2s 1s forwards;
}
@keyframes nav-spark-draw {
  to { stroke-dashoffset: 0;}
}

.nav-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00fff7;
  letter-spacing: 1.5px;
  text-shadow: 0 0 12px #00fff7, 0 0 24px #6f00ff;
  display: flex;
  align-items: center;
  min-width: 0;
}
.nav-brand-typewriter {
  display: inline-block;
  overflow: hidden;
  border-right: 2px solid #00fff7;
  white-space: nowrap;
  animation: nav-typewriter 2.2s steps(22) 0.2s 1 normal both, nav-blink 0.8s steps(1) infinite;
  max-width: 0;
}
@keyframes nav-typewriter {
  from { max-width: 0; }
  to { max-width: 22ch; }
}
@keyframes nav-blink {
  0%, 100% { border-color: #00fff7; }
  50% { border-color: transparent; }
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0 2.2rem 0 0;
}
.nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  color: #eaf6fb;
  position: relative;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
}

.hero-content {
  text-align: center;
  z-index: 2;
  margin-top: 2rem;
}

.hero-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--color-text);
  letter-spacing: 1px;
}

.glow-text {
  color: var(--color-primary);
  text-shadow: 0 0 8px var(--color-primary), 0 0 16px var(--color-secondary);
  animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
  0% { text-shadow: 0 0 8px var(--color-primary), 0 0 16px var(--color-secondary); }
  100% { text-shadow: 0 0 18px var(--color-secondary), 0 0 32px var(--color-primary); }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
  font-weight: 400;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  color: #181c2f;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.8rem 2.2rem;
  border-radius: 32px;
  box-shadow: 0 0 12px var(--color-primary), 0 0 24px var(--color-secondary);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
}

.cta-btn:hover,
.cta-btn:focus {
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
  color: #fff;
  box-shadow: 0 0 24px var(--color-secondary), 0 0 32px var(--color-primary);
}

.hero-svg {
  margin-bottom: 2rem;
  z-index: 1;
}

.hero-illustration {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  /* Animate floating icons */
}

.hero-illustration .float1,
.hero-illustration .float2,
.hero-illustration .float3,
.hero-illustration .float4 {
  animation: floatAnim 3s ease-in-out infinite alternate;
}

.hero-illustration .float2 { animation-delay: 0.8s; }
.hero-illustration .float3 { animation-delay: 1.2s; }
.hero-illustration .float4 { animation-delay: 1.7s; }

@keyframes floatAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-18px); }
}

/* ===== Services Section Styles ===== */
.services-section {
  background: var(--color-bg-alt);
  padding: 4rem 1rem 4rem 1rem;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  text-shadow: 0 0 8px var(--color-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.service-card {
  background: linear-gradient(120deg, #181c2f 80%, #101223 100%);
  border-radius: 18px;
  box-shadow: 0 0 16px #0006, 0 0 24px var(--color-primary)22;
  padding: 2.2rem 1.2rem 1.5rem 1.2rem;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  overflow: hidden;
  border: 1.5px solid transparent;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 32px var(--color-primary), 0 0 48px var(--color-secondary);
  border: 1.5px solid var(--color-primary);
}

.service-icon {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
}

.service-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.service-desc {
  color: var(--color-muted);
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}

/* ===== Service SVG Animations ===== */
.cloud-anim svg .cloud-pulse {
  animation: cloudPulse 2.2s infinite alternate;
}
@keyframes cloudPulse {
  0% { opacity: 0.7; transform: scale(1);}
  100% { opacity: 1; transform: scale(1.15);}
}

.float-anim svg {
  animation: floatService 2.5s infinite alternate;
}
@keyframes floatService {
  0% { transform: translateY(0);}
  100% { transform: translateY(-10px);}
}

.shield-anim svg ellipse,
.shield-anim svg rect {
  animation: shieldGlow 2.2s infinite alternate;
}
@keyframes shieldGlow {
  0% { filter: drop-shadow(0 0 4px var(--color-primary)); }
  100% { filter: drop-shadow(0 0 12px var(--color-secondary)); }
}

.draw-anim svg .draw-brackets {
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
  animation: drawBrackets 1.5s forwards;
}
@keyframes drawBrackets {
  to { stroke-dashoffset: 0; }
}

.pulse-anim svg {
  animation: pulseGlow 1.8s infinite alternate;
}
@keyframes pulseGlow {
  0% { filter: drop-shadow(0 0 6px var(--color-primary)); }
  100% { filter: drop-shadow(0 0 18px var(--color-secondary)); }
}

.gear-anim svg .gear-group {
  transform-origin: 27px 27px;
  animation: gearSpin 2.5s linear infinite;
}
@keyframes gearSpin {
  100% { transform: rotate(360deg);}
}

/* ===== Why Choose Us Section Styles ===== */
.why-section {
  background: #16192a;
  padding: 64px 0 48px 0;
  color: #fff;
}
.why-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.why-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
  color: #00fff7;
  text-shadow: 0 0 12px #00fff744, 0 2px 24px #6f00ff33;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.why-card {
  background: #181c2f;
  border-radius: 18px;
  box-shadow: 0 2px 24px #00fff722, 0 0 0 2px #23264a;
  padding: 36px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  box-shadow: 0 4px 32px #00fff799, 0 0 0 2px #6f00ff;
}
.why-icon {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: #00fff7;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
  text-align: center;
  text-shadow: 0 0 8px #00fff744;
}
.why-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #e0e6f7;
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

/* ===== Why Choose Us SVG Animations ===== */

/* Glow for icons */
.expertise-glow svg,
.support-glow svg,
.security-draw svg,
.scalable-float svg {
  filter: drop-shadow(0 0 10px #00fff7aa);
}

/* Pulse animation for expertise icon */
.expertise-pulse rect,
.expertise-pulse circle {
  animation: why-pulse 1.6s infinite alternate;
}
@keyframes why-pulse {
  0% { filter: drop-shadow(0 0 0 #00fff7); }
  100% { filter: drop-shadow(0 0 12px #00fff7cc); }
}

/* Float animation for scalable icon */
.scalable-float svg {
  animation: why-float 2.8s ease-in-out infinite alternate;
}
@keyframes why-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
.scalable-pulse rect,
.scalable-pulse polygon {
  animation: why-pulse 1.8s infinite alternate;
}

/* Pulse for support icon */
.support-pulse svg {
  animation: why-pulse 1.7s infinite alternate;
}
.support-glow ellipse,
.support-glow rect {
  animation: why-glow 2.2s infinite alternate;
}
@keyframes why-glow {
  0% { filter: drop-shadow(0 0 0 #6f00ff); }
  100% { filter: drop-shadow(0 0 10px #6f00ffcc); }
}

/* Draw animation for security shield */
.security-shield {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: why-draw 1.8s forwards;
}
@keyframes why-draw {
  to { stroke-dashoffset: 0; }
}
.security-pulse rect,
.security-pulse ellipse {
  animation: why-pulse 1.5s infinite alternate;
}

/* Responsive grid */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .why-section {
    padding: 44px 0 28px 0;
  }
  .why-card {
    padding: 28px 16px 20px 16px;
  }
  .why-heading {
    font-size: 1.5rem;
  }
}

/* ===== Portfolio Section Styles ===== */
.portfolio-section {
  background: #141627;
  padding: 64px 0 48px 0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.portfolio-heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #00fff7 0%, #6f00ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.portfolio-item {
  background: #181c2f;
  border-radius: 18px;
  box-shadow: 0 0 0 2px #23264a, 0 8px 32px 0 #000a  ;
  padding: 32px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, border 0.3s;
  border: 2px solid transparent;
  cursor: pointer;
}

.portfolio-item:hover {
  border: 2px solid #00fff7;
  box-shadow: 0 0 16px 2px #00fff7cc, 0 8px 32px 0 #000a;
}

.portfolio-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
  color: #fff;
  letter-spacing: 0.5px;
}

.portfolio-hover {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, #181c2f 90%, #00fff7 100%);
  color: #fff;
  font-size: 1rem;
  padding: 20px 16px 16px 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 0.3s, transform 0.3s;
  border-radius: 0 0 18px 18px;
  text-align: center;
  z-index: 2;
}

.portfolio-item:hover .portfolio-hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ===== Portfolio SVG Animations ===== */
.portfolio-pulse {
  animation: portfolio-pulse 1.2s infinite alternate;
}
@keyframes portfolio-pulse {
  0% { opacity: 0.7; }
  100% { opacity: 1; filter: drop-shadow(0 0 8px #00fff7); }
}

.portfolio-glow {
  filter: drop-shadow(0 0 8px #00fff7) drop-shadow(0 0 2px #6f00ff);
  animation: portfolio-glow 1.5s infinite alternate;
}
@keyframes portfolio-glow {
  0% { filter: drop-shadow(0 0 4px #00fff7); }
  100% { filter: drop-shadow(0 0 16px #6f00ff); }
}

.portfolio-draw {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: portfolio-draw 1.2s forwards;
}
.portfolio-item:hover .portfolio-draw {
  animation: portfolio-draw-hover 0.7s forwards;
}
@keyframes portfolio-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes portfolio-draw-hover {
  from { stroke-dashoffset: 60; }
  to { stroke-dashoffset: 0; }
}

/* ===== End Portfolio Section Styles ===== */

/* ===== Team Section Styles ===== */
.team-section {
  background: #16192a;
  padding: 64px 0 56px 0;
}

.team-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.team-heading {
  color: #00fff7;
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-shadow: 0 0 12px #00fff788, 0 0 2px #6f00ff44;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

@media (max-width: 700px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.team-card {
  background: #181c2f;
  border: 2.5px solid #00fff7;
  border-radius: 18px;
  box-shadow: 0 0 0 0 #00fff7;
  padding: 32px 20px 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.team-card:hover {
  border-color: #6f00ff;
  box-shadow: 0 0 24px 2px #00fff7cc, 0 0 32px 6px #6f00ff55;
  z-index: 2;
}

.team-avatar {
  margin-bottom: 22px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Avatar Animations ===== */

/* Monitor Glow (Aditya) */
.monitor-glow svg .monitor-pulse {
  animation: team-glow 1.6s infinite alternate;
}
@keyframes team-glow {
  0% { filter: drop-shadow(0 0 0px #00fff7); opacity: 0.7; }
  100% { filter: drop-shadow(0 0 16px #00fff7); opacity: 1; }
}

/* Paintbrush Float & Glow (Priya) */
.paintbrush-float svg .brush-glow {
  animation: team-float 2.2s ease-in-out infinite alternate;
}
@keyframes team-float {
  0% { transform: translateY(0); filter: drop-shadow(0 0 0 #6f00ff); }
  100% { transform: translateY(-8px); filter: drop-shadow(0 0 12px #6f00ff); }
}

/* Magnifying Glass Pulse (Rohan) */
.magnify-pulse svg .magnify-glow {
  animation: team-pulse 1.3s infinite alternate;
}
@keyframes team-pulse {
  0% { filter: drop-shadow(0 0 0 #00fff7); opacity: 0.7; }
  100% { filter: drop-shadow(0 0 14px #00fff7); opacity: 1; }
}

/* Cloud Float & Pulse (Sneha) */
.cloud-float svg .cloud-pulse {
  animation: team-cloud-float 2s ease-in-out infinite alternate;
}
@keyframes team-cloud-float {
  0% { transform: translateY(0); filter: drop-shadow(0 0 0 #00fff7); }
  100% { transform: translateY(-7px); filter: drop-shadow(0 0 10px #00fff7); }
}

/* ===== Team Card Text ===== */
.team-name {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
  text-align: center;
}

.team-role {
  color: #00fff7;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.2px;
  text-align: center;
  opacity: 0.88;
}

/* ===== Team Card Neon Hover Effect ===== */
.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  transition: box-shadow 0.3s;
  z-index: 1;
}

.team-card:hover::before {
  box-shadow: 0 0 32px 8px #00fff755, 0 0 48px 12px #6f00ff33;
}

/* ===== Unique Contact Us Section Styles ===== */
.contact-unique-section {
  background: #15182a;
  padding: 64px 0 56px 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.contact-unique-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: stretch;
  justify-content: center;
  padding: 0 24px;
}

.contact-left-svg {
  flex: 1 1 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 0 0 0;
}

.contact-left-svg svg {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 32px #00fff7aa);
}

/* SVG Animations */
.contact-pin-pulse path,
.contact-pin-pulse circle {
  animation: contact-pin-glow 2.2s infinite alternate;
}
@keyframes contact-pin-glow {
  0% { filter: drop-shadow(0 0 0 #00fff7); }
  100% { filter: drop-shadow(0 0 18px #00fff7); }
}
.contact-bubble1, .contact-bubble2, .contact-bubble3, .contact-chat-float {
  opacity: 0.85;
}
.contact-bubble1 { animation: contact-bubble-float 3.2s 0.2s infinite alternate; }
.contact-bubble2 { animation: contact-bubble-float 2.7s 0.7s infinite alternate; }
.contact-bubble3 { animation: contact-bubble-float 2.9s 1.1s infinite alternate; }
.contact-chat-float { animation: contact-bubble-float-up 3.5s 0.5s infinite alternate; }
@keyframes contact-bubble-float {
  0% { transform: translateY(0);}
  100% { transform: translateY(-18px);}
}
@keyframes contact-bubble-float-up {
  0% { transform: translateY(0);}
  100% { transform: translateY(-28px);}
}

.contact-right-content {
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 0 0 0 0;
}

.contact-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00fff7;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-shadow: 0 0 16px #00fff7, 0 0 32px #6f00ff;
}

.contact-subheading {
  font-size: 1.15rem;
  color: #b8b8ff;
  margin-bottom: 32px;
  font-weight: 400;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.contact-info-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #181c2f;
  border-radius: 12px;
  padding: 16px 22px;
  box-shadow: 0 0 0 0 #00fff7;
  border-left: 4px solid #00fff7;
  font-size: 1.08rem;
  color: #fff;
  opacity: 0;
  transform: translateX(-40px);
  animation: contact-info-slide-in 1s forwards;
  animation-delay: 0.2s;
  position: relative;
  overflow: hidden;
}
.contact-info-box:nth-child(2) { animation-delay: 0.4s; border-left-color: #6f00ff;}
.contact-info-box:nth-child(3) { animation-delay: 0.6s; border-left-color: #6f0;}
.contact-info-box:nth-child(4) { animation-delay: 0.8s; border-left-color: #00fff7;}

@keyframes contact-info-slide-in {
  to {
    opacity: 1;
    transform: translateX(0);
    box-shadow: 0 0 16px #00fff7, 0 0 32px #6f00ff33;
  }
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px #00fff7);
}

.contact-info-text {
  font-size: 1.08rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.2px;
  word-break: break-all;
}

/* CTA Buttons */
.contact-cta-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.contact-cta-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #00fff7 0%, #6f00ff 100%);
  color: #181c2f;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 0 16px #00fff7, 0 0 32px #6f00ff;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  outline: none;
  position: relative;
  z-index: 1;
}
.contact-cta-button svg {
  flex-shrink: 0;
  margin-right: 4px;
  filter: drop-shadow(0 0 6px #00fff7);
}
.contact-cta-button:hover,
.contact-cta-button:focus {
  background: linear-gradient(90deg, #6f00ff 0%, #00fff7 100%);
  color: #fff;
  box-shadow: 0 0 32px #00fff7, 0 0 48px #6f00ff;
  transform: translateY(-2px) scale(1.04);
}

/* Responsive Layout */
@media (max-width: 1000px) {
  .contact-unique-container {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
  .contact-left-svg,
  .contact-right-content {
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  .contact-right-content {
    align-items: flex-start;
    padding: 0;
  }
}

@media (max-width: 700px) {
  .contact-unique-section {
    padding: 36px 0 28px 0;
  }
  .contact-heading {
    font-size: 1.3rem;
  }
  .contact-left-svg svg {
    max-width: 220px;
  }
  .contact-info-box {
    font-size: 1rem;
    padding: 12px 12px;
  }
  .contact-cta-button {
    font-size: 1rem;
    padding: 12px 18px;
  }
}

/* ===== Responsive Styles ===== */
@media (max-width: 900px) {
  .navbar-container {
    padding: 0.5rem 1rem;
  }
  .services-container {
    padding: 0 0.5rem;
  }
}

@media (max-width: 700px) {
  .navbar-container {
    flex-direction: row;
    gap: 0.5rem;
  }
  .nav-links {
    position: absolute;
    top: 60px;
    right: 1rem;
    background: var(--color-bg-alt);
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 0 24px #0008;
    display: none;
    min-width: 180px;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .services-heading {
    font-size: 1.3rem;
  }
  .service-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .hero-svg {
    margin-bottom: 1rem;
  }
}

/* ===== Hero Section Styles ===== */
.hero-section {
  background: #101223;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 0;
  position: relative;
  z-index: 2;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  gap: 0;
  padding: 48px 24px 32px 24px;
}
.hero-left {
  flex: 1 1 340px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}
.hero-heading {
  font-size: 2.7rem;
  font-weight: 700;
  color: #00fff7;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 18px;
  letter-spacing: 1.2px;
  text-shadow: 0 0 16px #00fff7, 0 0 32px #6f00ff;
  min-height: 60px;
  line-height: 1.1;
}
.hero-typewriter {
  display: inline-block;
  border-right: 2.5px solid #00fff7;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: hero-typewriter 2.7s steps(32) 0.2s forwards, hero-glow-pulse 2.5s 2.7s infinite alternate;
}
@keyframes hero-typewriter {
  from { width: 0; }
  to { width: 420px; }
}
@keyframes hero-glow-pulse {
  0% { text-shadow: 0 0 16px #00fff7, 0 0 32px #6f00ff;}
  100% { text-shadow: 0 0 32px #6f00ff, 0 0 48px #00fff7;}
}
.hero-subheading {
  font-size: 1.25rem;
  color: #b8b8ff;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  margin-bottom: 38px;
  margin-top: 0;
  letter-spacing: 0.2px;
  text-shadow: 0 0 8px #00fff744;
  animation: hero-sub-glow 2.2s infinite alternate;
}
@keyframes hero-sub-glow {
  0% { text-shadow: 0 0 8px #00fff744;}
  100% { text-shadow: 0 0 18px #6f00ff88;}
}
.hero-cta {
  display: flex;
  gap: 18px;
  margin-top: 0;
}
.hero-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #00fff7 0%, #6f00ff 100%);
  color: #181c2f;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 0 16px #00fff7, 0 0 32px #6f00ff;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  outline: none;
  position: relative;
  z-index: 1;
  text-decoration: none;
}
.hero-cta-btn svg {
  flex-shrink: 0;
  margin-right: 4px;
  filter: drop-shadow(0 0 6px #00fff7);
}
.hero-cta-btn:hover,
.hero-cta-btn:focus {
  background: linear-gradient(90deg, #6f00ff 0%, #00fff7 100%);
  color: #fff;
  box-shadow: 0 0 32px #00fff7, 0 0 48px #6f00ff;
  transform: translateY(-2px) scale(1.04);
}
.hero-cta-btn.alt {
  background: linear-gradient(90deg, #6f00ff 0%, #00fff7 100%);
  color: #fff;
}
.hero-cta-btn.alt:hover,
.hero-cta-btn.alt:focus {
  background: linear-gradient(90deg, #00fff7 0%, #6f00ff 100%);
  color: #181c2f;
}

/* ===== Hero SVG Orb Styles ===== */
.hero-right {
  flex: 1 1 340px;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hero-orb-svg {
  width: 340px;
  height: 340px;
  max-width: 90vw;
  max-height: 60vw;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 32px #00fff7aa);
}
.orb-ring {
  opacity: 0.85;
  filter: drop-shadow(0 0 18px #00fff7aa);
  transform-origin: 170px 170px;
}
.orb-ring1 { animation: orb-ring-rotate1 12s linear infinite; }
.orb-ring2 { animation: orb-ring-rotate2 18s linear infinite reverse; }
.orb-ring3 { animation: orb-ring-rotate3 9s linear infinite; }
@keyframes orb-ring-rotate1 { 100% { transform: rotate(360deg); } }
@keyframes orb-ring-rotate2 { 100% { transform: rotate(360deg); } }
@keyframes orb-ring-rotate3 { 100% { transform: rotate(360deg); } }

.orb-polygon {
  filter: drop-shadow(0 0 12px #00fff7);
  transform-origin: 170px 170px;
}
.orb-poly1 { animation: orb-poly1-orbit 7s linear infinite; }
.orb-poly2 { animation: orb-poly2-orbit 9s linear infinite reverse; }
.orb-poly3 { animation: orb-poly3-orbit 8s linear infinite; }
.orb-poly4 { animation: orb-poly4-orbit 10s linear infinite reverse; }
@keyframes orb-poly1-orbit { 100% { transform: rotate(360deg) translate(0,0); } }
@keyframes orb-poly2-orbit { 100% { transform: rotate(360deg) translate(0,0); } }
@keyframes orb-poly3-orbit { 100% { transform: rotate(360deg) translate(0,0); } }
@keyframes orb-poly4-orbit { 100% { transform: rotate(360deg) translate(0,0); } }

.orb-text-group {
  filter: drop-shadow(0 0 18px #00fff7cc);
  animation: orb-text-float 2.5s infinite alternate;
}
@keyframes orb-text-float {
  0% { opacity: 0.92; transform: scale(1);}
  100% { opacity: 1; transform: scale(1.06);}
}
.orb-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 0 12px #00fff7, 0 0 24px #6f00ff;
  animation: orb-text-glow 2.5s infinite alternate;
}
@keyframes orb-text-glow {
  0% { fill: #00fff7; text-shadow: 0 0 12px #00fff7;}
  100% { fill: #6f00ff; text-shadow: 0 0 24px #6f00ff;}
}
.orb-ripple {
  opacity: 0.7;
  stroke-dasharray: 320;
  stroke-dashoffset: 0;
}
.orb-ripple1 { animation: orb-ripple1-pulse 2.5s infinite alternate; }
.orb-ripple2 { animation: orb-ripple2-pulse 3.2s infinite alternate; }
@keyframes orb-ripple1-pulse {
  0% { stroke-width: 2; opacity: 0.7; stroke-dashoffset: 0;}
  100% { stroke-width: 6; opacity: 0.2; stroke-dashoffset: 80;}
}
@keyframes orb-ripple2-pulse {
  0% { stroke-width: 1.5; opacity: 0.5; stroke-dashoffset: 0;}
  100% { stroke-width: 4; opacity: 0.12; stroke-dashoffset: 120;}
}
.orb-particle {
  filter: drop-shadow(0 0 8px #00fff7);
  opacity: 0.7;
}
.orb-particle1 { animation: orb-particle-float1 3.2s infinite alternate; }
.orb-particle2 { animation: orb-particle-float2 2.7s 0.7s infinite alternate; }
.orb-particle3 { animation: orb-particle-float3 2.9s 1.1s infinite alternate; }
.orb-particle4 { animation: orb-particle-float4 2.5s 0.5s infinite alternate; }
.orb-particle5 { animation: orb-particle-float5 3.5s 1.3s infinite alternate; }
@keyframes orb-particle-float1 { 0% { transform: translateY(0);} 100% { transform: translateY(-18px);} }
@keyframes orb-particle-float2 { 0% { transform: translateY(0);} 100% { transform: translateY(-12px);} }
@keyframes orb-particle-float3 { 0% { transform: translateY(0);} 100% { transform: translateY(-22px);} }
@keyframes orb-particle-float4 { 0% { transform: translateY(0);} 100% { transform: translateY(-10px);} }
@keyframes orb-particle-float5 { 0% { transform: translateY(0);} 100% { transform: translateY(-16px);} }

/* Responsive Hero Layout */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    gap: 32px;
    padding: 36px 8vw 24px 8vw;
  }
  .hero-left, .hero-right {
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .hero-heading {
    font-size: 2rem;
    min-height: 44px;
    text-align: center;
  }
  .hero-typewriter {
    animation: hero-typewriter 2.7s steps(32) 0.2s forwards, hero-glow-pulse 2.5s 2.7s infinite alternate;
    width: 0;
    max-width: 90vw;
  }
  @keyframes hero-typewriter {
    from { width: 0; }
    to { width: 90vw; }
  }
  .hero-subheading {
    font-size: 1.05rem;
    text-align: center;
  }
  .hero-cta {
    justify-content: center;
    width: 100%;
  }
  .hero-orb-svg {
    width: 220px;
    height: 220px;
    max-width: 90vw;
    max-height: 60vw;
  }
}

/* ===== End Hero Section Styles ===== */

/* ===== Testimonials Section Styles ===== */
.testimonials-section {
  position: relative;
  background: #101223;
  overflow: hidden;
  padding: 0;
  min-height: 520px;
  z-index: 1;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 420px;
  min-height: 320px;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.testimonials-grid-svg {
  width: 100vw;
  height: 420px;
  min-height: 320px;
  display: block;
  animation: testimonials-grid-move 18s linear infinite;
}

@keyframes testimonials-grid-move {
  0% { transform: translateY(0) scale(1.01);}
  100% { transform: translateY(-40px) scale(1.01);}
}

.testimonials-container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 16px 64px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00fff7;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 1px;
  text-shadow: 0 0 16px #00fff7, 0 0 32px #6f00ff;
  font-family: 'Poppins', sans-serif;
}

.testimonial-timeline {
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
  position: relative;
}

.testimonial-block {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  position: relative;
  min-height: 110px;
}

.testimonial-avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #181c2f;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 #00fff7;
  transition: box-shadow 0.3s;
  z-index: 2;
  margin-top: 0.5rem;
}

.avatar-glow1 svg { animation: testimonial-avatar-glow1 2.2s infinite alternate; }
.avatar-glow2 svg { animation: testimonial-avatar-glow2 2.2s 0.4s infinite alternate; }
.avatar-glow3 svg { animation: testimonial-avatar-glow3 2.2s 0.8s infinite alternate; }
.avatar-glow4 svg { animation: testimonial-avatar-glow4 2.2s 1.2s infinite alternate; }

@keyframes testimonial-avatar-glow1 {
  0% { filter: drop-shadow(0 0 0 #00fff7);}
  100% { filter: drop-shadow(0 0 16px #00fff7);}
}
@keyframes testimonial-avatar-glow2 {
  0% { filter: drop-shadow(0 0 0 #6f00ff);}
  100% { filter: drop-shadow(0 0 16px #6f00ff);}
}
@keyframes testimonial-avatar-glow3 {
  0% { filter: drop-shadow(0 0 0 #6f0);}
  100% { filter: drop-shadow(0 0 16px #6f0);}
}
@keyframes testimonial-avatar-glow4 {
  0% { filter: drop-shadow(0 0 0 #00fff7);}
  100% { filter: drop-shadow(0 0 16px #00fff7);}
}

.testimonial-quote {
  background: linear-gradient(90deg, #181c2f 80%, #23264a 100%);
  border-radius: 14px;
  box-shadow: 0 0 16px #00fff733, 0 0 32px #6f00ff22;
  padding: 22px 28px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  font-weight: 400;
  position: relative;
  min-width: 0;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(40px);
  animation: testimonial-fade-in 1.1s forwards;
}

.testimonial-block:nth-child(1) .testimonial-quote { animation-delay: 0.1s; }
.testimonial-block:nth-child(2) .testimonial-quote { animation-delay: 0.4s; }
.testimonial-block:nth-child(3) .testimonial-quote { animation-delay: 0.7s; }
.testimonial-block:nth-child(4) .testimonial-quote { animation-delay: 1s; }

@keyframes testimonial-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-name {
  color: #00fff7;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  text-shadow: 0 0 8px #00fff7;
}

.testimonial-text {
  color: #e0e6f7;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 0 8px #6f00ff22;
}

.testimonial-connector {
  position: absolute;
  left: 27px;
  top: 56px;
  width: 2px;
  height: calc(100% - 56px);
  background: linear-gradient(180deg, #00fff7 0%, #6f00ff 100%);
  box-shadow: 0 0 8px #00fff7, 0 0 16px #6f00ff;
  z-index: 1;
  border-radius: 2px;
  opacity: 0.7;
}

.testimonial-block:last-child .testimonial-connector {
  display: none;
}

/* Responsive Styles */
@media (max-width: 700px) {
  .testimonials-container {
    padding: 48px 4vw 32px 4vw;
  }
  .testimonials-heading {
    font-size: 1.3rem;
    margin-bottom: 28px;
  }
  .testimonial-timeline {
    gap: 36px;
  }
  .testimonial-quote {
    padding: 16px 12px;
    font-size: 0.98rem;
  }
  .testimonial-avatar {
    width: 44px;
    height: 44px;
  }
  .testimonial-connector {
    left: 21px;
  }
}

/* ===== End Testimonials Section Styles ===== */

/* ===== Footer Section Styles ===== */
.footer-section {
  background: #101223;
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-top: 0;
  width: 100%;
  z-index: 2;
}

.footer-bg {
  position: absolute;
  left: 0; right: 0; top: 0;
  width: 100vw;
  height: 100px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.footer-bg-svg {
  width: 100vw;
  height: 100px;
  display: block;
  animation: footer-bg-move 18s linear infinite;
}

@keyframes footer-bg-move {
  0% { transform: translateX(0);}
  100% { transform: translateX(-80px);}
}

.footer-dot1 { animation: footer-dot-float 3.5s 0.2s infinite alternate; }
.footer-dot2 { animation: footer-dot-float 2.8s 0.7s infinite alternate; }
.footer-dot3 { animation: footer-dot-float 3.2s 1.1s infinite alternate; }
@keyframes footer-dot-float {
  0% { transform: translateY(0);}
  100% { transform: translateY(-18px);}
}
.footer-line1, .footer-line2 {
  animation: footer-line-glow 2.5s infinite alternate;
}
@keyframes footer-line-glow {
  0% { filter: drop-shadow(0 0 0 #00fff7);}
  100% { filter: drop-shadow(0 0 12px #6f00ff);}
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  margin-bottom: 16px;
  flex-direction: column;
}

.footer-logo-svg {
  width: 54px;
  height: 54px;
  display: block;
  filter: drop-shadow(0 0 12px #00fff7);
  animation: footer-logo-glow 2.5s infinite alternate, footer-logo-rotate 12s linear infinite;
}
@keyframes footer-logo-glow {
  0% { filter: drop-shadow(0 0 8px #00fff7);}
  100% { filter: drop-shadow(0 0 24px #6f00ff);}
}
@keyframes footer-logo-rotate {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}
.footer-logo-hex, .footer-logo-a {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: footer-logo-draw 1.5s forwards;
}
@keyframes footer-logo-draw {
  to { stroke-dashoffset: 0; }
}
.footer-logo-spark line {
  stroke-dasharray: 8;
  stroke-dashoffset: 8;
  animation: footer-logo-spark-draw 1.2s forwards;
  animation-delay: 0.7s;
}
@keyframes footer-logo-spark-draw {
  to { stroke-dashoffset: 0; }
}
.footer-brand-name {
  color: #00fff7;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  font-family: 'Poppins', sans-serif;
  text-shadow: 0 0 8px #00fff7, 0 0 16px #6f00ff;
  margin-top: 4px;
}

.footer-tagline {
  margin: 0 0 24px 0;
  font-size: 1.1rem;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  min-height: 32px;
}
.footer-tagline-type {
  display: inline-block;
  color: #00fff7;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-shadow: 0 0 8px #00fff7, 0 0 16px #6f00ff;
  border-right: 2px solid #00fff7;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: footer-typewriter 3.5s steps(32) 0.7s forwards, footer-tagline-glow 2.5s 3.5s infinite alternate;
}
@keyframes footer-typewriter {
  from { width: 0; }
  to { width: 320px; }
}
@keyframes footer-tagline-glow {
  0% { text-shadow: 0 0 8px #00fff7, 0 0 16px #6f00ff;}
  100% { text-shadow: 0 0 24px #6f00ff, 0 0 32px #00fff7;}
}

.footer-social {
  display: flex;
  gap: 22px;
  margin-bottom: 18px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #181c2f;
  width: 44px;
  height: 44px;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 0 0 0 #00fff7;
  outline: none;
  border: none;
}
.footer-social-link svg {
  width: 26px;
  height: 26px;
  transition: filter 0.2s, transform 0.2s;
}
.footer-social-link:hover,
.footer-social-link:focus {
  box-shadow: 0 0 16px #00fff7, 0 0 32px #6f00ff;
  transform: scale(1.13);
}
.footer-social-link:hover svg,
.footer-social-link:focus svg {
  filter: drop-shadow(0 0 8px #00fff7);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
  margin-top: 8px;
  font-family: 'Poppins', sans-serif;
}
.footer-link {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 0 18px;
  position: relative;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-link:hover,
.footer-link:focus {
  color: #00fff7;
  text-shadow: 0 0 8px #00fff7;
}
.footer-link-sep {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #00fff7 0%, #6f00ff 100%);
  border-radius: 2px;
  margin: 0 0;
  vertical-align: middle;
}

.footer-copy {
  width: 100%;
  text-align: center;
  color: #b8b8ff;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0;
  margin-top: 12px;
  position: relative;
}
.footer-glow-bar {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00fff7 0%, #6f00ff 100%);
  box-shadow: 0 0 24px #00fff7, 0 0 32px #6f00ff;
  border-radius: 2px;
  margin-bottom: 12px;
  opacity: 0.85;
}

/* Responsive Footer */
@media (max-width: 700px) {
  .footer-content {
    padding: 0 4vw;
  }
  .footer-logo {
    margin-top: 24px;
  }
  .footer-tagline-type {
    font-size: 1rem;
    animation: footer-typewriter 3.5s steps(32) 0.7s forwards, footer-tagline-glow 2.5s 3.5s infinite alternate;
    width: 0;
    max-width: 90vw;
  }
  @keyframes footer-typewriter {
    from { width: 0; }
    to { width: 90vw; }
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 0;
    font-size: 0.98rem;
  }
  .footer-link {
    padding: 0 10px;
    font-size: 0.98rem;
  }
  .footer-link-sep {
    width: 18px;
  }
  .footer-social {
    gap: 12px;
  }
  .footer-social-link {
    width: 36px;
    height: 36px;
  }
  .footer-social-link svg {
    width: 20px;
    height: 20px;
  }
  .footer-glow-bar {
    height: 3px;
    margin-bottom: 8px;
  }
  .footer-copy {
    font-size: 0.92rem;
  }
}

/* ===== End Footer Section Styles ===== */

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
}

/* --- SVG Animations --- */
.cloud-anim svg .cloud-pulse {
  animation: pulse 1.8s infinite alternate;
}
.float-anim svg {
  animation: floatY 2.5s ease-in-out infinite alternate;
}
.shield-anim svg {
  filter: drop-shadow(0 0 8px #00fff7);
  animation: glowPulse 2.2s infinite alternate;
}
.pulse-anim svg {
  animation: pulse 1.6s infinite alternate;
}
.gear-anim .gear-group {
  transform-origin: 27px 27px;
  animation: gearSpin 2.5s linear infinite;
}
.draw-anim .draw-brackets {
  stroke-dasharray: 16;
  stroke-dashoffset: 16;
  animation: drawStroke 1.2s 0.3s forwards;
}

/* --- Keyframes --- */
@keyframes pulse {
  0% {
    filter: drop-shadow(0 0 8px #00fff7);
    transform: scale(1);
  }
  100% {
    filter: drop-shadow(0 0 24px #6f0);
    transform: scale(1.12);
  }
}
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-12px);
  }
}
@keyframes glowPulse {
  0% {
    filter: drop-shadow(0 0 8px #00fff7);
  }
  100% {
    filter: drop-shadow(0 0 24px #6f00ff);
  }
}
@keyframes gearSpin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes drawStroke {
  to {
    stroke-dashoffset: 0;
  }
}

/* --- Responsive tweaks --- */
@media (max-width: 700px) {
  .services-section {
    padding: 44px 0 24px 0;
  }
  .service-card {
    padding: 28px 12px 18px 12px;
  }
  .services-heading {
    font-size: 1.4rem;
    margin-bottom: 28px;
  }
}

@media (max-width: 500px) {
  .services-container {
    padding: 0 4px;
  }
  .service-title {
    font-size: 1rem;
  }
  .service-desc {
    font-size: 0.95rem;
    min-height: 0;
  }
  .service-icon {
    width: 48px;
    height: 48px;
  }
}

/* ===== Responsive Styles ===== */
@media (max-width: 1100px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-top: calc(var(--nav-height) + 24px);
  }
  .hero-content,
  .hero-svg {
    width: 100%;
    padding: 0 8vw;
  }
  .hero-svg {
    margin-top: 32px;
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-content,
  .hero-svg {
    padding: 0 4vw;
  }
  .hero-svg svg {
    max-width: 320px;
  }
}

@media (max-width: 500px) {
  .navbar-container {
    padding: 0 6px;
  }
  .hero-title {
    font-size: 1.3rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 12px 24px;
  }
  .hero-svg svg {
    max-width: 220px;
  }
}

/* ...existing code... */
