body{
  height: 30000px;
}

.hero {
  background-image: url("../../public/img/hero.jpg"); /* عدّل حسب مكان الملف */
  height: 50vh;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: -3;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  
}
.hero:after{
  content: "";
  width: 100%;
  height: 100%;
  background: #42445A80;
  display: flex;
  position: absolute;
  z-index: -1;
  top: 0;left: 0;
  right: 0;bottom: 0;
  backdrop-filter: blur(4px);
}


.hero h1{
  color: white;
  font-weight: 800;
  font-size: 26px;
}
.hero p{
  font-size: 12px;
  width: 80%;
  margin: 4px 0 42px 0;
  color: #CACACA;
}
.hero a{
  
}