.slider-container {
  /* max-width: 1200px; */
  width: 100%;
  overflow: hidden;
  /* border-radius: 20px; */
  /* box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3); */
  position: relative;
}

.slider {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  height: 500px;
}

.slide {
  min-width: 100%;
  display: flex;
  position: relative;
  /* background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); */
  overflow: hidden;
}

.text-content {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-left: 40px !important;
}

.image-content {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.slide:hover .image-content img {
  transform: scale(1.05);
}

.shape-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  right: 0;
  z-index: 3;
  pointer-events: none;
}

.shape-divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100px;
  background: inherit;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;

  line-height: 1.2;
  color: black;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 90%;
  color: gray;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  background: #fff;
  color: #333;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 10;
}

.slider-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0 8px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #fff;
  transform: scale(1.3);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

.nav-btn i {
  font-size: 24px;
  color: #fff;
}

/* Decorative elements */
.decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.deco-item {
  position: absolute;
  width: auto;
  animation: float 6s infinite ease-in-out;
}

.star-02 {
  top: 15%;
  left: 5%;
  width: 40px;
  animation-delay: 0.5s;
}

.star-03 {
  top: 25%;
  right: 10%;
  width: 35px;
  animation-delay: 1s;
}

.star-04 {
  bottom: 20%;
  left: 8%;
  width: 50px;
  animation-delay: 1.5s;
}

.star-05 {
  bottom: 30%;
  right: 7%;
  width: 45px;
  animation-delay: 2s;
}

.star-06 {
  top: 40%;
  right: 20%;
  width: 60px;
  animation-delay: 2.5s;
}

.star-07 {
  top: 10%;
  left: 20%;
  width: 40px;
  animation-delay: 3s;
}

.star-08 {
  bottom: 15%;
  right: 25%;
  width: 55px;
  animation-delay: 3.5s;
}

.star-09 {
  top: 50%;
  left: 15%;
  width: 45px;
  animation-delay: 4s;
}

.star-10 {
  bottom: 40%;
  left: 25%;
  width: 50px;
  animation-delay: 4.5s;
}

.star-11 {
  top: 20%;
  right: 30%;
  width: 70px;
  opacity: 0.7;
  animation-delay: 5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* Responsive design */
@media (max-width: 992px) {
  .slider {
    height: 400px;
  }

  .title {
    font-size: 2.5rem;
  }

  .text-content {
    padding: 40px;
  }

  .deco-item {
    width: 30px !important;
  }

  .star-11 {
    width: 50px !important;
  }
}

@media (max-width: 768px) {
  .slide {
    flex-direction: column;
  }

  .text-content,
  .image-content {
    flex: none;
    width: 100%;
  }

  .text-content {
    height: 45%;
    padding: 30px;
  }

  .image-content {
    height: 55%;
  }

  .shape-divider {
    display: none;
  }

  .title {
    font-size: 2rem;
  }

  .description {
    font-size: 1rem;
  }

  .deco-item {
    width: 25px !important;
  }

  .star-11 {
    width: 40px !important;
  }
}

@media (max-width: 576px) {
  .slider {
    height: 500px;
  }

  .text-content {
    height: 50%;
  }

  .image-content {
    height: 50%;
  }

  .title {
    font-size: 1.8rem;
  }

  .nav-btn {
    width: 50px;
    height: 50px;
  }

  .prev {
    left: 15px;
  }

  .next {
    right: 15px;
  }

  .deco-item {
    width: 20px !important;
  }

  .star-11 {
    width: 30px !important;
  }
}
