body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
  direction: rtl;
}

header {
  background: #222;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  direction: ltr;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  width: 60px;
  height: 60px;
  margin-left: 10px;
  margin-right: 20px;
}

nav a {
  color: #fff;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #00aaff;
}

.section-box {
  background: #fff;
  margin: 2rem;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.service-card {
  background: #00aaff;
  color: white;
  padding: 1px;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
}
.service-card img{
  width: 220px;
  height: 100px;
}

.copy-btn {
  font-size: 12px;
  padding: 5px 10px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 3px;
  margin-right: 10px;
  cursor: pointer;
}

.copy-btn:hover {
  background: #0056b3;
}

.social-icon {
  width: 24px;
  height: 24px;
  margin-top: 10px;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

footer {
  text-align: center;
  background: #222;
  color: #ccc;
  padding: 1rem;
  direction: ltr;
}
