
body {
    font-family: 'Tajawal', sans-serif;
    background-color: #f8f9fa;
  }

  .navbar-brand img {
    height: 45px;
  }
  .logo-img {
    height: 45px;
}
  .nav-link {
    color: #0d6efd !important;
    font-weight: 500;
  }

  .nav-link:hover {
    text-decoration: underline;
  }

  .nav-link-custom {
    position: relative;
    color: #0d6efd !important;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
  }

  .nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 2px;
    width: 0;
    background-color: #0d6efd;
    transition: width 0.3s ease;
  }

  .nav-link-custom:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }

  .nav-link-custom:hover {
    color: #0a58ca !important;
  }

  @media (max-width: 991px) {
    .navbar-nav {
      gap: 0.5rem;
    }
  }






  /*   تنسيقات الشرائح */

  .content-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }

  .image-box img {
    transition: transform 0.3s ease-in-out;
  }
  .custom-img-style {
    max-height: 420px;
    object-fit: cover;
}
.carousel-image {
  max-height: 420px;
  object-fit: cover;
}
  .image-box:hover img {
    transform: scale(1.03);
  }
  .content-box {
    direction: rtl !important;
    text-align: right !important;
  }

  .content-box ul {
    padding-right: 1.2rem;
  }

  .content-box li {
    text-align: right !important;
    direction: rtl !important;
  }




  /* العروض */
  .carousel-number-indicator {
    width: 40px;
    height: 40px;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
  }

  .close-btn-custom {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    transition: all 0.2s ease-in-out;
  }

  .close-btn-custom:hover {
    background-color: #f8d7da;
    border-color: #f5c2c7;
    color: #842029;
  }

  .modal-header {
    flex-direction: row-reverse; /* يجعل الزر على اليسار في RTL */
  }




  /* الاراء */
  .reviews-carousel::-webkit-scrollbar {
    height: 6px;
  }

  .reviews-carousel::-webkit-scrollbar-thumb {
    background-color: #adb5bd;
    border-radius: 3px;
  }
  
  .reviews-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1rem;
    padding: 1rem 0;
  }

  .review-card-custom {
    min-width: 280px;
    max-width: 300px;
    flex-shrink: 0;
    background-color: #f9f9f9;
    border-radius: 1rem;
  }

  .star-rating i {
    font-size: 1.1rem;
  }

  .reviews-section h2 {
    text-align: center;
    margin-bottom: 1rem;
  }

  .show-add-review-btn {
    display: block;
    margin: 0 auto 1.5rem;
  }

  .reviews-carousel::-webkit-scrollbar {
    height: 6px;
  }

  .reviews-carousel::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
  }