body,
html {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  color: white;
  overflow-x: hidden;
  background-color: #0a192f;
}

.container {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/what-we-do-bg.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.3;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom right,
    rgba(10, 25, 47, 0.7),
    rgba(0, 0, 0, 0.7)
  );
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 2rem;
}

.logo {
  width: auto;
  height: 100px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
}

.back-link {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  font-size: 1.25rem;
  color: #93c5fd;
  text-decoration: none;
  transition: color 0.3s ease;
  z-index: 10;
}

.back-link:hover {
  color: #60a5fa;
}

h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 3.75rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #93c5fd;
  text-shadow: 0 0 10px rgba(147, 197, 253, 0.5);
}

.process-overview {
  background-color: rgba(30, 58, 138, 0.2);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-overview:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.process-overview h2 {
  font-family: "Orbitron", sans-serif;
  color: #93c5fd;
  margin-bottom: 1rem;
}

.process-timeline {
  position: relative;
  margin-bottom: 2rem;
  padding: 4rem 0;
}

.timeline-bar {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #233554;
  transform: translateY(-50%);
}

.progress-bar {
  position: absolute;
  top: 50%;
  left: 0;
  height: 6px;
  background-color: #93c5fd;
  width: 0;
  transition: width 0.5s ease;
  transform: translateY(-50%);
}

.timeline-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: #233554;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-bottom: 0.5rem;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 2;
}

.step.active .step-number {
  background-color: #93c5fd;
  color: #0a192f;
}

.step-label {
  font-size: 0.875rem;
  text-align: center;
  transition: color 0.3s ease;
}

.step.active .step-label {
  color: #93c5fd;
}

.step-details {
  background-color: rgba(30, 58, 138, 0.2);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-details:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.step-details h3 {
  color: #93c5fd;
  margin-bottom: 1rem;
}

.cost-note {
  color: #10b981;
  font-weight: bold;
}

.process-note {
  background-color: rgba(30, 58, 138, 0.2);
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.process-note p {
  color: #ef4444;
  font-weight: bold;
}

@media (max-width: 768px) {
  .content {
    padding: 1rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .logo {
    height: 40px;
  }

  .back-link {
    font-size: 1rem;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.875rem;
  }

  .step-label {
    font-size: 0.75rem;
  }

  .timeline-steps {
    overflow-x: auto;
    padding-bottom: 1rem;
  }

  .timeline-bar,
  .progress-bar {
    bottom: 0;
    top: auto;
    transform: none;
  }
}
