/* ========== Reset & Base ========== */
@import url('https://fonts.googleapis.com/css2?family=Zain:wght@400;500;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'zain', sans-serif;
}

body {
  
  background: #f7f8fa; /* فاتح */
  color: #333;
  line-height: 1.8;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}




/* ========== Sections General ========== */
section {
  width: 90%;
  margin: 60px auto;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #1e1e2f;
}

section p {
  color: #555;
  max-width: 700px;
  margin: auto;
  margin-bottom: 40px;
}

/* ========== Cards Grid ========== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 10px;
  color: #222;
}

.card p {
  color: #666;
  font-size: 0.95rem;
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  background: #00bcd4;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn:hover {
  background: #0097a7;
}

/* ========== Footer ========== */
footer {
  background: #111;
  color: #ccc;
  padding: 40px 20px;
  text-align: center;
  margin-top: 150px;
}

footer .social {
  margin: 15px 0;
}

footer .social a {
  color: #00bcd4;
  margin: 0 10px;
  font-size: 1.2rem;
  transition: color 0.3s;
}

footer .social a:hover {
  color: #fff;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .pc-nav {
    flex-direction: column;
  }

  .pc-nav ul {
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  section h2 {
    font-size: 1.7rem;
  }
}
