/* إعدادات عامة */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;   
}
body {
  font-family: 'Arial', sans-serif;
  scroll-behavior: smooth;
  background-color: white;
  
}
/***********************كل العنواوين *****************************/
.title_color {
  background-color: white;
  height: 80px;
  margin-top: 50px;
  color: #BCB338;
  font-size: xx-large;
  font-weight: bolder;

  /* ✨ الحركة */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
}
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/****************************************************/



/**************** general customization ************************************/


.h2_hero{
  font-size: 3rem;
    color: #A5AA03;
    border-bottom: 4px solid #f3fb09;
    padding-bottom: 10px;
    font-weight: bold;
    text-align: center;
}

.slider-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.main-color{
  color:#A5AA03;
}

.title-hero{
  height: 300px;
}
.title-hero-text{
  z-index: 3;
  font-family: 26px;
}

.slider_hero_title{
font-size: 26px;
}
.slider_hero_text{
font-size: 18;
}