:root {
  --clr-highlight-green: #098954;
}

.intelligent-deployment-section {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 60px 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #ffffff, #e6f0ff, #cce0ff, #99c2ff);
  animation: calmBlueWhite 15s ease infinite;
}
@keyframes calmBlueWhite {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.deployment-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.intelligent-deployment-section .deployment-title h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 4.5rem;
  font-weight: bolder;
  color: #333;
  letter-spacing: 1.5px;
  line-height: 1.2;
  margin-bottom: 40px;
}

.deployment-description {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.deployment-description p {
  font-size: 2rem;
  color: #999;
  font-weight: 400;
  margin-bottom: 10px;
}

#deployment-note {
  font-size: 1.2rem;
  color: #666;
  margin-top: 20px;
}

.highlight-devloyment {
  color: #222;
}

.deployment-content {
  display: flex;
  width: 100%;
  max-width: 1024px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.deployment-features-column {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  height: 100%;
  justify-content: flex-start;
  text-align: left;
}

.deployment-features-list {
  width: 100%;
  position: relative;
  padding-left: 30px;
  max-width: 400px;
}

.deployment-feature-item {
  margin-bottom: 15px;
  min-height: 100px;
}

.deployment-feature-item h3 button {
  font-size: 2rem;
  font-weight: 600;
}

.feature-trigger{
  background-color:transparent;
}

.feature-progress {
  position: relative;
  height: auto;
  left: -30px;
  top: 0;
}

.progress-bullet {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--clr-highlight-green);
  background: white;
}

.progress-bullet::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--clr-highlight-green);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.progress-track {
  position: absolute;
  left: 10px;
  top: 12px;
  width: 2px;
  height: 105px;
  background-image: repeating-linear-gradient(
    to bottom,
    #ccc,
    #ccc 4px,
    transparent 4px,
    transparent 8px
  );
  z-index: 0;
}

.deployment-feature-item:last-child .progress-bar {
  display: none;
}

.deployment-feature-item:last-child .progress-track {
  display: none;
}

.progress-bar {
  position: absolute;
  top: 10px;
  bottom: 0;
  left: 10px;
  height: 0;
  width: 2px;
  background: var(--clr-highlight-green);
  transform-origin: top;
}

.deployment-feature-item.active .progress-bullet {
  border-color: transparent;
  background-color: transparent;
}

.deployment-feature-item.active .feature-label {
  color: var(--clr-highlight-green);
}

.feature-description {
  padding-left: 10px;
  padding-top: 10px;
  font-size: 1.5rem;
}

.deployment-visual-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
}
.slider-slide {
  display: none;
}
.slider-slide.active {
  display: block;
}

.slider-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 50px;
}

.slider-wrapper video {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
}

@media (max-width: 468px) {
  .intelligent-deployment-section .deployment-title h2 {
    font-size: 2.2rem;
  }

  .deployment-description p {
    fon-size: 1.6rem;
  }

  .deployment-feature-item h3 button {
    font-size: 1.8rem;
  }

  .deployment-content {
    flex-direction: column;
  }
}
