* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
}

body {
  direction: rtl;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 500px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  max-width: 600px;
  padding: 2rem;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  margin: 0 auto;
  width: 400px;
  text-align: center;
}

.slide-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.slide-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.slide-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s;
}

.slide-button:hover {
  background-color: #2980b9;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background: white;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .hero-slider {
    height: 400px;
  }

  .slide-content {
    padding: 1rem;
    max-width: 90%;
  }

  .slide-title {
    font-size: 1.8rem;
  }

  .slide-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .slide-button {
    padding: 0.8rem 1.6rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-slider {
    height: 300px;
  }

  .slide-title {
    font-size: 1.5rem;
  }

  .slide-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

.top-bar {
  background-color: #2c80c5;
  height: 5px;
  width: 100%;
}
