body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #ff00cc, #3333ff);
  color: #fff;
}

/* ========== Header ========== */
header {
  background: transparent;
  padding: 0;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.1); /* شفافية خفيفة جدًا */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo a {
  font-family: 'Baloo 2', cursive;
  font-size: 28px;
  color: #fff;
  text-decoration: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #ffea00;
}

/* ========== Hero ========== */
.hero {
  text-align: center;
  padding: 100px 20px 60px;
}

.hero h2 {
  font-size: 40px;
  margin-bottom: 20px;
  font-family: 'Baloo 2', cursive;
}

.hero p {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.input-box {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.input-box input {
  width: 100%;
  padding: 18px;
  font-size: 16px;
  border: none;
  border-radius: 40px 0 0 40px;
  outline: none;
}

.input-box button {
  padding: 18px 30px;
  border: none;
  background: #ffea00;
  color: #333;
  font-weight: 700;
  border-radius: 0 40px 40px 0;
  cursor: pointer;
  font-size: 16px;
}

.input-box button:hover {
  background: #fff;
}

/* ========== Features ========== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 60px 20px;
  text-align: center;
}

.feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 16px;
}

/* ========== Testimonials ========== */
.testimonials {
  background: #fff;
  color: #333;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-family: 'Baloo 2', cursive;
  margin-bottom: 30px;
  font-size: 32px;
}

.testimonials blockquote {
  margin: 20px auto;
  max-width: 600px;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
}

/* ========== Footer ========== */
footer {
  background: #111;
  padding: 40px 20px;
  text-align: center;
  font-size: 14px;
}

.footer-links a {
  margin: 0 10px;
  color: #bbb;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffea00;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  margin: 0 8px;
  color: #fff;
  font-size: 18px;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .header-container {
    padding: 16px 20px;
    flex-direction: column;
    gap: 12px;
  }

  .main-nav {
    gap: 16px;
  }

  .logo a {
    font-size: 24px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .input-box {
    flex-direction: column;
  }

  .input-box input,
  .input-box button {
    width: 100%;
    border-radius: 40px;
  }
}