.elementor-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.elementor-slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.elementor-slider-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
}

.elementor-slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.elementor-slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.elementor-slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.elementor-slider-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 20px;
  margin: 0 auto;
  flex-direction: column;
}

.elementor-slider-content-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 50px;
  height: 100%;
}

.elementor-slider-content-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.elementor-slider-content-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-bottom: 50px;
  height: 100%;
}

.elementor-slider-content-align-left {
  text-align: left;
  align-items: flex-start;
}

.elementor-slider-content-align-center {
  text-align: center;
  align-items: center;
}

.elementor-slider-content-align-right {
  text-align: right;
  align-items: flex-end;
}

.elementor-slider-badge {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
  transition: all 0.3s ease;
  background-color: transparent !important;
  padding: 0.2rem 0.6rem 0.2rem 0.6rem !important;
  background-image: linear-gradient(135deg, var(--e-global-color-secondary) 0%, var(--e-global-color-primary) 100%) !important;
  border-radius: 999px 999px 999px 999px !important;
}

.elementor-slider-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.elementor-slider-subtitle {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.elementor-slider-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  transition: all 0.3s ease;
}

.elementor-slider-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  transition: all 0.3s ease;
}

.elementor-slider-primary-button,
.elementor-slider-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.elementor-slider-primary-button {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #ffffff;
}

.elementor-slider-primary-button:hover {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}

.elementor-slider-secondary-button {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.elementor-slider-secondary-button:hover {
  background-color: #ffffff;
  color: #000000;
}

.elementor-slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 2;
}

.elementor-slider-arrow {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 20px;
  transition: all 0.3s ease;
}

.elementor-slider-arrow:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.elementor-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 2;
  gap: 10px;
}

.elementor-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.elementor-slider-dot.active {
  background-color: #fff;
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .elementor-slider-title {
    font-size: 32px;
  }

  .elementor-slider-subtitle {
    font-size: 24px;
  }

  .elementor-slider-description {
    font-size: 16px;
  }

  .elementor-slider-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .elementor-slider-primary-button,
  .elementor-slider-secondary-button {
    width: 100%;
  }
}
