body {
  font-family: "IBM Plex Sans Arabic", serif;
  font-weight: 500;
  font-style: normal;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  text-align: center;
}
.container {
  width: 100%;
  max-width: 80%;
  margin: auto;
  background: white;
  padding: 0px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.header {
  text-align: center;
  padding: 20px;
}
.header img {
  width: 200px;
}
.section {
  margin: 20px 0;
  padding: 20px;
  position: relative;
}

.section h2 {
  letter-spacing: 1px;
  word-spacing: 5px;
  color: #048f91;
}
.section p {
  font-size: 19px;
  color: #555;
  max-width: 900px;
}
.button {
  display: inline-block;
  background: #048f91;
  color: white;
  padding: 10px 40px;
  text-decoration: none;
  font-size: 22px;
  border-radius: 5px;
}
.info-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
  padding: 20px;
  background-color: #f0f5f3;
  border-radius: 10px;
  margin: 20px 0;
}
.info-box {
  background-color: #f3f3f3;
  padding: 20px;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: inline-block;
  width: 250px;
  margin: 10px;
}
.info-box img {
  display: block;
  margin: 0 auto 10px;
}
.info-box p {
  font-size: 16px;
  color: #048f91;
}
.footer {
  background-image: url("./img/Screenshot_2025-02-27_152846-removebg-preview.png");
  background-size: cover;
  color: white;
  padding: 10px;
  font-size: 16px;
}
.div-video {
  width: 100%;
}
.div-video iframe {
  width: 700px;
  height: 350px;
}
.highlight-text {
  color: #048f91;
  font-weight: bold;
  font-size: 25px;
  border: 2px solid orange;
  padding: 15px 20px;
}
.location-section {
  margin-top: 40px;
  padding: 20px;

  border-radius: 20px;
  display: inline-block;
}
.location-section p {
  margin: 5px 0;
}
.addressClass {
  display: flex;
  text-align: right;
  cursor: pointer;
}
.addressClass h3 {
  margin: 0px;
  color: #048f91;
  font-weight: bold;
}
.addressClass p {
  color: orange;
}
.popup {
  display: none;
  position: fixed;
  width: 55%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  max-width: 90%;
  max-height: 80%;
  overflow-y: scroll;
}
.popup img {
  width: 90%;
  height: auto;
  border-radius: 8px;
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: red;
  color: white;
  border: none;
  font-size: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 868px) {
  .div-video iframe {
    width: 100%;
    height: 300px;
  }
}

.social-icons {
  margin: 25px 10px;
}
.social-icons a {
  display: inline-block;
  margin: 0 2px;
  font-size: 18px;
  color: white;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #007bff;
}
.imgDiv {
  position: absolute;
  left: 30px;
  top: 30px;
}
.imgDiv img {
  width: 280px;
}
.rewards {
  width: 460px;
}
@media screen and (max-width: 1050px) {
  .imgDiv img {
    width: 220px;
  }
}
@media screen and (max-width: 930px) {
  .imgDiv img {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .container {
    width: 100%;
    max-width: 97%;
    padding: 0px;
  }
  p {
    font-size: 18px;
  }
  h2 {
    font-size: 20px;
  }
  .footerdiv {
    font-size: 15px;
    margin-top: 50px;
    margin-left: 26px;
  }
  .footerdiv p {
    font-size: 14px;
  }
  .footer {
    margin-top: 20px;
    background-size: 100% 150%;
    background-repeat: no-repeat;
  }
  .social-icons {
    margin: 18px 10px;
  }
}
.footerdiv {
  margin-top: 20px;
}

@media screen and (max-width: 578px) {
  .rewards {
    width: 340px;
    margin-left: -15px;
  }
}
hr {
    width: 90%; /* يجعل الخط أقصر من عرض الصفحة */
    height: 2px; /* سمك الخط */
    background-color: orange; /* لون الخلفية */
    border: none; /* إزالة الحدود الافتراضية */
}