.landingPage {
  text-align: center;
  padding: 100px 100px;
  width: 100%;
  height: 100vh;
  /* border: 1px solid red; */
  position: relative;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-bottom: 3px solid #6518ff;
}
.landingPage .landingPage-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 50%;
  height: 100%;
  padding: 0px 100px;
}
.landingPage .landingPage-content h1 {
  font-size: 50px;
  color: #6518ff;
  /* text-shadow: 0px 0px 10px #6518ff; */
  /* animation: textAnimation 2s infinite alternate; */
}
.landingPage .landingPage-content p {
  font-size: 20px;
  color: #757575;
  margin: 10px 0;
  text-align: start;
}

.landingPage .landingPage-content .features-list {
  list-style: none;
  padding: 0;
  /* border: 1px solid red; */
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 0px 60px;
}
.landingPage .landingPage-content .features-list li {
  font-size: 18px;
  color: #757575;
  margin: 5px 0;
  text-align: start;
  position: relative;
}
.landingPage .landingPage-content .features-list li::before {
  content: "✔";
  color: #6518ff;
  position: absolute;
  right: -30px;

  font-size: 20px;
}

.landingPage .landingPage-content .btn {
  margin-top: 20px;
  display: inline-block;
  padding: 10px 20px;
  background-color: #6518ff;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s ease;
}
.landingPage .landingPage-content .btn:hover {
  background-color: #5e17eb;
}
@keyframes textAnimation {
  0% {
    color: #6518ff;
    text-shadow: 0px 0px 10px #6518ff;
  }
  100% {
    color: #5e17eb;
    text-shadow: 0px 0px 20px #5e17eb;
  }
}

.landingPage #lottie-container {
  width: 1000px;
  height: 1000px;
  /* transform: rotateY(180deg); */
}

.landingPage img {
  /* width: 1000px; */
  /* height: 500px; */
  /* width: 100%; */
  height: 100%;
  transform: rotateY(180deg);
}

.statistics-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 50px 0;
  /* border: #5e17eb 1px solid; */
  background-color: #f9f9f9;
  background-color: #f4f4f4;
  border-bottom: 3px solid #6518ff;
}

.statistics-section .card {
  width: 300px;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  margin: 0 60px;
  /* border: 1px solid red; */
  position: relative;
}

.statistics-section .card h2 {
  color: #6518ff;
  font-size: 40px;
  margin-bottom: 10px;
}

.statistics-section .card p {
  font-size: 18px;
  color: #555;
}

.statistics-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.statistics-section .card i {
  position: absolute;
  top: 30%;
  left: 35px;
  font-size: 50px;
  color: #6518ff;
}

.services-section {
  width: 100%;
  height: 100%;
  /* border: red 1px solid; */
  padding: 60px 100px;
  text-align: center;
  background-color: #ffffff;
  border-bottom: 3px solid #6518ff;
}

.services-section h2 {
  font-size: 36px;
  color: #6518ff;
  margin-bottom: 40px;
}

.services-section .ShowMoreBtn {
  margin-top: 40px;
  display: inline-block;
  padding: 10px 20px;
  background-color: #6518ff;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s ease;
}
.services-section .ShowMoreBtn:hover {
  background-color: #5e17eb;
}

.services-cards {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.service-card {
  width: 400px;
  /* height: 400px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card > div {
  width: 250px;
  /* height: 250px; */
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 32px;
  color: #333;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.service-card .btn-card {
  display: inline-block;
  padding: 8px 16px;
  background-color: #6518ff;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.service-card .btn-card:hover {
  background-color: #5e17eb;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.why-us-section {
  width: 100%;
  height: 100%;
  padding: 60px 100px;
  background-color: #f4f4f4;
  border-bottom: 3px solid #6518ff;
}

.why-us-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.why-us-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 10px;
  /* box-shadow: 0 4px 15px #6518ff; */
}

.why-us-text {
  flex: 1;
  min-width: 300px;
}

.why-us-text h2 {
  font-size: 36px;
  color: #6518ff;
  margin-bottom: 30px;
}

.why-us-text ul {
  list-style: none;
  padding: 0 30px;
}

.why-us-text ul li {
  font-size: 20px;
  color: #333;
  margin-bottom: 18px;
  padding-right: 25px;
  position: relative;
}

/* إضافة علامة ✔ باليمين لكل نقطة */
.why-us-text ul li::before {
  content: "✔";
  color: #6518ff;
  position: absolute;
  right: 0;
  font-size: 22px;
  top: 2px;
}

.accreditation-section {
  width: 100%;
  padding: 40px 20px;
  text-align: center;
  /* background-color: #f9f9f9; */
  /* border: 1px solid blue; */
  /* border-bottom: 3px solid #6518ff; */
}

.accreditation-section > h1 {
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #6518ff;
  /* border: 1px solid red; */
}

.accreditation-continer {
  width: 100%;
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.accreditation-continer > .right {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  /* border: 1px solid red; */
  padding: 0px 50px;
  text-align: start;
}

.accreditation-continer > .right > h1 {
  width: 100%;
  text-align: start;
  font-size: 2rem;
  color: #6518ff;
  margin-bottom: 20px;
}
.accreditation-continer > .right > h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}
.accreditation-continer > .right > p {
  font-size: 1.2rem;
  color: #757575;
  margin-bottom: 20px;
}
.accreditation-continer > .right > ul {
  list-style: none;
  padding: 0px 30px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.accreditation-continer > .right > ul > li {
  margin: 10px 0;
  position: relative;
  color: #333;
  font-size: 1.2rem;
}
.accreditation-continer > .right > ul > li::before {
  content: "⁕";
  position: absolute;
  right: -15px;
  color: #6518ff;
  font-size: 20px;
}

.accreditation-continer > .left {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 1px solid red; */
}

.accreditation-continer > .left > img {
  width: 80%;
  /* height: 100%; */
  object-fit: cover;
  border-radius: 10px;
  /* box-shadow: 0 4px 15px rgba(101, 24, 255, 0.2); */
}

@media (max-width: 768px) {
  .landingPage {
    text-align: center;
    padding: 0px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
  }
  .landingPage .landingPage-content {
    align-items: center;
    width: 100%;
    height: fit-content;
    padding: 0px 0px;
    /* border: 1px solid red; */
  }
  .landingPage .landingPage-content h1 {
    font-size: calc(1.8rem + 1.5vw);
    text-align: center;
    width: 100%;
    margin: 10px 0;
  }
  .landingPage .landingPage-content p {
    text-align: center;
  }

  .landingPage .landingPage-content .features-list li {
    font-size: 17px;
  }
  .landingPage .landingPage-content .features-list li::before {
    right: -20px;
    font-size: 16px;
  }

  .landingPage #lottie-container {
    width: 350px;
    height: 350px;
  }

  .statistics-section {
    flex-wrap: wrap;
  }

  .statistics-section .card {
    width: 100%;
    margin: 10px 30px;
  }


  .why-us-section {
  width: 100%;
  height: 100%;
  padding: 60px 0px;
  background-color: #f4f4f4;
  border-bottom: 3px solid #6518ff;
}

.why-us-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 5px;
  max-width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
}

.why-us-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 10px;
  /* box-shadow: 0 4px 15px #6518ff; */
}

.why-us-text {
  flex: 1;
  min-width: 100%;
  /* border: 1px solid red; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.why-us-text h2 {
  font-size: 36px;
  color: #6518ff;
  margin-bottom: 30px;
}


.why-us-text ul li {
  font-size: 17px;
}

/* إضافة علامة ✔ باليمين لكل نقطة */
.why-us-text ul li::before {
  font-size: 20px;
}


.accreditation-section {
  width: 100%;
  height: 100%;
  padding: 20px 20px;
  text-align: center;
}

.accreditation-section > h1 {
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #6518ff;
  /* border: 1px solid red; */
}

.accreditation-continer {
  width: 100%;
  height: 100%;
  flex-direction: column-reverse;
  margin: 20px 0px ;
}

.accreditation-continer > .right {
  width: 100%;
  height: 100%;
  padding: 30px 0px;
}

.accreditation-continer > .right > h1 {
  text-align: center;
  font-size: 1.3rem;
}
.accreditation-continer > .right > h3 {
  font-size: 1rem;
}
.accreditation-continer > .right > p {
  font-size: 1rem;
}

.accreditation-continer > .right > ul > li {
  font-size: 1rem;
}


.accreditation-continer > .left {
  width: 100%;
  min-height: 350px;
}
}
