@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Noto+Kufi+Arabic:wght@100..900&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
* {
  scroll-behavior: smooth;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  width: 100%;
  font-family: "Tajawal", sans-serif;
}
.contenar {
  width: 90%;
  margin: auto;
}
/* ****************************************************************************** */
.main-header {
  padding: 10px 0;
  text-align: center;
  position: absolute;
  z-index: 1;
}
.main-header .logo {
  width: 15%;
}
@media (max-width: 768px) {
  .contenar {
    width: 95%;
  }
  .main-header .logo {
    width: 50%;
  }
}
/* ****************************************************************************** */
.hero {
  position: relative;
  background-image: url("image/Back.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 97vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bottom-images {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hero-img {
  width: 50%;
  height: auto;
  display: block;
}
.hero-img.left {
  object-fit: cover;
}
.hero-img.right {
  object-fit: cover;
}
.hero h1 {
  font-size: 58px;
  font-weight: bold;
}
.description1 {
  max-width: 700px;
  font-size: 20px;
  margin: 0 auto 30px;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.btn {
  background: #fceb01;
  color: black;
  width: 160px;
  height: 50px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseAnim 1.5s infinite;
  transition: background 0.3s;
}
.btn:hover {
  background: #ffffff;
  color: #fceb01;
}
.btn i {
  margin-left: 10px;
}
.pulse.delay-1 {
  animation-delay: 0.5s;
}
.pulse.delay-2 {
  animation-delay: 1s;
}
@keyframes pulseAnim {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(237, 235, 107, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(237, 112, 107, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(237, 112, 107, 0);
  }
}
@media (max-width: 768px) {
  .hero-content {
    height: 98vh;
  }
  .hero h1 {
    font-size: 26px;
  }
  .description1 {
    font-size: 14px;
  }
  .description2 {
    font-size: 12px;
  }
  .btn {
    font-size: 14px;
    padding: 10px 20px;
  }
  .hero {
  background-image: url("image/Back2.png");
}
}
/* ****************************************************************************** */
/* .services {
  padding: 80px 0;
  text-align: center;
  background: #fffbf2;
}
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.vertical-line {
  width: 3px;
  height: 60px;
  background-color: #d8ca01;
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: 25px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.services-logo {
  width: 110px;
  margin-bottom: 10px;
}
.services-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.service-box {
  flex: 1 1 300px;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}
.service-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ed0101;
}
.service-box p {
  line-height: 1.7;
  font-size: 16px;
}

.service-box ul {
  list-style: none;
}
.service-box ul li i {
  margin-left: 10px;
  color: #d8ca01;
}
.extra-info {
  margin-top: 25px;
  font-weight: bold;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.extra-info i {
  color: #ed0101;
}
.image-box img {
  width: 70%;
  border-radius: 12px;
}
.services-button {
  margin-top: 20px;
}
.margin {
  margin: auto;
}
.btn2 {
  background: #fceb01;
  color: black;
  width: 160px;
  height: 50px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseAnim 1.5s infinite;
  transition: background 0.3s;
  margin: auto;
}
.btn2:hover {
  background: #ffffff;
  color: #fceb01;
}
.btn2 i {
  margin-left: 10px;
}
.pulse2.delay-1 {
  animation-delay: 0.5s;
}
.pulse2.delay-2 {
  animation-delay: 1s;
}
@keyframes pulseAnim {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(237, 235, 107, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(237, 112, 107, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(237, 112, 107, 0);
  }
}
@media (max-width: 768px) {
  .services {
    padding: 60px 0px;
  }
  .services-content {
    flex-direction: column-reverse;
    align-items: center;
  }
  .service-box {
    flex: 1 1 0;
    padding: 0px;
    width: 100%;
  }
  .service-box ul {
    text-align: end;
  }
  .btn2 {
    font-size: 14px;
    padding: 10px 20px;
  }
  .service-box h3 {
    font-size: 18px;
  }
  .service-box p {
    font-size: 14px;
  }
} */
 .btn2 {
  background: #fceb01;
  color: black;
  width: 160px;
  height: 50px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseAnim 1.5s infinite;
  transition: background 0.3s;
  margin: auto;
}
.btn2:hover {
  background: #ffffff;
  color: #fceb01;
}
.btn2 i {
  margin-left: 10px;
}
.pulse2.delay-1 {
  animation-delay: 0.5s;
}
.pulse2.delay-2 {
  animation-delay: 1s;
}
@keyframes pulseAnim {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(237, 235, 107, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(237, 112, 107, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(237, 112, 107, 0);
  }
}
/* ****************************************************************************** */
.offers-section {
  padding: 80px 0px;
  text-align: center;
  background-color: #fffbf2;
}
.offers-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}
.offers-header .vertical-line {
  width: 3px;
  height: 80px;
  background-color: #d8ca01;
  margin-bottom: 10px;
}
.offers-header h2 {
  color: #ed0101;
  font-size: 28px;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.offers-gallery {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.offers-gallery img {
  width: 23%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.322);
  transition: transform 0.3s ease;
}
.offers-gallery img:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .offers-section {
    padding: 60px 0px;
  }
  .offers-header h2 {
    font-size: 15px;
  }
  .offers-header {
    margin-bottom: 20px;
  }
  .offers-gallery {
    flex-wrap: wrap;
    gap: 10px 10px;
  }
  .offers-gallery img {
    width: 45%;
  }
}
/* ****************************************************************************** */
.contact-section {
  padding: 80px 0px 0px 0px;
  text-align: center;
  background-color: #fffbf2;
}
.contact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.contact-header h2 {
  font-size: 28px;
  color: #ed0101;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.social-boxes {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.social-card {
  width: 30%;
  padding-top: 10px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.social-card img {
  width: 20%;
}
.social-card:hover {
  transform: scale(1.05);
}
.contact-button {
  margin-bottom: 30px;
}
.map-container {
  width: 100%;
}
.map-container iframe {
  border-radius: 15px;
  width: 100%;
  height: 300px;
}

@media (max-width: 768px) {
  .contact-header h2 {
    font-size: 20px;
  }
  .social-card {
    width: 100%;
  }
  .contact-section {
    padding: 60px 0px 0px 0px;
  }
  .map-container iframe {
    height: 200px;
  }
}
/* ****************************************************************************** */
.site-footer {
  background-color: #ed0101;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 16px;
}
.site-footer p {
  margin: 0;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .site-footer {
    font-size: 14px;
  }
}
/* ****************************************************************************** */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #fceb01;
  color: black;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

#backToTop:hover {
  background-color: #ed0101;
  transform: scale(1.1);
}
/* ****************************************************************************** */
    /* خلفية البوب أب */
    .overlay {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
    }

    /* الصورة نفسها */
    .overlay img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 10px;
    }

    /* زر إغلاق */
    .close-btn {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 30px;
      color: white;
      cursor: pointer;
    }