* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    line-height: 1.6;
    background: #fff;
    color: #333;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
  }
  
  header {
    background: #111;
    color: #fff;
    padding: 20px 0;
  }
  
  .logo {
    font-size: 1.8em;
    font-weight: 800;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }
  
  .hero {
    background-image: url("assets/images/fb cover/modocover2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white; /* لو الخلفية غامقة */
  padding: 40px 20px;
  text-align: center;
  position: relative;
  }
  
  .hero h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.2em;
  }
  
  .btn {
    background: #ff4c60;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    display: inline-block;
  }
  
  section {
    padding: 60px 0;
  }
  
  .services ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    padding: 0;
  }
  
  .portfolio .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }
  
  .card img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  
  footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
  }
  body {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  
  h1 {
    margin-top: 40px;
    color: #222;
  }
  
  /* نافيجيشن بار */
  nav {
    background: #333;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 18px;
    padding: 5px 10px;
  }
  
  nav a:hover,
  nav a.active {
    color: #f39c12;
    border-bottom: 2px solid #f39c12;
  }
  
  /* الكاروسيل */
  .carousel {
    width: 80%;
    
    max-width: 800px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background: white;
  }
  
  .carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    white-space: nowrap;
  }
  
  .carousel-inner img {
    width: 20%;
    max-width: 20%;
    flex-shrink: 0;
   
    object-fit: cover;
    border-radius: 10px;
  }
  nav {
    background: #333;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 10;
    text-align: center;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 18px;
    padding: 5px 10px;
  }
  
  nav a:hover,
  nav a.active {
    color: #f39c12;
    border-bottom: 2px solid #f39c12;
  }
  /* النافيجيشن بار */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    background: linear-gradient(90deg, #0d0d0d, #1a1a1a);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  /* خلفية لوجو شفافة فوق خلفية النافيجيشن */
  .navbar-logo img {
    height: 50px;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.7));
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .navbar-logo img:hover {
    transform: scale(1.1);
  }
  
  .navbar-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
  }
  
  .navbar-links li {
    display: inline-block;
  }
  
  .navbar-links a {
    color: #ddd;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    padding: 8px 15px;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .navbar-links a:hover,
  .navbar-links a.active {
    background-color: #f39c12;
    color: #1a1a1a;
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.5);
  }
  
  .carousel-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background-color: #f8f8f8;
    padding: 20px 0;
  }
  
  .carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .carousel-inner img {
    width: 300px;
    height: auto;
    margin-right: 20px;
    border-radius: 10px;
    object-fit: cover;
  }
  body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    background-color: #f7f7f7;
  }
  
  .navbar {
    background-color: #111;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .navbar .logo {
    height: 40px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: #00ccff;
  }
  
  .gallery-container {
    padding: 40px 20px;
  }
  
  .gallery-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
  }
  
  .gallery-scroll {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px;
    scroll-behavior: smooth;
  }
  
  .gallery-scroll::-webkit-scrollbar {
    height: 8px;
  }
  
  .gallery-scroll::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
  }
  
  .gallery-scroll img {
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  
  .gallery-scroll img:hover {
    transform: scale(1.05);
  }
  .gallery-container0 {
    padding: 40px 20px;
  }
  
  .gallery-container0 h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
  }
  
  .gallery-scroll0 {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px;
    scroll-behavior: smooth;
  }
  
  .gallery-scroll0::-webkit-scrollbar {
    height: 8px;
  }
  
  .gallery-scroll0::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
  }
  
  .gallery-scroll0 img {
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  
  .gallery-scroll0 img:hover {
    transform: scale(1.05);
  }
  
  
  .gallery-card img {
    width: 20%;
    height: 20%;
    object-fit: cover;
  }
  /* الأساسيات العامة */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
  }
  
  /* تأكد إن كل الصور ما تتجاوزش حجم الشاشة */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* النافبار يكون مرن */
  .navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 20px;
    align-items: center;
  }
  
  /* الروابط داخل النفجيشن */
  .navbar ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .navbar ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 8px 12px;
    transition: background-color 0.3s ease;
  }
  
  .navbar ul li a:hover {
    background-color: #ff6600;
    border-radius: 5px;
  }
  
  /* ✅ ميديا كويري لشاشات أقل من 768px */
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .navbar ul {
      flex-direction: column;
      width: 100%;
      gap: 10px;
    }
  
    .navbar ul li a {
      width: 100%;
      display: block;
    }
  
    /* أي سيكشن فيه محتوى */
    .section, .content, .gallery-container, .custom-section {
      padding: 10px;
    }
  
    /* لو عندك صور أو كروت */
    .card, .image-box {
      width: 100% !important;
      margin-bottom: 15px;
    }
  }
  
  .social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .social-icons a img {
    width: 180px;
    height: 180px;
    transition: transform 0.3s ease;
  }
  
  .social-icons a:hover img {
    transform: scale(1.2);
  }
  
  @media (max-width: 768px) {
    .social-icons {
      flex-direction: column;
      align-items: center;
    }
  
    .social-icons a img {
      width: 200px;
      height: 200px;
    }
  }
  .contact-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-in-out;
  }
  
  .contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #333;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
  }
  
  .contact-form button {
    width: 100%;
    padding: 12px;
    background-color: #222;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #555;
  }
  
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  


  body {
    cursor: url('assets/images/icona/prush.png'), auto;
  }
  /* رسالة الشكر */
.thank-you {
    margin-top: 20px;
    font-size: 20px;
    color: #2b9348;
    font-weight: bold;
    background: #e7fce7;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    display: none;
    animation: fadeInScale 0.5s ease forwards;
  }
  
  @keyframes fadeInScale {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  .image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.image-modal .modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  border: 5px solid white;
  border-radius: 8px;
}

.image-modal .close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}


.image-center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* لو عايزها في نص الشاشة */
   /* ممكن تشيلها لو مش محتاج */
}

.image-center img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  max-width: 30%;
  height: auto;
}
.watermark-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/images/logonew.png'); /* ← ضع هنا اسم صورة الخلفية */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.15; /* ← درجة الشفافية */
  z-index: -1; /* ← يضع الخلفية خلف كل العناصر */
  pointer-events: none; /* ← يمنع التفاعل معها */
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form button {
  background-color: #222;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #444;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.contact-form .thank-you {
  margin-top: 1rem;
  color: green;
  font-weight: bold;
  text-align: center;
}

