  <style>
body, h1, h2, h3, h4, h5, h6, p, a, li, span, div, button {
  font-family: Tahoma, sans-serif;
}


    html, body {
      height: 100%;
      display: flex;
      /* align-items: center; */
      justify-content: space-evenly;
      flex-direction: column;
      /* width: 100vw; */
    }



    body {
      margin: 0;
      font-family: Tahoma, sans-serif;
      background-color: #f0f4f8;
      color: #333;
      direction: rtl;
      overflow-x: hidden;
      caret-color: transparent;
    }

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to left, #35599a, #314c86);
  padding: 10px 20px;
  flex-wrap: wrap; /* ✅ allow wrapping on small screens */
}

    header img {
      max-height: 80px;
    }

    main {
      max-width: 1200px;
      margin: auto 20px;
      padding: 20px 20px;
      flex: 1;
      align-self: center;
    }

    .intro-text {
      background-color: #eef1fb;
      padding: 25px;
      border-radius: 10px;
      margin-bottom: 25px;
      text-align: justify;
      line-height: 1.8;
    }

    .brand-highlight {
      background-color: #ffffff;
      padding: 10px 30px;
      border: 2px solid #d6e0f5;
      border-radius: 12px;
      text-align: center;
      margin-bottom: 50px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    section.product {
      display: flex;
      flex-direction: row-reverse;
      align-items: center;
      background: white;
      border-radius: 10px;
      padding: 30px;
      margin-bottom: 30px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      gap: 30px;
      flex-wrap: wrap;
    }

    section.product:nth-child(even) {
      flex-direction: row;
    }

    .product img {
      width: 100%;
      max-width: 350px;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
    }

    .product-info {
      flex: 1;
      min-width: 250px;
    }

    .product-info h2 {
      margin-top: 0;
      color: #204060;
      border-bottom: 2px solid #204060;
      padding-bottom: 5px;
    }

    .product-info ul {
      list-style: none;
      padding: 0;
    }

    .product-info ul li::before {
      content: "✔ ";
      color: #2e8b57;
    }



    footer {
      background: linear-gradient(to left, #35599a, #314c86);
      color: #fff;
      /* min-width: 90vw; */
      padding: 10px 20px;
      margin-top: 30px;
      position: relative;
      text-align: left;
      /* width: 100vw; */
      /* direction: rtl; */
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    footer div {
      margin-bottom: 5px;
    }

    @media (max-width: 768px) {
      section.product {
        flex-direction: column !important;
      }

      .product img {
        margin-bottom: 20px;
      }
    }
    
.header-button {
  background: white;
  color: #1e2a78;
  font-family: Tahoma, sans-serif;
  padding: 8px 16px;
  margin-left: 10px;
  margin-top: 5px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  header {
    flex-direction: column-reverse; /* ✅ logo on top, buttons below */
    align-items: center;
    gap: 10px;
  }

  .header-button {
    font-size: 0.9em;
    padding: 6px 12px;
    margin-left: 0;
  }
}


.slider-container {
  
  display: flex;
  width: 100vw;
  overflow: hidden;
  margin-bottom: 20px;
  min-height: min-content;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  flex-direction: row-reverse;
  height: min-content;

  position: relative;
  height: 50vh;


}

.slider-track {
  display: flex;
  width: 700vw;
  transition: transform 1s ease-in-out;
  

  height: min-content;
  flex-direction: row;
}

.slider-track img {
  width: 100vw;
  height: min-content;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  
}


/* Dots */
.slider-dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.slider-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: white;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s ease;
    user-select: none;           /* Prevent text selection */
  outline: none;               /* Remove focus ring */
    caret-color: transparent; /* ✅ Hides the blinking line */
      pointer-events: auto;
}

.slider-dots span:focus {
  outline: none;               /* Extra safety */
}

.slider-dots span.active {
  opacity: 1;
}

@media (max-width: 768px) {
  #prev,
  #next {
    display: none;
  }
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 30px;
  background-color: rgba(0,0,0,0.4);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.arrow:hover {
  background-color: rgba(0,0,0,0.7);
}

.arrow.left {
  right: 10px;
}

.arrow.right {
  left: 25px;
}

  </style>