.technology {
  background: linear-gradient(135deg, #00B330 0%, rgba(0, 0, 0, 0.4) 100%),
    url('../images/LHoDozDQkL.png');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #ffffff;
  position: relative;
}

.technology-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.tech-circles {
  position: relative;
  width: 437px;
  height: 437px;
}

.tech-circle {
  position: absolute;
  width: 157px;
  height: 157px;
  border-radius: 50%;
  background: radial-gradient(circle,
      #D2FF7E 0%,
      #52FF78 73%,
      #D3FFDD 100%);
  border: 4px solid #60EE7F;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.tech-circle:hover {
  transform: scale(1.1);
}

.tech-circle-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.tech-circle-2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.tech-circle-3 {
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
}

.tech-circle-4 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.tech-circle img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.tech-descriptions {
  position: absolute;
  width: 100%;
  height: 100%;
}

.tech-desc {
  position: absolute;
  width: 310px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-desc.active {
  opacity: 1;
}

.tech-desc-1 {
  bottom: 100%;
  left: -155px;
  margin-bottom: 20px;
  text-align: right;
}

.tech-desc-2 {
  top: 50%;
  left: 100%;
  margin-left: 20px;
  transform: translateY(-50%);
}

.tech-desc-3 {
  top: 100%;
  right: -155px;
  margin-top: 20px;
}

.tech-desc-4 {
  top: 50%;
  right: 100%;
  margin-right: 20px;
  transform: translateY(-50%);
  text-align: right;
}

.tech-desc h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #60EE7F;
  margin-bottom: 12px;
}

.tech-desc p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  color: #ffffff;
}

.tech-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.leaf-icon {
  position: absolute;
  width: 48px;
  height: 48px;
}

.leaf-1 {
  top: 20%;
  left: 10%;
}

.leaf-2 {
  top: 20%;
  right: 10%;
}

.leaf-3 {
  bottom: 20%;
  right: 10%;
}

.video-section {
  margin-top: 80px;
  text-align: center;
}

.video-container {
  position: relative;
  display: inline-block;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.video-thumbnail {
  width: 660px;
  height: 350px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-caption {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 26.25px;
  color: #ffffff;
  margin-top: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .tech-circles {
    width: 300px;
    height: 300px;
  }

  .tech-circle {
    width: 120px;
    height: 120px;
  }

  .tech-desc {
    width: 250px;
  }

  .video-thumbnail {
    width: 500px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .technology-content {
    flex-direction: column;
    min-height: auto;
  }

  .tech-circles {
    width: 250px;
    height: 250px;
  }

  .tech-circle {
    width: 100px;
    height: 100px;
  }

  .tech-descriptions {
    position: static;
    margin-top: 40px;
  }

  .tech-desc {
    position: static;
    width: 100%;
    opacity: 1;
    margin-bottom: 24px;
    text-align: center;
  }

  .video-thumbnail {
    width: 100%;
    max-width: 500px;
    height: 250px;
  }

  .leaf-icon {
    display: none;
  }
}

@media (max-width: 480px) {
  .tech-circles {
    width: 200px;
    height: 200px;
  }

  .tech-circle {
    width: 80px;
    height: 80px;
  }

  .video-thumbnail {
    height: 200px;
  }
}