:root {
  /* Color System */
  --bg-primary: #0a0e17;
  --bg-secondary: #111625;
  --bg-card: #1a202c;
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --accent-color: #007bff;
  /* Neon Blue-ish */
  --accent-hover: #0056b3;
  --border-color: #2d3748;

  /* Spacing */
  --container-width: 1200px;
  --header-height: 80px;
  --section-spacing: 100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  padding: 100px 0 60px;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background-color: var(--bg-card);
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.card p {
  color: var(--text-secondary);
}

/* Platforms Strip */
.platforms-strip {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0;
}

.platform-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.platform-item {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.platform-item:hover {
  opacity: 1;
  color: var(--text-primary);
}

/* Process Summary */
.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 40px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  background-color: var(--bg-primary);
  padding: 0 20px;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--bg-card);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 20px;
  color: var(--accent-color);
}

/* Social Highlight */
.social-highlight {
  background: linear-gradient(45deg, var(--bg-secondary), var(--bg-primary));
  text-align: center;
  padding: 80px 0;
}

.highlight-content {
  max-width: 800px;
  margin: 0 auto;
}

.highlight-content p {
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Bottom CTA */
.bottom-cta {
  text-align: center;
  padding: 120px 0;
}

.bottom-cta h2 {
  font-size: 3rem;
  margin-bottom: 40px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  padding: 100px 0 60px;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background-color: var(--bg-card);
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.card p {
  color: var(--text-secondary);
}

/* Platforms Strip */
.platforms-strip {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0;
}

.platform-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.platform-item {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.platform-item:hover {
  opacity: 1;
  color: var(--text-primary);
}

/* Process Summary */
.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 40px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  background-color: var(--bg-primary);
  padding: 0 20px;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--bg-card);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 20px;
  color: var(--accent-color);
}

/* Social Highlight */
.social-highlight {
  background: linear-gradient(45deg, var(--bg-secondary), var(--bg-primary));
  text-align: center;
  padding: 80px 0;
}

.highlight-content {
  max-width: 800px;
  margin: 0 auto;
}

.highlight-content p {
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Bottom CTA */
.bottom-cta {
  text-align: center;
  padding: 120px 0;
}

.bottom-cta h2 {
  font-size: 3rem;
  margin-bottom: 40px;
}

.btn-lg {
  padding: 16px 48px;
  font-size: 1.2rem;
}

.section {
  padding: var(--section-spacing) 0;
}

/* Advanced Services Layout */
.service-section {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 120px;
}

.service-section:last-child {
  margin-bottom: 0;
}

.service-section.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
}

.service-image {
  flex: 1;
  position: relative;
}

.service-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.service-image:hover img {
  transform: scale(1.02);
  border-color: var(--accent-color);
}

.service-badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: rgba(0, 123, 255, 0.1);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.service-text p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.feature-list-advanced {
  margin-bottom: 30px;
}

.feature-list-advanced li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

.feature-list-advanced li .icon {
  margin-right: 15px;
  font-size: 1.2rem;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-stack span {
  padding: 6px 14px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  background-color: var(--bg-primary);
  padding: 0 20px;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--bg-card);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 20px;
  color: var(--accent-color);
}

/* Social Highlight */
.social-highlight {
  background: linear-gradient(45deg, var(--bg-secondary), var(--bg-primary));
  text-align: center;
  padding: 80px 0;
}

.highlight-content {
  max-width: 800px;
  margin: 0 auto;
}

.highlight-content p {
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Bottom CTA */
.bottom-cta {
  text-align: center;
  padding: 120px 0;
}

.bottom-cta h2 {
  font-size: 3rem;
  margin-bottom: 40px;
}

.btn-lg {
  padding: 16px 48px;
  font-size: 1.2rem;
}

.section {
  padding: var(--section-spacing) 0;
}

/* Advanced Services Layout */
.service-section {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 120px;
}

.service-section:last-child {
  margin-bottom: 0;
}

.service-section.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
}

.service-image {
  flex: 1;
  position: relative;
}

.service-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.service-image:hover img {
  transform: scale(1.02);
  border-color: var(--accent-color);
}

.service-badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: rgba(0, 123, 255, 0.1);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.service-text p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.feature-list-advanced {
  margin-bottom: 30px;
}

.feature-list-advanced li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

.feature-list-advanced li .icon {
  margin-right: 15px;
  font-size: 1.2rem;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-stack span {
  padding: 6px 14px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Responsive for Services */
@media (max-width: 960px) {

  .service-section,
  .service-section.reverse {
    flex-direction: column-reverse;
    /* Image on top */
    gap: 40px;
    margin-bottom: 80px;
  }

  .service-image img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
  }

  .service-text {
    text-align: center;
  }

  .feature-list-advanced li {
    justify-content: center;
  }

}

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  background-color: var(--bg-primary);
  padding: 0 20px;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--bg-card);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 20px;
  color: var(--accent-color);
}

/* Social Highlight */
.social-highlight {
  background: linear-gradient(45deg, var(--bg-secondary), var(--bg-primary));
  text-align: center;
  padding: 80px 0;
}

.highlight-content {
  max-width: 800px;
  margin: 0 auto;
}

.highlight-content p {
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Bottom CTA */
.bottom-cta {
  text-align: center;
  padding: 120px 0;
}

.bottom-cta h2 {
  font-size: 3rem;
  margin-bottom: 40px;
}

.btn-lg {
  padding: 16px 48px;
  font-size: 1.2rem;
}

.section {
  padding: var(--section-spacing) 0;
}

/* Advanced Services Layout */
.service-section {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 120px;
}

.service-section:last-child {
  margin-bottom: 0;
}

.service-section.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
}

.service-image {
  flex: 1;
  position: relative;
}

.service-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.service-image:hover img {
  transform: scale(1.02);
  border-color: var(--accent-color);
}

.service-badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: rgba(0, 123, 255, 0.1);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.service-text p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.feature-list-advanced {
  margin-bottom: 30px;
}

.feature-list-advanced li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

.feature-list-advanced li .icon {
  margin-right: 15px;
  font-size: 1.2rem;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-stack span {
  padding: 6px 14px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  text-align: center;
}

.timeline-section h3 {
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--text-primary);
}

.vertical-timeline {
  position: relative;
  max-width: 1000px;
  /* Increased width for better spacing */
  margin: 0 auto;
  padding: 20px 0;
}

.vertical-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-color), transparent);
  transform: translateX(-50%);
}

.v-step {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  min-height: 100px;
  /* Ensure minimum height */
}

.v-step:last-child {
  margin-bottom: 0;
}

/* Icon is now absolute centered */
.v-step-icon {
  width: 80px;
  height: 80px;
  background-color: var(--bg-card);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  z-index: 2;
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);

  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Content is relative and takes up space */
.v-step-content {
  position: relative;
  width: 42%;
  /* Less than 50% to leave room for icon */
  padding: 30px;
  background-color: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: left;
  transition: transform 0.3s ease;
  z-index: 1;
}

.v-step-content:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

/* Odd steps: Content on Left */
.v-step:nth-child(odd) {
  justify-content: flex-start;
}

.v-step:nth-child(odd) .v-step-content {
  text-align: right;
  /* Optional: align text towards center */
}

/* Even steps: Content on Right */
.v-step:nth-child(even) {
  justify-content: flex-end;
}

.v-step:nth-child(even) .v-step-content {
  text-align: left;
}

.v-step-content h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.v-step-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive Timeline */
@media (max-width: 768px) {
  .vertical-timeline::before {
    left: 30px;
    /* Adjust line position */
    transform: none;
  }

  .v-step {
    justify-content: flex-start;
    margin-bottom: 40px;
  }

  .v-step-icon {
    position: relative;
    left: auto;
    transform: none;
    margin-right: 20px;
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    flex-shrink: 0;
    /* Prevent icon shrinking */
  }

  .v-step-content {
    width: auto;
    flex: 1;
    transform: scale(1.02);
    border-color: var(--accent-color);
  }

  .service-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(0, 123, 255, 0.1);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .service-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
  }

  .service-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
  }

  .feature-list-advanced {
    margin-bottom: 30px;
  }

  .feature-list-advanced li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 500;
  }

  .feature-list-advanced li .icon {
    margin-right: 15px;
    font-size: 1.2rem;
  }

  .tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .tech-stack span {
    padding: 6px 14px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    text-align: center;
  }

  .timeline-section h3 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-primary);
  }

  .vertical-timeline {
    position: relative;
    max-width: 1000px;
    /* Increased width for better spacing */
    margin: 0 auto;
    padding: 20px 0;
  }

  .vertical-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
    transform: translateX(-50%);
  }

  .v-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    min-height: 100px;
    /* Ensure minimum height */
  }

  .v-step:last-child {
    margin-bottom: 0;
  }

  /* Icon is now absolute centered */
  .v-step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--bg-card);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);

    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Content is relative and takes up space */
  .v-step-content {
    position: relative;
    width: 42%;
    /* Less than 50% to leave room for icon */
    padding: 30px;
    background-color: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: left;
    transition: transform 0.3s ease;
    z-index: 1;
  }

  .v-step-content:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
  }

  /* Odd steps: Content on Left */
  .v-step:nth-child(odd) {
    justify-content: flex-start;
  }

  .v-step:nth-child(odd) .v-step-content {
    text-align: right;
    /* Optional: align text towards center */
  }

  /* Even steps: Content on Right */
  .v-step:nth-child(even) {
    justify-content: flex-end;
  }

  .v-step:nth-child(even) .v-step-content {
    text-align: left;
  }

  .v-step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
  }

  .v-step-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Responsive Timeline */
  @media (max-width: 768px) {
    .vertical-timeline::before {
      left: 30px;
      /* Adjust line position */
      transform: none;
    }

    .v-step {
      justify-content: flex-start;
      margin-bottom: 40px;
    }

    .v-step-icon {
      position: relative;
      left: auto;
      transform: none;
      margin-right: 20px;
      width: 60px;
      height: 60px;
      font-size: 1.8rem;
      flex-shrink: 0;
      /* Prevent icon shrinking */
    }

    .v-step-content {
      width: auto;
      flex: 1;
      text-align: left !important;
      /* Force left align on mobile */
      padding: 20px;
    }

    /* Reset even/odd specific styles for mobile */
    .v-step:nth-child(even) {
      justify-content: flex-start;
    }
  }

  @media (max-width: 768px) {
    .vertical-timeline::before {
      left: 30px;
      /* Adjust line position */
      transform: none;
    }

    .v-step {
      justify-content: flex-start;
      margin-bottom: 40px;
    }

    .v-step-icon {
      position: relative;
      left: auto;
      transform: none;
      margin-right: 20px;
      width: 60px;
      height: 60px;
      font-size: 1.8rem;
      flex-shrink: 0;
      /* Prevent icon shrinking */
    }

  }

  @media (max-width: 768px) {
    .v-step-content {
      width: auto;
      flex: 1;
      text-align: left !important;
      padding: 20px;
    }
  }

  .tech-stack span {
    padding: 6px 14px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    text-align: center;
  }

  .timeline-section h3 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-primary);
  }

  .vertical-timeline {
    position: relative;
    max-width: 1000px;
    /* Increased width for better spacing */
    margin: 0 auto;
    padding: 20px 0;
  }

  .vertical-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
    transform: translateX(-50%);
  }

  .v-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    min-height: 100px;
    /* Ensure minimum height */
  }

  .v-step:last-child {
    margin-bottom: 0;
  }

  /* Icon is now absolute centered */
  .v-step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--bg-card);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);

    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Content is relative and takes up space */
  .v-step-content {
    position: relative;
    width: 42%;
    /* Less than 50% to leave room for icon */
    padding: 30px;
    background-color: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: left;
    transition: transform 0.3s ease;
    z-index: 1;
  }

  .v-step-content:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
  }

  /* Odd steps: Content on Left */
  .v-step:nth-child(odd) {
    justify-content: flex-start;
  }

  .v-step:nth-child(odd) .v-step-content {
    text-align: right;
    /* Optional: align text towards center */
  }

  /* Even steps: Content on Right */
  .v-step:nth-child(even) {
    justify-content: flex-end;
  }

  .v-step:nth-child(even) .v-step-content {
    text-align: left;
  }

  .v-step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
  }

  .v-step-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Responsive Timeline */
  @media (max-width: 768px) {
    .vertical-timeline::before {
      left: 30px;
      /* Adjust line position */
      transform: none;
    }

    .v-step {
      justify-content: flex-start;
      margin-bottom: 40px;
    }

    .v-step-icon {
      position: relative;
      left: auto;
      transform: none;
      margin-right: 20px;
      width: 60px;
      height: 60px;
      font-size: 1.8rem;
      flex-shrink: 0;
      /* Prevent icon shrinking */
    }

    .v-step-content {
      width: auto;
      flex: 1;
      text-align: left !important;
      /* Force left align on mobile */
      padding: 20px;
    }

    /* Reset even/odd specific styles for mobile */
    .v-step:nth-child(even) {
      justify-content: flex-start;
    }
  }

  @media (max-width: 768px) {
    .vertical-timeline::before {
      left: 30px;
      /* Adjust line position */
      transform: none;
    }

    .v-step {
      justify-content: flex-start;
      margin-bottom: 40px;
    }

    .v-step-icon {
      position: relative;
      left: auto;
      transform: none;
      margin-right: 20px;
      width: 60px;
      height: 60px;
      font-size: 1.8rem;
      flex-shrink: 0;
      /* Prevent icon shrinking */
    }

    .v-step-content {
      width: auto;
      flex: 1;
      text-align: left !important;
      /* Force left align on mobile */
      padding: 20px;
    }

    .v-step:nth-child(odd) .v-step-content {
      text-align: left;
    }
  }

  /* Process Page - Premium Vertical Timeline */
  .process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 40px 0;
  }

  /* Center Line */
  .process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--bg-card);
    transform: translateX(-50%);
    border-radius: 4px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
  }

  /* Neon Line Fill Effect */
  .process-timeline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 30%;
    background: linear-gradient(to bottom, var(--accent-color), var(--accent-hover));
    transform: translateX(-50%);
    border-radius: 4px;
    box-shadow: 0 0 15px var(--accent-color);
    z-index: 0;
  }

  .process-step {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    z-index: 1;
  }

  .process-step:last-child {
    margin-bottom: 0;
  }

  /* Glassmorphism Card - Stronger & Clearer */
  .process-step .step-content {
    width: 44%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: left;
  }

  .process-step .step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    pointer-events: none;
  }

  .process-step .step-content:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 255, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 242, 255, 0.1);
    background: rgba(15, 23, 42, 0.8);
  }

  /* Card Icon (Inside Card) */
  .card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.3));
    transition: transform 0.3s ease;
  }

  .process-step:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
  }

  /* Step Title */
  .process-step h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
    position: relative;
    z-index: 1;
  }

  .process-step p {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
  }

  /* Center Circle (Step Number) */
  .step-center-circle {
    width: 60px;
    height: 60px;
    background: #0f1221;
    border: 2px solid rgba(0, 242, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2), inset 0 0 10px rgba(0, 242, 255, 0.1);
    font-size: 1.2rem;
    font-weight: 800;
    color: #00f2ff;
    transition: all 0.3s ease;
  }

  .process-step:hover .step-center-circle {
    transform: scale(1.2);
    border-color: #00f2ff;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.5), inset 0 0 15px rgba(0, 242, 255, 0.3);
    background: #1a1f35;
    color: #fff;
  }

  /* Left/Right Layout Logic */
  .process-step.left {
    flex-direction: row;
  }

  .process-step.left .step-content {
    margin-right: auto;
  }

  .process-step.left .step-center-circle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .process-step.right {
    flex-direction: row-reverse;
  }

  .process-step.right .step-content {
    margin-left: auto;
  }

  .process-step.right .step-center-circle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Responsive Process Timeline */
  @media (max-width: 768px) {
    .process-timeline {
      margin-top: 40px;
    }

    .process-timeline::before,
    .process-timeline::after {
      left: 30px;
    }

    .process-step {
      flex-direction: row !important;
      justify-content: flex-start;
      margin-bottom: 60px;
    }

    .process-step.left .step-center-circle,
    .process-step.right .step-center-circle {
      left: 30px;
      transform: translateX(-50%);
    }

    .process-step:hover .step-center-circle {
      transform: translateX(-50%) scale(1.2);
    }

    .process-step.left .step-content,
    .process-step.right .step-content {
      width: calc(100% - 80px);
      margin-left: 80px !important;
      margin-right: 0 !important;
      text-align: left !important;
    }
  }

  /* Animation Keyframes */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Animation Classes */
  .animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  .animate-on-scroll.visible {
    animation: fadeInUp 0.8s ease-out forwards;
  }

  /* Hero Enhancement */
  .hero {
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  .hero-content {
    position: relative;
    z-index: 1;
  }