/* ===========================================================
   🔥 MAIN CONTENT WRAPPER
   =========================================================== */
.content {
  margin-inline: 23%;
  margin-top: 40px;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.55)
  );
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow:
    0 0 20px rgba(0,0,0,0.25),
    0 8px 30px rgba(140,0,255,0.35);
}

/* ===========================================================
   🔥 ABOUT
   =========================================================== */
.about { color: white; }

.about-content {
  display: flex;
  align-items: center;
  gap: 25px;
}

.about-content img {
  width: 200px;
  border-radius: 20px;
  flex-shrink: 0;
}

.about-titel {
  flex: 1;
}

.about-titel h1 {
  font-size: 30px;
  color: hsl(273,100%,40%);
  -webkit-text-stroke: 0.25px #000;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.about-titel p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .about-content img {
    width: 150px;
    max-width: 80%;
  }

  .about-titel h1 {
    font-size: 24px;
    margin: 0 0 12px 0;
  }

  .about-titel p {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .about-content {
    gap: 12px;
  }

  .about-content img {
    width: 130px;
  }

  .about-titel h1 {
    font-size: 20px;
  }

  .about-titel p {
    font-size: 13px;
  }
}

/* ===========================================================
   🔥 SERVICES
   =========================================================== */
.Service {
  color: white;
  margin-top: 40px;
}

.service-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-content img {
  width: 200px;
  border-radius: 20px;
}

.service-content h1 {
  font-size: 60px;
  padding-left: 40px;
  color: hsl(273,100%,40%);
  -webkit-text-stroke: 0.25px #000;
}

/* ===========================================================
   🔥 NEON DIVIDER
   =========================================================== */
.neon-liquid-bar {
  width: 100%;
  height: 14px;
  margin: 50px 0;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    rgba(130,0,255,.7),
    rgba(200,80,255,1),
    rgba(130,0,255,.7)
  );
  box-shadow: 0 0 25px rgba(170,0,255,.9);
}

.neon-liquid-bar .liquid {
  position: absolute;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.35),
    rgba(255,255,255,.15),
    rgba(255,255,255,.35)
  );
  animation: liquidFlow 6s linear infinite;
}

@keyframes liquidFlow {
  to { transform: translateX(-50%); }
}

/* ===========================================================
   🔥 SERVICES GRID
   =========================================================== */
.photos {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 50px 80px;
  margin-top: 30px;
}

.photo-item { text-align: center; }

.photo-item img {
  width: 200px;
  border-radius: 12px;
  transition: .5s;
  box-shadow:
    0 0 20px rgba(0,0,0,.25),
    0 8px 30px rgba(140,0,255,.35);
}

.photo-item img:hover { transform: scale(1.1); }

.photo-item h3 {
  font-size: 18px;
  color: hsl(273,100%,40%);
}

/* ===========================================================
   🔥 POPUP
   =========================================================== */
/* الخلفية */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.55);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    pointer-events: none; /* الويب كله قابل للضغط */
    transition: opacity 0.5s ease;
    z-index: 999999;
}

/* لما يظهر البوب أب — امنع الضغط على كل الصفحة */
.popup-overlay.active {
    pointer-events: auto; /* overlay بس اللي بيتفاعل */
}

.popup-overlay.active * {
    pointer-events: auto !important; /* التفاعل بس لل popup content */
}

body.disable-actions *:not(.popup-overlay *){
    pointer-events: none !important;
}

/* المحتوى */
.popup-container {
    position: fixed; /* أهم حاجة */
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%); /* يخليه في النص */
    
    display: flex;
    align-items: center;
    gap: 0px;
    
    opacity: 0;
    animation: popupShow 0.4s ease forwards;
}

.popup-big-statue {
    width: auto;
}

.popup-message {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 25px;
    border-radius: 15px;
    color: #fff;
    width: 400px;
    height: auto;
    box-shadow: 0 0 20px rgba(160,0,255,0.4);
}
.popup-message h2 {
  font-size: 40px;

}
.popup-message p {
  font-size: 20px;

}

/* زرار */
button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: hsl(273,100%,50%);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}
button:hover {
    background: hsl(273,100%,65%);
}

@keyframes popupShow {
    0% { opacity: 0; transform: scale(0.7) translate(-50%, -50%); }
    100% { opacity: 1; transform: scale(1) translate(-50%, -50%); }
}

/* ريسبونسيف للموبايل */
@media (max-width: 600px) {
    .popup-container {
        flex-direction: column;
        gap: 10px;
    }
    .popup-big-statue {
        width: 150px;
    }
    .popup-message {
        width: 300px;
    }
}
@media (max-width: 600px) {

  .content {
    margin-inline: 4%;
    padding: 15px;
  }

  .about-content,
  .service-content {
    flex-direction: column;
    text-align: center;
  }

  .about-content img,
  .service-content img {
    width: 80%;
  }

  .about-content h1 { font-size: 24px; }

  .service-content h1 {
    font-size: 32px;
    padding-left: 0;
  }

  .neon-liquid-bar {
    height: 8px;
    margin: 30px 0;
  }

  .photos {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .photo-item img {
    width: 100%;
    max-width: 240px;
  }

  .popup-container {
    flex-direction: column;
    top: 96%;
  }

  .popup-message {
    width: 150%;
    text-align: center;
  }
}
.identyimg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.identyimg img{
  border-radius: 20px;
  box-shadow:0 0 25px rgba(170,0,255,.9); ;
}
@media (max-width: 768px) {
  .identyimg {
    flex-direction: column;   /* الصور تحت بعض */
    gap: 15px;
  }

  .identyimg img {
    width: 90%;               /* تملى الشاشة */
    max-width: 300px;         /* تمنع التضخيم */
    border-radius: 16px;
  }
}
/* ===== Custom Cursor ===== */
/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: hsl(273,100%,40%);
  pointer-events: none;
  z-index: 99999;
  transform: translate(-110%, -50%);
  mix-blend-mode: difference;
}

.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid hsl(273,100%,40%);
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

/* إخفاء الكيرسر الأصلي على الديسكتوب */
@media (min-width: 769px) {
  * {
    cursor: none;
  }
}

/* إلغاء الكيرسر المخصص على الموبايل */
@media (max-width: 768px) {
  .custom-cursor,
  .custom-cursor-follower {
    display: none;
  }

  * {
    cursor: auto;
  }
}
/* ================= FOOTER ================= */
.site-footer {
  background: #000;
  padding: 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
}

.footer-brand img {
  width: 120px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #aaa;
  font-size: 14px;
  max-width: 400px;
  margin: auto;
}

.footer-social {
  margin: 25px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-social a {
  color: hsl(273,100%,60%);
  font-size: 22px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: hsl(273,100%,80%);
  transform: scale(1.2);
}

.footer-copy {
  color: #555;
  font-size: 13px;
}

/* ================= SCROLL TO TOP ================= */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: hsl(273,100%,50%);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 999;
}

#scrollTopBtn.show {
  opacity: 1;
  pointer-events: auto;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 55px;
  height: 55px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 0 25px rgba(37,211,102,0.6);
  z-index: 999;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .footer-social {
    gap: 15px;
  }

  #scrollTopBtn {
    right: 15px;
    }

  .whatsapp-float {
    left: 15px;
    bottom: 20px;
  }
}