@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Tajawal', sans-serif;
}

body {
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* الشريط العلوي */
header {
  background-color: #000;
  color: #FFD700;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 2px 5px rgba(255, 215, 0, 0.1);
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
}

.menu-btn {
  position: absolute;
  right: 20px;
  font-size: 24px;
  background: none;
  border: none;
  color: #FFD700;
  cursor: pointer;
}

/* القائمة الجانبية */
.side-menu {
  position: fixed;
  top: 60px;
  right: -250px;
  width: 200px;
  height: calc(100% - 60px);
  background-color: #111;
  padding: 20px;
  transition: right 0.3s ease;
  z-index: 1000;
}

.side-menu ul {
  list-style: none;
}

.side-menu ul li {
  margin: 15px 0;
}

.side-menu ul li a {
  color: #FFD700;
  text-decoration: none;
}

.side-menu.show {
  right: 0;
}

/* الشعار */
.logo-section {
  text-align: center;
  padding: 30px 20px;
}

.logo-img {
  max-width: 220px;
  height: auto;
}

/* عنوان الخدمات */
.services {
  padding: 20px;
  text-align: center;
}

.services h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #FFD700;
}

/* مربعات الخدمات */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
}

.service-box {
  background-color: #111;
  border: 1px solid #FFD700;
  color: #FFD700;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.service-box:hover {
  background-color: #222;
}

/* التذييل */
footer {
  background-color: #000;
  padding: 20px 10px;
  text-align: center;
  border-top: 1px solid #333;
  margin-top: auto;
}

.social-icons {
  margin-bottom: 10px;
}

footer a {
  color: #FFD700;
  font-size: 20px;
  margin: 0 10px;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

.signature {
  color: #888;
  font-size: 14px;
  margin-top: 10px;
}

/* استجابة الجوال */
@media (max-width: 600px) {
  .logo-text {
    font-size: 20px;
  }

  .menu-btn {
    font-size: 22px;
  }

  .logo-img {
    max-width: 160px;
  }

  .service-box {
    font-size: 14px;
    padding: 15px;
  }
}
.office-address {
  margin-top: 40px;
  font-size: 18px;
  color: #FFD700; /* ذهبي */
  text-align: center;
  font-weight: bold;
}
.contact-icons {
  text-align: center;
  padding: 20px 0;
}

.contact-icons a {
  color: gold;
  font-size: 28px;
  margin: 0 15px;
  transition: transform 0.3s;
}

.contact-icons a:hover {
  transform: scale(1.2);
  color: white;
}