.classes-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 15%;
  gap: 40px;
  padding-bottom: 0px;
}

.classes-banner-left {
  flex: 1;
  position: relative;
}

.svg-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
}

#path-svg {
  width: 100%;
  height: auto;
}

#path-png {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.carousel-item {
  display: none;
  animation: fade 0.6s ease;
}

.carousel-item.active {
  display: block;
}

.carousel h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--purple-color);
}

.carousel p {
  font-size: 18px;
  color: var(--text-grey);
  margin-bottom: 20px;
}

.carousel-btn {
  display: inline-block;
  background: var(--orange-color);
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 600;
  color: black;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.classes-banner-right {
  flex: 1;
  text-align: right;
}

.classes-banner-right img {
  width: 100%;
  max-width: 500px;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .classes-banner {
    flex-direction: column;
    text-align: center;
  }

  .classes-banner-right {
    text-align: center;
  }

  .classes-banner-right img {
    max-width: 350px;
  }

  .carousel h1 {
    font-size: 32px;
  }

  .carousel-dots {
    padding-left: 0px;
    justify-content: center;
  }

  .classes-banner {
    padding: 40px 10%;
  }
}

.banner-video-electronics {
  width: min(400px, 100vw);
  height: 500px;
  object-fit: cover;
}
