/*
* {
  border: 1px solid red;
}

:root {
  --color-hi: #f56a6a;
}

* {
  box-sizing: border-box;
}

body {
  color: #555;
  margin: 0 auto;
  max-width: 50em;
  font-family: "Helvetica", "Arial", sans-serif;
  line-height: 1.5;
  padding: 2em 1em;
}

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.5em;
}

h2,
h3 {
  margin-top: 1.5em;
}

h1,
h2,
strong {
  color: #333;
}

code,
pre {
  background: #eee;
}

code {
  padding: 2px 4px;
  vertical-align: text-bottom;
}

pre {
  border-left: 2px solid #bbb;
  padding: 1em;
}

a {
  color: var(--color-hi);
}

blockquote,
q {
  border-left: solid 4px #bbb;
  font-style: italic;
  margin: 0 0 2em 0;
  padding: 0.5em 0 0.5em 2em;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  color: white;
  padding: 0 20px;
  height: 60px;
}

.logo img {
  height: 40px;
}

.links > ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.links li {
  position: relative;
  margin-left: 20px;
}

.links a,
.services-toggle {
  color: white;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.services {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #444;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  min-width: 160px;
}

.services li {
  padding: 5px 20px;
}

.services li a {
  color: white;
  text-decoration: none;
  display: block;
}

.links li:hover .services {
  display: block;
}
*/

:root {
  --primary: #4f46e5;
  --primary-dark: #4338ca;
  --secondary: #06b6d4;
  --accent: #f59e0b;
  --dark: #111827;
  --light: #f9fafb;
  --gray: #6b7280;
  --very-light-gray: #d9e6ff;
  --success: #10b981;
}

body {
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

.gradient-bg {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.accent-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
}

.mouse-ascii {
  font-family: "Fira Mono", monospace;
  font-size: 1.2rem;
  white-space: nowrap;
}

/* Services dropdown */
.services {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  background-color: white;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 100;
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  right: 0;
  pointer-events: none;
  transition:
    opacity 0.2s,
    visibility 0.2s;
}

.services li {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
}

.services li a {
  color: var(--dark);
  text-decoration: none;
  display: block;
  width: 100%;
  transition: color 0.3s;
}

.services li a:hover {
  color: var(--primary);
}

.links li {
  position: relative;
}

.links li:hover .services {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.header-bar {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 40px;
}

.links ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center; /* <-- FIX: Added this line */
}

.links li {
  position: relative;
}

.links a,
.services-toggle {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem 0;
  position: relative;
}

.links a:hover,
.services-toggle:hover {
  color: var(--primary);
}

.links a::after,
.services-toggle::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.links a:hover::after,
.services-toggle:hover::after {
  width: 100%;
}

.services-toggle::after {
  width: 0;
}

.subtle-dots-pattern {
  background-image: radial-gradient(
    var(--very-light-gray) 1px,
    transparent 1px
  );
  background-size: 15px 15px;
  background-color: var(--light); /* Use --light or bg-gray-50 equivalent */
  position: relative; /* Needed if using pseudo-elements for overlay */
}

.subtle-lines-pattern {
  background-color: white; /* Or var(--light) if preferred */
  background-image:
    linear-gradient(45deg, rgba(79, 70, 229, 0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(79, 70, 229, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(79, 70, 229, 0.05) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(79, 70, 229, 0.05) 75%);
  background-size: 20px 20px;
  position: relative;
}

.subtle-radial-pattern {
  background-color: var(--light); /* Use --light or bg-gray-50 equivalent */
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(79, 70, 229, 0.05) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(6, 182, 212, 0.05) 0%,
      transparent 20%
    );
  background-size: 100% 100%; /* Cover the section */
  position: relative;
}
/* Ensure content is above patterns if complex layering is needed */
/* .pattern-section > .container { position: relative; z-index: 1; } */

.hero-section {
  background: linear-gradient(135deg, #6366f1 0%, #3b82f6 50%, #06b6d4 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%);
  background-size: 60px 60px;
  z-index: 1;
}

.card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-card {
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.testimonial-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  font-family: serif;
  line-height: 1;
}

.stats-section {
  position: relative;
  overflow: hidden;
}

.stats-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(79, 70, 229, 0.1) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(6, 182, 212, 0.1) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(245, 158, 11, 0.1) 0%,
      transparent 20%
    );
  z-index: 0;
}

.stat-item {
  position: relative;
  z-index: 1;
}

.footer {
  background: linear-gradient(135deg, var(--dark) 0%, #1f2937 100%);
}

.footer-links a {
  color: #d1d5db;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.mouse-container {
  position: relative;
  display: inline-block;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.cta-button {
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.logo .logo-text {
  font-family: "Fira Mono", monospace;
  font-size: 1.5rem; /* Adjust size as needed */
  font-weight: medium;
  color: var(--dark);
  line-height: 1; /* Adjust line height if needed */
  user-select: none;
}
