/* استيراد الخط */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  line-height: 1.6;
  background: #f8f9fa;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0d6efd;
  padding: 15px 30px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
}

.navbar .nav-links li {
  margin: 0 15px;
}

.navbar .nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.navbar .nav-links a:hover {
  color: #ffc107;
}

/* Hero */
.hero {
  height: 100vh;
  background: linear-gradient(to right, #0d6efd, #6610f2);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero .btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ffc107;
  color: #000;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.hero .btn:hover {
  background: #ffcd39;
}

/* Sections */
section {
  padding: 80px 20px;
  text-align: center;
}

h2 {
  color: #0d6efd;
  margin-bottom: 30px;
}

.services .service-box,
.pricing .pricing-box,
.team .team-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.card, .price-card, .member {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  flex: 1;
  min-width: 200px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* FAQ */
.faq-item {
  margin: 15px auto;
  max-width: 600px;
  background: #fff;
  padding: 15px;
  border-radius: 6px;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
  font-weight: 600;
  color: #0d6efd;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  color: #555;
}

/* Footer */
footer {
  background: #0d6efd;
  color: #fff;
  padding: 15px;
  text-align: center;
  margin-top: 50px;
}