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

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes crossFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes crossFadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: scale(0.95);
    filter: blur(2px);
  }
}

@keyframes cardFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cardFadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.95);
  }
}

.card-crossfade-enter {
  animation: cardFadeIn 0.5s forwards;
}

.card-crossfade-exit {
  animation: cardFadeOut 0.5s forwards;
}

.card-content {
  transition: opacity 0.4s ease;
}

.card-hidden {
  opacity: 0;
}

.card-visible {
  opacity: 1;
}

@keyframes cardFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cardFadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.95);
  }
}

.card-crossfade-enter {
  animation: cardFadeIn 0.5s forwards;
}

.card-crossfade-exit {
  animation: cardFadeOut 0.5s forwards;
}

.card-content {
  transition: opacity 0.4s ease;
}

.card-hidden {
  opacity: 0;
}

.card-visible {
  opacity: 1;
}

  @keyframes cardFadeIn {
    0% {
      opacity: 0;
      transform: scale(0.95);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes cardFadeOut {
    0% {
      opacity: 1;
      transform: scale(1);
    }
    100% {
      opacity: 0;
      transform: scale(0.95);
    }
  }

  .card-crossfade-enter {
    animation: cardFadeIn 0.5s forwards;
  }

  .card-crossfade-exit {
    animation: cardFadeOut 0.5s forwards;
  }

  .card-content {
    transition: opacity 0.4s ease;
  }

  .card-hidden {
    opacity: 0;
  }

  .card-visible {
    opacity: 1;
  }

/* Floating Chat */
.floating-chat {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1000;
}

.chat-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 20px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
  transition: all 0.3s ease;
}

.chat-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.chat-button.active {
  transform: scale(0);
  opacity: 0;
}

.chat-popup {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 350px;
  height: 450px;
  background: #121212;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: all 0.3s ease;
}

.chat-popup.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(99, 102, 241, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-header h4 {
  color: white;
  margin: 0;
}

.close-chat {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.close-chat:hover {
  opacity: 1;
}

.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.message {
  max-width: 80%;
  display: flex;
  flex-direction: column;
}

.message.bot {
  align-self: flex-start;
}

.message.user {
  align-self: flex-end;
}

.message-content {
  padding: 10px 15px;
  border-radius: 15px;
}

.message.bot .message-content {
  background: rgba(255, 255, 255, 0.05);
}

.message.user .message-content {
  background: rgba(99, 102, 241, 0.3);
}

.message-time {
  font-size: 0.7rem;
  opacity: 0.6;
  margin-top: 5px;
  align-self: flex-end;
}

.chat-input {
  display: flex;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-input input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 10px 15px;
  color: white;
  outline: none;
}

.chat-input input:focus {
  border-color: #6366f1;
}

.send-message {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6366f1;
  border: none;
  border-radius: 50%;
  margin-left: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.send-message:hover {
  background: #8b5cf6;
  transform: scale(1.05);
}

body {
  font-family: "Outfit", "Outfit Placeholder", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #080808;
  background-image:
    radial-gradient(circle at 20% 25%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  background-size: 200% 200%;
  animation: gradient-animation 15s ease infinite;
  position: relative;
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000px;
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000px;
  margin: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  text-rendering: optimizeSpeed; /* Improve text rendering performance */
  -webkit-font-smoothing: antialiased; /* Smoother font rendering */
  -moz-osx-font-smoothing: grayscale;
}



/* Add styles to ensure smooth animation for all elements */
* {
  transition: transform 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}

/* For reduced animations mode */
.reduce-animations * {
  transition-duration: 0.01s !important;
  animation-duration: 0.01s !important;
}

/* Add transitions for elements */
.process-card, .service-card, .benefit-card, .testimonial-card, .section-divider, .stat,
.hero-graphic, .badge, .floating-elements, .roadmap-card {
  transition: transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform, opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  /* Add higher quality animations for elements that are visible */
  image-rendering: auto;
  backface-visibility: hidden;
}

/* HTML root styles */
html {
  height: 100%;
  box-sizing: border-box;
  -ms-content-zooming: none; /* Disables zooming on IE/Edge */
  touch-action: manipulation; /* Improves touch interaction */
  -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
  text-size-adjust: 100%; /* Prevent auto text resize */
}

/* Main container */
#main {
  backface-visibility: hidden;
  perspective: 1000px;
  will-change: transform;
  position: relative;
  min-height: 100vh;
  width: 100%;
}

/* Performance optimizations */
@media (prefers-reduced-motion: no-preference) {
  /* Transition effects for elements */
  .process-card,
  .service-card,
  .benefit-card,
  .testimonial-card {
    transition-duration: 0.2s;
  }
}

/* Optional GPU-accelerated elements for better performance */
.gpu-accelerated {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000;
  will-change: transform;
}

/* Styles for back to top button */
/* Back to top button styles */
.back-to-top {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transform: scale(1);
  transition: transform 0.2s ease, opacity 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.back-to-top:hover {
  transform: scale(1.1);
}

.back-to-top:active {
  transform: scale(0.95);
}

/* Optimize link hover transitions */
a {
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

/* Touch device optimizations */
@media (pointer: coarse) {
  body, #main {
    touch-action: pan-y;
  }

  /* Larger touch targets for mobile */
  .back-to-top {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 30px;
    right: 30px;
  }
}

/* Animation performance optimizations removed */

/* Mobile-specific optimizations */
/* Improve touchscreen interaction */
/* Mobile element touch behavior removed */

/* Desktop enhancements */
@media (hover: hover) {
  html {
  }
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
  html {
  }

  body {
  }

  /* Mobile element optimizations */
  .process-card, .service-card, .benefit-card, .testimonial-card {
    will-change: auto; /* Use will-change only when animating on mobile */
    transform: translateZ(0);
  }
}

/* Global Styles */
a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #6366f1;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #ffffff 0%, #d4d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.75rem;
  letter-spacing: -0.01em;
  font-weight: 500;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
html {
  height: 100%;
  overflow-x: hidden;
}

#main {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
  padding-top: 0;
  /* Ensure the main container doesn't cause overflow */
  width: 100%;
  box-sizing: border-box;
}

/* Header & Navigation */
header {
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(10px);
  width: 100%;
  transform: translateZ(0);
}

.zodium-m5z8ev {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.logo img {
  height: 36px;
  width: auto;
}

nav {
  display: flex;
  gap: 1rem;
}

nav a.active-link {
  color: #6366f1;
  position: relative;
}

nav a.active-link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 3px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
  color: white;
}

/* Badge */
.badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  /* color: #6366f1; */
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(99, 102, 241, 0.2);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.1);
}

.badge::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(99, 102, 241, 0) 0%,
    rgba(99, 102, 241, 0.1) 50%,
    rgba(99, 102, 241, 0) 100%
  );
  transform: rotate(30deg);
  animation: badge-shine 6s infinite linear;
}

@keyframes badge-shine {
  from { transform: translateX(-100%) rotate(30deg); }
  to { transform: translateX(100%) rotate(30deg); }
}

/* Hero Section */
#hero {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.zodium-1d8v1ml {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.zodium-15phvb2 {
  max-width: 800px;
  margin-bottom: 3rem;
}

.hero-graphic {
  margin-top: 0;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.9;
}

.zodium-1elrgar {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background-color: transparent;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  will-change: transform;
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  will-change: transform;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(20px);
}

.circle-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  top: -100px;
  left: -50px;
  animation: float 15s infinite ease-in-out;
}

.circle-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #8b5cf6, #ec4899);
  bottom: -70px;
  right: -30px;
  animation: float 18s infinite ease-in-out reverse;
}

.circle-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #6366f1, #3b82f6);
  bottom: 50px;
  left: 30%;
  animation: float 20s infinite ease-in-out 2s;
}

.zodiac-icon, .blockchain-icon {
  position: absolute;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.1);
  animation: spin-float 20s infinite linear;
}

.zodiac-icon:nth-child(4) {
  top: 20%;
  left: 10%;
  font-size: 3rem;
  animation-duration: 25s;
}

.zodiac-icon:nth-child(5) {
  top: 50%;
  right: 15%;
  font-size: 2.5rem;
  animation-duration: 30s;
  animation-delay: 2s;
}

.zodiac-icon:nth-child(6) {
  bottom: 20%;
  left: 20%;
  font-size: 3.5rem;
  animation-duration: 22s;
  animation-delay: 1s;
}

.zodiac-icon:nth-child(7) {
  top: 30%;
  right: 25%;
  font-size: 2.8rem;
  animation-duration: 28s;
  animation-delay: 3s;
}

/* Blockchain Icons */
.blockchain-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.blockchain-icon svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
  transition: all 0.3s ease;
}

.blockchain-icon:hover svg {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

/* Blockchain Tooltips */
.blockchain-tooltip {
  position: absolute;
  background: rgba(20, 20, 30, 0.9);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  width: max-content;
  max-width: 150px;
  text-align: center;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
}

.blockchain-tooltip::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid rgba(20, 20, 30, 0.9);
}

/* Sparkle Effect */
.sparkle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: sparkleAnimation 1s ease forwards;
  z-index: 10;
}

/* Ethereum Icon */
.ethereum-icon {
  top: 15%;
  right: 8%;
  animation-duration: 32s;
}

/* BSC Icon */
.bsc-icon {
  bottom: 25%;
  right: 12%;
  animation-duration: 26s;
  animation-delay: 1.5s;
}

/* Polygon Icon */
.polygon-icon {
  top: 40%;
  left: 8%;
  animation-duration: 30s;
  animation-delay: 2.5s;
}

@keyframes sparkleAnimation {
  0% {
    transform: scale(0) translateY(0);
    opacity: 1;
  }
  70% {
    opacity: 0.5;
  }
  100% {
    transform: scale(1) translateY(-20px);
    opacity: 0;
  }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(20px, -30px); }
  50% { transform: translate(-20px, 20px); }
  75% { transform: translate(-40px, -20px); }
}

@keyframes spin-float {
  0% { transform: rotate(0deg) translate(0, 0); }
  25% { transform: rotate(90deg) translate(20px, 20px); }
  50% { transform: rotate(180deg) translate(0, 40px); }
  75% { transform: rotate(270deg) translate(-20px, 20px); }
  100% { transform: rotate(360deg) translate(0, 0); }
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(99, 102, 241, 0.3);
  border-radius: 50%;
  animation: particle-float 15s infinite linear;
}

.particle:nth-child(1) { top: 10%; left: 20%; animation-duration: 20s; }
.particle:nth-child(2) { top: 30%; left: 80%; animation-duration: 25s; }
.particle:nth-child(3) { top: 70%; left: 10%; animation-duration: 30s; }
.particle:nth-child(4) { top: 50%; left: 60%; animation-duration: 22s; }
.particle:nth-child(5) { top: 20%; left: 30%; animation-duration: 28s; }
.particle:nth-child(6) { top: 80%; left: 70%; animation-duration: 18s; }
.particle:nth-child(7) { top: 40%; left: 40%; animation-duration: 23s; }
.particle:nth-child(8) { top: 60%; left: 90%; animation-duration: 19s; }
.particle:nth-child(9) { top: 90%; left: 50%; animation-duration: 26s; }
.particle:nth-child(10) { top: 15%; left: 85%; animation-duration: 21s; }
.particle:nth-child(11) { top: 75%; left: 25%; animation-duration: 24s; }
.particle:nth-child(12) { top: 45%; left: 15%; animation-duration: 27s; }

@keyframes particle-float {
  0% { transform: translate(0, 0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translate(100px, -100px) scale(0); opacity: 0; }
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
  animation: subtle-float 6s ease-in-out infinite alternate;
  filter: blur(1px) brightness(0.85) saturate(1.2);
  transition: filter 0.5s ease;
  position: absolute;
  z-index: -1;
}

.hero-image:hover {
  filter: blur(0.5px) brightness(0.95) saturate(1.3);
}

@keyframes subtle-float {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}

/* Light Effects */
.hero-graphic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.3) 0%, rgba(15, 23, 42, 0.7) 80%);
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.zodium-1elrgar .zodium-1d8v1ml {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Section Styles */
section {
  padding: 3rem 0;
  position: relative;
}

/* Section Dividers */
.section-divider {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.section-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.section-divider path {
  fill: #080808;
}

.section-divider-alt svg {
  height: 100px;
}

.section-divider-wave svg {
  height: 60px;
}

.section-divider-flip {
  top: auto;
  bottom: -1px;
  transform: rotate(180deg);
}

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

/* Process Section */
#processgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.process-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px 30px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.card-top {
  margin-bottom: 1.5rem;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 10px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.process-card:hover .card-image {
  transform: scale(1.03);
}

.dot-controls {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background-color: #F87171;
}

.dot.yellow {
  background-color: #FBBF24;
}

.dot.green {
  background-color: #34D399;
}

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

.card-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* Services Section */
.bento {
  max-width: 1200px;
  margin: 0 auto;
}

#topbentogrid, #bottombentogrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card.fade-transition .card-content {
  transition: opacity 0.5s ease;
  perspective: 1000px;
}

.service-card.fade-out .card-content {
  animation: crossFadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  pointer-events: none;
}

.service-card.fade-in .card-content {
  animation: crossFadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.service-card .card-content {
  position: relative;
  z-index: 1;
  will-change: opacity, transform;
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card .card-link {
  color: #6366f1;
  font-weight: 500;
  margin-top: 10px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.service-card .card-link:hover {
  transform: translateX(3px);
}

.card-action {
  margin-top: 15px;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(99, 102, 241, 0.1);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.service-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  border-radius: 16px;
}

.service-card:hover .service-icon::before {
  animation: shimmer 2s infinite;
}

.svg-icon {
  transition: transform 0.5s ease;
}

.service-card:hover .svg-icon {
  transform: scale(1.1);
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* 3D card effect */
.service-card, .benefit-card, .testimonial-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s;
  backface-visibility: hidden;
}

.service-content, .benefit-content, .testimonial-content {
  transform: translateZ(20px);
  transform-style: preserve-3d;
}

.service-icon, .benefit-icon {
  transform: translateZ(30px);
  transform-style: preserve-3d;
}

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

.service-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Benefits Section */
#benefitsgrid, #benefitsgrid-1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Stats Container */
.stats-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  text-align: center;
}

.stat span {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #6366f1);
  background-size: 200% auto;
  animation: gradient-text 3s infinite linear;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.3));
}

@keyframes gradient-text {
  to { background-position: 200% center; }
}

.stat p {
  font-size: 1rem;
  opacity: 0.7;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.1);
  margin-bottom: 1.5rem;
  position: relative;
}

.benefit-icon::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 1px solid rgba(99, 102, 241, 0.3);
  animation: pulse 2s infinite;
}

.svg-icon.pulse {
  animation: pulse-icon 3s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes pulse-icon {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.benefit-content h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.benefit-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Testimonial Cards */
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    transparent 0%,
    transparent 25%,
    rgba(99, 102, 241, 0.3) 50%,
    transparent 75%,
    transparent 100%
  );
  -webkit-mask:
     linear-gradient(#fff 0 0) content-box,
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.testimonial-card:hover::before {
  opacity: 1;
  animation: border-animate 3s linear infinite;
}

@keyframes border-animate {
  from { background-position: 0% 0%; }
  to { background-position: 400% 0%; }
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.quote-mark {
  font-size: 4rem;
  color: #6366f1;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.5;
  font-family: Georgia, serif;
}

.testimonial-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.dud {
  opacity: 0.7;
  color: #6366f1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(99, 102, 241, 0.5);
}

.author-avatar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: avatar-shine 4s infinite;
}

@keyframes avatar-shine {
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}

.author-info h4 {
  margin-bottom: 0.2rem;
}

.author-info p {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 0;
}

/* Section Styles */

.zodium-1p8kbdi {
  max-width: 800px;
  margin: 0 auto;
}

/* Email link styles removed */

/* Additional Styling */

/* Footer */
footer {
  padding: 4rem 0 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.zodium-7g8fj5 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.zodium-79wzoa {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.zodium-5fqcc0 {
  max-width: 300px;
}

.zodium-9m8k57 {
  margin-bottom: 2rem;
}

.zodium-9czzrc {
  opacity: 0.7;
  font-size: 0.875rem;
}

.zodium-z7as9h {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(99, 102, 241, 0.2);
}

.zodium-1ekdqli {
  display: flex;
  gap: 2rem;
}

.footer-links-column {
  min-width: 120px;
}

.footer-links-column h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.footer-links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-column ul li {
  margin-bottom: 0.75rem;
}

.footer-links-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-links-column ul li a:hover {
  color: #6366f1;
}

.zodium-1ak19lv {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.zodium-1s1bj7x {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.zodium-tmnpxq {
  font-size: 0.875rem;
  opacity: 0.5;
}

/* Primary Button */
.primary-button {
  display: inline-block;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.primary-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #8b5cf6, #6366f1);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.primary-button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.3);
  color: white;
}

.primary-button:hover::before {
  opacity: 1;
}

.primary-button:active {
  transform: translateY(0) scale(0.98);
}

.primary-button::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #6366f1);
  background-size: 200% 100%;
  z-index: -2;
  animation: button-border-animation 3s infinite linear;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.primary-button:hover::after {
  opacity: 1;
}

@keyframes button-border-animation {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.primary-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  background: rgba(99, 102, 241, 0.7);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .zodium-79wzoa {
    flex-direction: column;
    gap: 2rem;
  }

  .zodium-1ekdqli {
    flex-wrap: wrap;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    position: relative;
    height: 100%; /* Ensure full height on mobile */
  }

  header {
    position: sticky; /* Changed from fixed to prevent layout issues */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    transform: translateZ(0); /* Force hardware acceleration */
  }

  /* Add padding to prevent content from being hidden under fixed header */
  section:first-of-type {
    padding-top: 60px;
  }

  nav {
    display: none; /* Hidden by default on mobile */
  }

  /* nav.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(13, 13, 13, 0.98);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    z-index: 100;
    animation: slideDown 0.3s ease-in-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-height: 80vh;
    overflow-y: auto;
  }

  nav.active a {
    margin: 12px 0;
    font-size: 18px;
    opacity: 0.9;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 8px;
  }

  nav.active a:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
  } */

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    transition: transform 0.3s ease, color 0.3s ease;
    outline: none;
    position: relative;
    height: 48px;
    width: 48px;
  }

  .mobile-menu-btn:active {
    transform: scale(0.9);
  }

  .zodium-m5z8ev {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  section {
    padding: 4rem 0;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .primary-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .stats-container {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem;
  }

  .service-card, .benefit-card, .testimonial-card {
    padding: 1.5rem;
  }

  /* Chat responsive */
  .floating-chat {
    right: 20px;
    bottom: 20px;
  }

  .chat-button {
    padding: 12px 15px;
  }

  .chat-label {
    display: none;
  }

  .chat-popup {
    width: calc(100vw - 40px);
    height: 400px;
    right: -20px;
  }
}

/* Roadmap Section Styles */
.zodium-roadmap {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
  background-color: #060721;
}

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

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 2rem;
  padding-bottom: 2rem;
  perspective: 1000px;
}

.roadmap-card:nth-child(1) { animation-delay: 0.1s; }
.roadmap-card:nth-child(2) { animation-delay: 0.2s; }
.roadmap-card:nth-child(3) { animation-delay: 0.3s; }
.roadmap-card:nth-child(4) { animation-delay: 0.4s; }
.roadmap-card:nth-child(5) { animation-delay: 0.5s; }
.roadmap-card:nth-child(6) { animation-delay: 0.6s; }

.roadmap-card:nth-child(1)::after { animation-delay: 0.6s; }
.roadmap-card:nth-child(2)::after { animation-delay: 0.7s; }
.roadmap-card:nth-child(3)::after { animation-delay: 0.8s; }
.roadmap-card:nth-child(4)::after { animation-delay: 0.9s; }
.roadmap-card:nth-child(5)::after { animation-delay: 1.0s; }
.roadmap-card:nth-child(6)::after { animation-delay: 1.1s; }

.roadmap-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
  transform-origin: center;
  animation: cardAppear 0.6s ease-out forwards;
}

@keyframes cardAppear {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.roadmap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 0%;
  background: linear-gradient(180deg, #6366F1 0%, rgba(99, 102, 241, 0.4) 100%);
  border-radius: 12px 0 0 12px;
  animation: lineGrow 1.5s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes lineGrow {
  0% { height: 0%; }
  100% { height: 100%; }
}

.roadmap-date {
  position: relative;
  width: max-content;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.3) 100%);
  border-radius: 8px;
  color: #6366F1;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  z-index: 2;
  transition: all 0.3s ease;
}

.roadmap-card:hover .roadmap-date {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0.5) 100%);
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
}

.roadmap-content {
  flex: 1;
  word-break: break-word;
}

.roadmap-content h3 {
  color: #6366F1;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.roadmap-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  line-height: 1.6;
  transition: all 0.3s ease;
  position: relative;
}

.roadmap-card:hover .roadmap-content h3 {
  color: #868aff;
  text-shadow: 0 0 8px rgba(99, 102, 241, 0.3);
}

.roadmap-card:hover .roadmap-content p {
  color: rgba(255, 255, 255, 0.9);
}

.roadmap-card::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #6366F1;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.3),
              0 0 15px rgba(99, 102, 241, 0.5);
  animation: pulse 2s infinite, appear 0.5s ease-out forwards;
  opacity: 0;
}

@keyframes appear {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7), 0 0 15px rgba(99, 102, 241, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(99, 102, 241, 0), 0 0 15px rgba(99, 102, 241, 0.5); }
  100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0), 0 0 15px rgba(99, 102, 241, 0.5); }
}

.roadmap-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.15);
}

.roadmap-card:hover::after {
  animation: pulse 1s infinite, radiate 1.5s infinite;
}

@keyframes radiate {
  0% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7), 0 0 15px rgba(99, 102, 241, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(99, 102, 241, 0), 0 0 20px rgba(99, 102, 241, 0.8);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0), 0 0 15px rgba(99, 102, 241, 0.5);
  }
}

/* Responsive Roadmap */
@media (max-width: 992px) {
  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
  }
}

@media (max-width: 768px) {
  .zodium-roadmap {
    padding: 4rem 1rem;
  }

  .roadmap-container {
    padding: 1rem 0;
  }

  .roadmap-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.5rem;
  }

  .roadmap-card {
    padding: 1.2rem;
  }

  .roadmap-date {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }

  .roadmap-content h3 {
    font-size: 1.1rem;
  }

  .roadmap-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .roadmap-card::after {
    width: 10px;
    height: 10px;
    right: 1rem;
    top: 1.2rem;
  }
}
