.installation {
  background-color: #10002d;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.installation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(209, 115, 238, 0.15) 0%, rgba(13, 13, 23, 0) 70%);
  z-index: 0;
}

.installation-container {
  max-width: 80vw;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.installation-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #fff 0%, #d173ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.installation-subtitle {
  font-size: 2rem;
  margin-bottom: 60px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.installation-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 4rem;
}

.installation-step {
  flex: 1;
  min-width: 12rem;
  max-width: 16rem;
  margin: 0 auto;
  position: relative;
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #1e1e2d;
  color: #d173ee;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  border: 2px solid rgba(209, 115, 238, 0.3);
}

.step-content {
  text-align: center;
}

.step-icon-container {
  position: relative;
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 8rem;
  height: 8rem;
  margin-bottom: 10px;
}

.step-icon-label {
  font-size: 1rem;
  font-weight: 600;
  color: #d173ee;
}

.step-status {
  position: absolute;
  top: -10px;
  right: -20px;
  background-color: #d173ee;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #fff;
}

.step-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.download-button {
  background-color: rgba(209, 115, 238, 0.2);
  color: #d173ee;
  border: 1px solid #d173ee;
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.download-button:hover {
  background-color: rgba(209, 115, 238, 0.3);
}

.installation-cta {
  margin-top: 40px;
}

.download-now-button {
  display: inline-block;
  background-color: #d173ee;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(209, 115, 238, 0.4);
}

.download-now-button:hover {
  background-color: #c55fe0;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(209, 115, 238, 0.5);
  color: #fff;
}

/* Responsive styles */
@media (max-width: 992px) {
  .installation-steps {
    justify-content: center;
  }
  
  .installation-step {
    flex: 0 0 45%;
  }
}

@media (max-width: 768px) {
  .installation-container {
    max-width: 90vw;
    width: 90vw;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
  }

  .installation {
    padding: 2rem 0px;
  }

  .installation-steps{
    gap: 5px;
    width: 80vw;
  }

  .installation-title {
    font-size: 36px;
  }
  
  .installation-subtitle {
    font-size: 18px;
    margin-bottom: 25px;
  }
  
  .installation-step {
    flex: 0 0 100%;
    max-width: 90vw;
    margin-bottom: 1rem;
  }

  .installation-steps{
    margin-bottom: 0px;
  }

  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin: 0 auto 0.5rem;
  }

  .step-content{
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .step-icon-container {
    margin: 0 auto 0.5rem;
  }

  .step-content-textBox{
    align-items: center;
  }

  .step-title{
    font-size: 1.6rem;
  }
}