
body {
  direction: ltr;
  text-align: right;
  font-family: 'Cairo', sans-serif;
}

.container{
    padding-inline:10px ;

}

/* Hero Section */
.hero{
    background-color: rgb(236, 237, 238);
    padding: 20px 20px 20px 20px ;

}
.hero .container {
    font-weight: bold;
    text-align: center;
    /* margin-left: -27%; */
}

.hero img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.hero .container .logo1  {
    width: 150px;
    height: auto;
    /* margin-left: -85%; */
}

/* Features Section */

.features {
  text-align: center;
  padding: 50px 20px;
  padding: 70px;
}

.features h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.features  p {
  font-size: 20px;
  margin-bottom: 25px;
  color: #333;
}

/* المميزات أفقياً */
.feature-list {
    
  list-style: none;
  padding: 0;
  margin: 0 auto 25px auto;
  display: flex;
  flex-wrap: wrap;       /* يسمح باللف على الموبايل */
  gap: 15px;             /* مسافة بين العناصر */
  justify-content: center;
}

.feature-list li {
  background-color: rgba(240, 238, 238, 0.85); /* أبيض شفاف شويه */
  padding: 6px;
  border-radius: 8px;
  font-size: 16px;
  display: flex;
  align-items: center;
  color: #333;
}

/* الصورة */
.features  img {
 width: 100%;       /* عرض كامل الشاشة */
  height: 600px;      /* يحافظ على نسب الصورة */
  display: block;    /* يضمن إنها وسط الصفحة */
  object-fit: contain;
  margin: 0;         /* يشيل أي مسافات فوق وتحت */
  border-radius: 0;  /* لو عايز بدون حواف */
  justify-content: center;
}

@media (max-width:768px) {
    .features  {
        padding: 50px 10px;
    }
    .features img {
        height: 200px;
    }
}

/* Testimonials Section  */

.testimonials {
    text-align: center;
    font-weight: bold;
}

.testimonials .container h2 {
    font-size:40px;
    font-weight: bold;
} 

.testimonial .container p {
    font-size: 20px;
}

.image{
    border-radius: 5%;
}
img{
    max-width:100%;
}


.final-cta {
    text-align: center;
    border-top: 10px solid rgb(235, 235, 231);
    padding: 10px;
    margin-top: 20px;
    background-color: rgb(188, 190, 192);
}

button.cta-button {
    padding: 10px 20px;
    border: 0;
    border-radius: 5px;
    font-weight: 900;
    transition: 0.3s;
    cursor: pointer;
}
.final-cta .cta-button:hover {
    color: azure;
    background-color: black;
}





/* small */

/* بديل أفضل لوسائط الاستعلام إذا أردت الحفاظ عليها */
@media (min-width:768px) {
    .container {
        max-width: 750px;
        margin: 0 auto;
    }
}

@media (min-width:992px) {
    .container {
        max-width: 970px;
        margin: 0 auto;
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1170px;
        margin: 0 auto;
    }
}