


.hero {
    text-align: center;
    padding: 50px 20px;
    background-image: url('uploads/1749695715_hero.jpg');
    background-size: cover;
    background-position: center;
    font-family: 'Noto Kufi Arabic', sans-serif;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
	font-family: "Playpen Sans Arabic", cursive;
	font-weight: 500;
	color: orange;

}

.hero p {
    font-size: 18px;
    color: #fff;
}

.cta a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background-color: #c7d043;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.cta a:hover {
    opacity: 0.85;
}

/* === Hero Slider === */
.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0px 5px 5px 0px lightgray;
  margin-bottom: 30px;
  height: 300px;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.hero-slide .cta a {
  background-color: #fc8a2b;
  color: black;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
}
.hero-slide .cta a:hover {
  background-color: #fc8a2b;
}
.cta.hero-btn-center {
    text-align: center;
}

.cta.hero-btn-right {
    text-align: right;
}

.cta.hero-btn-left {
    text-align: left;
}
