.about-section {
    padding: 10px 0;
 
}
.container-about {
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-content-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    transition: transform 0.3s ease-in-out;
}
.about-content-wrapper:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 10px rgba(255, 255, 255, 0.7);
}
.about-content {
    flex: 1;
}
.about-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.about-images img {
    width: 250px;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.about-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.features {
    margin: 10px 0;
}
.feature {
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.ulfeatures  {
    list-style-type: none; 
    padding: 5px; 
    margin: 5px; 
    font-size: 18px;
}


/* تحسين التصميم للشاشات الصغيرة */
@media (max-width: 768px) {
    .about-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .about-images {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .about-images img {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .about-images img {
        width: 90%;
    }
    .feature {
        font-size: 14px;
    }
}


.slideshow-container {
    width: 100%;
    position: relative;
    background:  #1d3e6e;
    direction: rtl; 
  }
  
  .mySlides {
    display: none;
    padding: 80px;
    text-align: center;
  }

  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; 
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 24px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    user-select: none;
    z-index: 10;
  }
  
  .next {
    position: absolute;
    right: 10px;

  }
  
  .prev {
    left: 10px;
}

  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
    color: white;
  }
  
  .dot-container {
      text-align: center;
      padding: 20px;
      background: #EAEAEA;
  }
  
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  .author {
    color: #ffffff;
}