:root {
  --primary-neon: #ff6b2b;  /* Vibrant orange */
  --secondary-neon: #ffd700;  /* Golden yellow */
  --accent-teal: #00ffaa;    /* Bright teal for extra pop */
  --bg-dark: #0a0a0f;
  --text-light: #ffffff;
  --accent-metallic: #1a1a1f;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 1rem;
}

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

/* Navigation */
.nav {
  position: fixed;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a:hover {
  color: var(--primary-neon);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 2000px;
  background: var(--bg-dark);  /* Solid dark background */
  overflow: hidden;
  padding-top: 8rem;
}

.grid-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: 
      linear-gradient(rgba(10, 10, 15, 0.2), var(--bg-dark)),
      repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 50px),
      repeating-linear-gradient(180deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 50px);
  transform: none;
}

.spotlight {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
  mix-blend-mode: overlay;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0;
    transform-origin: center center;
}

.floating-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
  padding: 2rem;
  border-radius: 20px;
  background: transparent;
  border: none;  /* Remove default border */
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}

.hero-tagline {
  font-size: 1.3rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.hero-tagline strong {
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

/* Services Section */
.services {
  padding: 8rem 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 4rem;
  text-align: center;
  background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-grid {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.service-card {
    position: relative;
    background: var(--accent-metallic);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
    cursor: pointer;
    z-index: 1;
    margin-top: 20px;
    flex: 1;
    max-width: 48%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    z-index: -1;
    border: 4px solid transparent;
    background: linear-gradient(90deg, 
        var(--primary-neon),
        var(--secondary-neon),
        var(--primary-neon)
    ) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: var(--accent-metallic);
    border-radius: 12px;
    z-index: -1;
}

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

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.service-card p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text-light);
    text-align: center;
}

.service-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--bg-dark);
  z-index: 2;
}

/* How it works Section */
.how-it-works {
    padding: 8rem 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow: hidden;
}

.how-it-works-title {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.how-it-works-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

.how-it-works-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.how-it-works-step {
    position: relative;
    background: var(--accent-metallic);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
    z-index: 1;
    display: flex;
    align-items: center;
    text-align: left;
    width: 100%;
    min-height: 60px;
    gap: 1rem;
}

/* Match service card border style */
.how-it-works-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    z-index: -1;
    border: 4px solid transparent;
    background: linear-gradient(90deg, 
        var(--primary-neon),
        var(--secondary-neon),
        var(--primary-neon)
    ) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

/* Purple gradient for client steps */
.how-it-works-step.client-step::before {
    background: linear-gradient(90deg, 
        #9333EA,
        #C084FC,
        #9333EA
    ) border-box;
}

.how-it-works-step::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: var(--accent-metallic);
    border-radius: 12px;
    z-index: -1;
}

.how-it-works-step:hover {
    transform: translateX(5px);
}

/* Match service card number style */
.step-number {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 80px;
    flex-shrink: 0;
}

.step-title {
    font-size: 1rem;
    color: var(--text-light);
    text-align: left;
    line-height: 1.3;
    flex: 1;
}

/* Purple gradient for client step numbers */
.client-step .step-number {
    background: linear-gradient(45deg, #9333EA, #C084FC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}





/* Responsive adjustments */
@media (max-width: 1200px) {
    .how-it-works-content {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, auto);
    }
}

@media (max-width: 768px) {
    .how-it-works-content {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(7, auto);
        gap: 3rem;
    }

    .how-it-works-step {
        grid-area: auto !important;
    }
}

/* CTA Section */
.cta {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(rgba(10, 10, 15, 0.9), rgba(10, 10, 15, 0.9)),
              url('../images/grid.svg');
}

.cta-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary-neon);
  color: var(--bg-dark);
  text-decoration: none;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  margin-top: 2rem;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px var(--primary-neon);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Simplified electric border */
.electric-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    pointer-events: none;
    z-index: -1;
    border: 6px solid transparent;  /* Increased from 2px to 6px */
    background: linear-gradient(90deg, 
        var(--primary-neon),
        var(--secondary-neon),
        var(--primary-neon)
    ) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.electric-border::before {
    content: '';
    position: absolute;
    width: 60px;  /* Reduced from 120px to 60px */
    height: 6px;   /* Keep same border thickness */
    background: #ffffff;
    filter: blur(2px);
    box-shadow: 
        0 0 10px #ffffff,
        0 0 20px var(--secondary-neon);
    animation: borderPath 3s linear infinite;
    opacity: 0.8;
    transform-origin: center;
}

@keyframes borderPath {
    /* Top edge */
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        width: 120px;
        left: 0;
        top: 0;
    }
    24% {
        transform: translate(-50%, -50%) rotate(0deg);
        width: 120px;
        left: 100%;
        top: 0;
    }
    /* Right edge */
    25% {
        transform: translate(-50%, -50%) rotate(90deg);
        width: 120px;
        left: 100%;
        top: 0;
    }
    49% {
        transform: translate(-50%, -50%) rotate(90deg);
        width: 120px;
        left: 100%;
        top: 100%;
    }
    /* Bottom edge */
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
        width: 120px;
        left: 100%;
        top: 100%;
    }
    74% {
        transform: translate(-50%, -50%) rotate(180deg);
        width: 120px;
        left: 0;
        top: 100%;
    }
    /* Left edge */
    75% {
        transform: translate(-50%, -50%) rotate(270deg);
        width: 120px;
        left: 0;
        top: 100%;
    }
    99% {
        transform: translate(-50%, -50%) rotate(270deg);
        width: 120px;
        left: 0;
        top: 0;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
        width: 120px;
        left: 0;
        top: 0;
    }
}

/* New electric button styles */
.hero-cta {
    position: relative;
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    background: transparent;
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, 
        var(--primary-neon),
        var(--secondary-neon),
        var(--accent-teal),
        var(--secondary-neon),
        var(--primary-neon)
    );
    border-radius: 12px;
    z-index: -2;
    background-size: 300% 100%;
    animation: moveGradient 3s linear infinite;
}

.hero-cta::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: rgba(10, 10, 15, 0.9);
    border-radius: 10px;
    z-index: -1;
    transition: background-color 0.3s ease;
}

.hero-cta:hover::after {
    background: rgba(255, 255, 255, 0.1);
}

.hero-cta:hover {
    color: white;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    transform: scale(1.02);
}

/* Add specific styling for the CTA button within steps */
.how-it-works-step .cta-button {
  margin-top: 0;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
}

/* Contact Section */
.contact {
  padding: 8rem 0;
  background: linear-gradient(rgba(10, 10, 15, 0.9), rgba(10, 10, 15, 0.9)),
              url('../images/grid.svg');
}

.contact .section-title {
  text-align: center;
}

.contact form {
  position: relative;
  background: transparent;
  padding: 2rem 2rem 2rem 3rem;
  border-radius: 15px;
  z-index: 1;
  border: 5px solid transparent;
  text-align: left;
}

.contact form .flex.justify-center {
  text-align: center;
  display: flex;
  justify-content: center;
}

.contact form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  z-index: -1;
  border: 4px solid transparent;
  background: linear-gradient(90deg, 
      var(--primary-neon),
      var(--secondary-neon),
      var(--primary-neon)
  ) border-box;
  -webkit-mask:
      linear-gradient(#fff 0 0) padding-box, 
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.contact form::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--accent-metallic);
  border-radius: 12px;
  z-index: -1;
}

/* Update the max width for the contact form container */
.contact .max-w-2xl {
  max-width: 800px;  /* Increased from default */
  width: 100%;
  margin: 0 auto;
}

/* Update input styles to match the theme */
.contact input,
.contact textarea {
  padding: 0.75rem;
  background: rgba(10, 10, 15, 0.5);
  border: 1px solid var(--primary-neon);
  color: var(--text-light);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: var(--secondary-neon);
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
}

.contact label {
  color: var(--text-light);
  text-align: left;
}

/* Horizontal form layout styles */
.contact form .flex {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact form .flex.items-start {
  align-items: flex-start;
}

.contact form .w-32 {
  width: 8rem;
  flex-shrink: 0;
}

.contact form .flex-1 {
  flex: 1;
}

.contact form .gap-4 {
  gap: 1rem;
}

.contact form .pt-2 {
  padding-top: 0.5rem;
}

.contact form .flex.justify-center {
  margin-top: 2rem;
  margin-bottom: 0;
}

/* Add responsive styles */
@media (max-width: 768px) {
  .contact form {
    padding: 1rem;
  }
}

/* Update the submit button styles to match hero-cta */
.submit-button {
    position: relative;
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    background: transparent;
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    cursor: pointer;
    border: none;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, 
        var(--primary-neon),
        var(--secondary-neon),
        var(--accent-teal),
        var(--secondary-neon),
        var(--primary-neon)
    );
    border-radius: 12px;
    z-index: -2;
    background-size: 300% 100%;
    animation: moveGradient 3s linear infinite;
}

.submit-button::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: rgba(10, 10, 15, 0.9);
    border-radius: 10px;
    z-index: -1;
    transition: background-color 0.3s ease;
}

.submit-button:hover::after {
    background: rgba(255, 255, 255, 0.1);
}

.submit-button:hover {
    color: white;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    transform: scale(1.02);
}

/* Custom Modal Styles */
.custom-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-metallic);
    border: 1px solid var(--primary-neon);
    border-radius: 15px;
    padding: 2rem;
    z-index: 1000;
    max-width: 90%;
    width: 400px;
    box-shadow: 0 0 20px rgba(255, 119, 0, 0.2);
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.8);
    z-index: 999;
    backdrop-filter: blur(4px);
}

.modal-content {
    color: var(--text-light);
    text-align: center;
}

.modal-close {
    background: var(--primary-neon);
    color: var(--bg-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    margin-top: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(255, 119, 0, 0.3);
}

/* Update the base CTA button styles to be reused */
.cta-base {
    position: relative;
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    background: transparent;
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    cursor: pointer;
    border: none;
}

.cta-base::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, 
        var(--primary-neon),
        var(--secondary-neon),
        var(--accent-teal),
        var(--secondary-neon),
        var(--primary-neon)
    );
    border-radius: 12px;
    z-index: -2;
    background-size: 300% 100%;
    animation: moveGradient 3s linear infinite;
}

.cta-base::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: rgba(10, 10, 15, 0.9);
    border-radius: 10px;
    z-index: -1;
    transition: background-color 0.3s ease;
}

.cta-base:hover::after {
    background: rgba(255, 255, 255, 0.1);
}

.cta-base:hover {
    color: white;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    transform: scale(1.02);
}

/* Apply the base styles to all CTA buttons */
.hero-cta,
.cta-button,
.submit-button,
.modal-close {
    composes: cta-base;
}

/* Specific adjustments for smaller buttons */
.how-it-works-step .cta-button {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
}

/* Modal close button specific adjustments */
.modal-close {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Add the moveGradient animation keyframes */
@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}

/* Add gradient to service card titles */
.service-card h3 {
    background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Add styles for the central description box */
.services-description {
  position: relative;
  background: transparent;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  z-index: 1;
}

.services-description::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  z-index: -1;
  border: 4px solid transparent;
  background: linear-gradient(90deg, 
      var(--primary-neon),
      var(--secondary-neon),
      var(--primary-neon)
  ) border-box;
  -webkit-mask:
      linear-gradient(#fff 0 0) padding-box, 
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.services-description::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--accent-metallic);
  border-radius: 12px;
  z-index: -1;
}.services-description h3 {
    background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

/* New connection lines styles */
.services-connections {
    position: absolute;
    top: -60px; ` Adjust based on gap to description box */
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-around;
    padding: 0 15%;
}

.service-connection {
    position: relative;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-neon), var(--secondary-neon));
}

/* Add responsive adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;  /* Stack on mobile */
    }

    .services-connections {
        display: none;  /* Hide lines on mobile */
    }
}

/* Ensure About Us title matches service card titles */
.services-description h3 {
    background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    font-size: 1.3rem;  /* Match service card title size */
    font-weight: 600;   /* Match service card title weight */
    text-align: center; /* Match service card title alignment */
}

/* Remove any potential conflicting styles */
.service-card h3,
.services-description h3 {
    background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Remove the previous description-title class as it's no longer needed */
.description-title {
    display: none;
}

/* Add styles for service numbers */
.service-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--bg-dark);
    z-index: 2;
}

/* New approach for connection lines using SVG */
.services .container {
    position: relative;
}

.services .container::after {
    content: '';
    position: absolute;
    top: 280px; /* Adjust based on your spacing */
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 16.67%,0 L 16.67%,100%' stroke='url(%23gradient)' stroke-width='2'/%3E%3Cpath d='M 50%,0 L 50%,100%' stroke='url(%23gradient)' stroke-width='2'/%3E%3Cpath d='M 83.33%,0 L 83.33%,100%' stroke='url(%23gradient)' stroke-width='2'/%3E%3ClinearGradient id='gradient' x1='0%' y1='0%' x2='0%' y2='100%'%3E%3Cstop offset='0%' style='stop-color:%23ff6b2b'/%3E%3Cstop offset='100%' style='stop-color:%23ffd700'/%3E%3C/linearGradient%3E%3C/svg%3E");
    background-repeat: no-repeat;
    pointer-events: none;
}

/* Adjust service card margins to accommodate numbers */
.service-card {
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services .container::after {
        display: none;
    }

    .service-number {
        top: -10px;
        left: -10px;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/* Ensure consistent text size for paragraphs in different sections */
.service-card p,
.how-it-works-step p,
.contact form p {
  font-size: 1rem; /* Match body text size */
  line-height: 1.6; /* Ensure consistent line height */
}

.services-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    white-space: pre-line;
    text-align: left;
}

.services-options {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

.service-option {
    max-width: 45%;
    background: var(--accent-metallic);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service-option h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-option p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}