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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

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

.carousel h2 {
  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);
}

.carousel-dots {
  margin-top: 20px;
  padding-top: 20px;
  padding-left: 10px;
  display: flex;
  gap: 10px;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.carousel-dots .dot.active {
  background: var(--purple-color);
}

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

.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) {
  .banner {
    flex-direction: column;
    text-align: center;
  }

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

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

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

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

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