body {
    background: #f0f2f5;
    font-family: 'Segoe UI', sans-serif;
}
/*==========================
    main
==========================*/
main{
    flex: 1;
}

/* ---------- Main Section ---------- */
.hero {
  padding: 120px 5% 60px;
  background: #f9f9f9; /* لون فاتح مريح */
  color: #333; /* نص داكن */
}

.hero-content {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.hero-text {
  flex: 2;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #555; /* رمادي داكن مريح */
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.8;
  color: #666;
}

.features {
  list-style: none;
  padding: 0;
}

.features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #555;
}

.features li span {
  font-size: 1.5rem;
  color: #888; /* أيقونات رمادية فاتحة */
}

/* --------- Hero Side Box --------- */
.hero-side {
  flex: 1;
  background-color: #ffffff; /* أبيض ناعم */
  padding: 25px;
  border-radius: 12px;
  
  /* Shadow */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12); /* ظل خفيف جميل */
  
  min-width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-side:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); /* ظل أكبر عند hover */
}

.hero-side h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #555;
}

.hero-side p {
  margin-bottom: 10px;
  color: #666;
}

.hero-side .cta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-side .cta .btn {
  width: 100%;
  background-color: #f0c987; /* لون فاتح دافئ */
  color: #333;
  border: none;
  transition: background-color 0.3s, transform 0.3s;
}

.hero-side .cta .btn:hover {
  background-color: #e6b95a; /* أغمق شوي عند hover */
  transform: translateY(-2px);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-side {
    min-width: 100%;
  }

  .hero-side .cta {
    flex-direction: row;
    justify-content: space-between;
  }

  .hero-side .cta .btn {
    width: 48%;
  }
}


/* =========================
  FOOTER STYLING
========================== */
footer {
    background-color: #000000;
    color: #ffffff;
}

footer h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

footer a {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

.social-icons-wrapper {
    display: inline-block;
    text-align: right;
    margin-top: 0.5rem;
}

.social-icon {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: #ffffff;
    transition: color 0.3s, transform 0.3s;
}

.social-icon:hover {
    color: #ffd700;
    transform: scale(1.2);
}

