  /* إعدادات عامة */
  body {
    margin: 0;
    font-family: "Cairo", sans-serif;
    direction: rtl;
    background-color: #fff;
  }

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #fff;
    border-bottom: 2px solid #b49029;
    flex-wrap: wrap;
  }

  /* اللوجو */
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo img {
    width: 50px;
  }

  .logo h1 {
    font-size: 18px;
    color: #000;
    margin: 0;
  }

.navbar {
  background-color: #fff;
  border-bottom: 2px solid #b49029;
  padding: 15px 40px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* اللوجو */
.logo {
  width: 70px;
}

/* زر الموبايل */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ====== تصميم النافبار ====== */
.navbar {
  background-color: #fff;
  border-bottom: 2px solid #b49029;
  padding: 10px 20px;
}

/* اللوجو */
.navbar-brand img {
  width: 70px;
}

/* اللينكات */
.navbar-nav .nav-link {
  color: #000;
  font-weight: 600;
  transition: 0.3s;
  padding: 8px 16px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #b49029 !important;
}

/* الزر */
.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* شكل أيقونة الزر */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(180,144,41, 0.9)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* الخلفية وقت الفتح في الموبايل */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #fff;
    border-top: 1px solid #b49029;
    padding: 10px 0;
  }

  .navbar-nav {
    text-align: center;
  }
}



  /* الهيرو سكشن */
  .hero {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
      url('./images/background-beautiful-wallpaper-hd-best-quality-hyper-realistic-colorful-image.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
  }

  .hero img {
    width: 120px;
    margin-bottom: 20px;
  }

  .hero h2 {
    font-size: 28px;
    margin: 0 0 10px;
    color: #000;
  }

  .hero p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #333;
  }

  .hero .buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  .hero .btn {
    background-color: #b49029;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
  }

  .hero .btn:hover {
    background-color: #b49029;
  }

  .btn.whatsapp {
    background-color: #b49029;
  }

  .btn.whatsapp:hover {
    background-color: #b49029;
  }

  /* ريسبونسيف */
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      text-align: center;
    }

    nav ul {
      flex-direction: column;
      gap: 10px;
      margin-top: 10px;
    }

    .hero h2 {
      font-size: 22px;
    }

    .hero p {
      font-size: 16px;
    }
  }


  .printing-section {
    padding: 60px 20px;
  }

  .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .image-box {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
  }

  .image-box img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    object-fit: cover;
  }

  .text-box {
    flex: 1 1 400px;
    text-align: center;
  }

  .text-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .text-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
  }

  .text-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .container {
      text-align: center;
    }

    .text-box h2 {
      font-size: 1.8rem;
    }

    .text-box p {
      font-size: 1rem;
    }

    .image-box img {
      width: 100%;
      max-width: 220px;
      border-radius: 15px;
      object-fit: cover;
      max-height: 200px;

    }
  }

  .services {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
  }

  .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #b49029;
    /* orange accent like in your image */
    margin-bottom: 50px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    justify-items: center;
  }

  .service-card {
    background-color: #f9f9f9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 380px;
  }

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  }

  .service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 20px;
  }

  .service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 15px 0 20px;
    color: #000;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .section-title {
      font-size: 1.8rem;
    }

    .service-card img {
      height: 200px;
    }

    .service-card h3 {
      font-size: 1rem;
    }
  }


  .contact-section {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
  }

  .contact-section h3 {
    color: #ff5e3a;
    font-size: 1.7rem;
    margin-bottom: 25px;
    font-weight: 600;
  }

  .contact-section .btn {
    border-radius: 12px;
    font-size: 1.1rem;
    padding: 10px 25px;
    margin: 0 10px;
  }

  .btn-whatsapp {
    background-color: #0dc143;
    color: white;
  }

  .btn-call {
    background-color: #007bff;
    color: white;
  }

  /* Footer */
  /* Footer */
footer {
  background-image: url('./images/geometric-style-website-hero-background_7GV.webp');
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  color: white;
  padding: 20px;
  position: relative;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  text-align: center;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(36, 36, 36, 0.65);
  z-index: 0;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

footer * {
  position: relative;
  z-index: 1;
}

footer a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

footer a:hover {
  color: #ffb74d;
}

footer .footer-logo img {
  width: 120px;
  margin-bottom: 15px;
}

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  font-size: 0.9rem;
}

/* تباعد إضافي بين الأعمدة */
footer .row > div {
  margin-bottom: 25px;
}

.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  border-radius: 50%;
  padding: 7px;
  font-size: 24px;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn img {
  width: 45px;
  border-radius: 50%;
}
.services-header {
  position: relative;
  background-image: url('./images/geometric-style-website-hero-background_7GV.webp'); 
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 70px;
  border-top-right-radius: 70px;
  overflow: hidden;
  padding: 80px 20px;
  color: white;
  font-family: 'Cairo', sans-serif;
}

.services-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); 
  z-index: 0;
}

.services-header h2 {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 768px) {
  .services-header {
    padding: 50px 10px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .services-header h2 {
    font-size: 1.8rem;
  }
}
