@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&family=Tajawal:wght@400;700&display=swap');

:root {
  --primaryColor: #FEA958;
  --middleColor: #393E46;
  --helperColor: #400B50;
  --lightHelper: #B60C52;
  --hrColor: #F8F5FF;
  --transparentColor: rgba(0, 0, 0, 0.699);
  --shadow: rgba(189, 188, 188, 0.514);
  /* --------------------------------- */
  --whatsappColor: #25D366;
  --white: #ffff;
  --blue: #1877F2;
  --green: #25D366;
  --gray: #f8f8f8;
  --container-width: 1340px;
  --header-height: 200px;
  /* 👈 غيّر الرقم حسب الارتفاع اللي تحبه */

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cairo', 'Tajawal', sans-serif;
}

a {
  text-decoration: none;
  transition: all 0.5s;

}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.whyus-section {
  position: relative;
  background-color: #400B50;
}

.whyus-section::after {
  content: "";
  background-image: url("../img/logo.png");
  background-size: 300px;
  opacity: .09;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
}

.whyus-section svg {
  position: absolute;
  right: 0;
  left: 0;
  height: 20px;
  width: 100%;
}

.whyus-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 18px;
  position: relative;
  z-index: 22;
}

.whyus-section-title {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--primaryColor);
  position: relative;
}

.whyus-section-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  border-radius: 25px;
  bottom: -10%;
  left: 0;
  background-image: linear-gradient(90deg, var(--lightHelper) 0%, var(--primaryColor) 100%);

}

.whyus-section-title::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 5px;
  border-radius: 25px;
  bottom: -25%;
  right: 0;
  background-image: linear-gradient(90deg, var(--lightHelper) 0%, var(--primaryColor) 100%);

}

.whyus-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.whyus-image {
  flex: 1;
  z-index: 2;
}

.whyus-image img {
  width: 100%;
}

.whyus-features {
  flex: 1;
}

.whyus-features p {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}

.whyus-features a {
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  padding: 8px;
  border-radius: 2px 20px 2px 20px;
  background-image: linear-gradient(90deg, var(--lightHelper) 0%, var(--primaryColor) 100%);
}

.whyus-features a:hover {
  border-radius: 20px 2px 20px 2px;
}

.hero-kpis {
  margin-top: 20px;
  display: flex;
  justify-items: center;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.kpi {
  background-color: var(--white);
  padding: 14px 18px;
  border-radius: 2px 20px 2px 20px;
  box-shadow: var(--transparentColor);
  text-align: center;
  min-width: 150px;
  transition: all 0.5s;
}

.kpi:hover {
  border-radius: 20px 2px 20px 2px;
}

.kpi .num {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--helperColor);
}

/* Responsive */
@media (max-width: 900px) {
  .whyus-content {
    flex-direction: column;
    text-align: center;
  }

  .feature {
    text-align: right;
  }

  .kpi {
    width: 30%;
  }
}
