body {
  font-family: 'Alexandria', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
  direction: rtl;
}
html {
  scroll-behavior: smooth;
}

.currency {
    order: 2;
}
.price-row {
    display: inline-flex;
    flex-direction: row;
        align-self: anchor-center;
}
.currency svg {
  width: 28px;
  height: 28px;
    color: #d10f0f;
  opacity: 0.8;
}
.pos {
  margin: 30px auto;
  padding: 60px 30px;
  color: white;
  border-radius: 10px;
  text-align: center;
}
.pos-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Media query للموبايل */
@media (max-width: 600px) {
  .pos-img {
    width: 90%;
  }

  .pos {
    padding: 30px 15px;
  }
}

/* Lightbox الخلفية */
.lightbox {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.lightbox .close {
  position: absolute;
  top: 20px;
  left: 30px;
  color: white;
  font-size: 2.5em;
  cursor: pointer;
  font-weight: bold;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}

.hero {
  background-color: #e1e1e1;
  text-align: center;
  padding: 50px 0;
}

.hero h1 {
  color: #20232c;
  font-size: 2.5em;
}

.hero .main-img {
    border-radius: 30px;
  margin: 50px 0;
}

.btn {
  background-color: #63a0f1;
  color: white;
  padding: 12px 25px;
  border: none;
  text-decoration: none;
  font-size: 1.2em;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #457ed1;
}

.features ul {
  list-style: none;
  padding: 0;
  font-size: 1.1em;
}
.footer a{
    color:beige;

    
}
.features li {
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

.images img {
  width: 90%;
  max-width: 200px;
  display: block;
  margin: 20px auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* ظل خفيف */
}
.images img:hover {
  transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* ظل خفيف */
}
.large-img {
  max-width: 90%;
  height: auto;
}
.pricing {
  text-align: center;
  background-color: #f0f0f0;
  padding: 40px 0;
}
.tagline {
  font-size: 1.2em;
  color: #444;
  margin: 20px auto;
  line-height: 1.8;
  max-width: 700px;
}
.discounted {
    order: 1;
  color: #d10f0f;
  font-size: 1.5em;
  font-weight: bold;
}

.footer {
  background-color: #20232c;;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.footer .social-icons img {
  width: 30px;
  margin: 0 10px;
  vertical-align: middle;
}
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
