@import url(settings.css);

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(214, 221, 235, 0.2);
  position: absolute;
  width: 95%;
  /* max-width: 93%; */
  transition: 0.3s;
  z-index: 1000000000;
}

header.active .close-btn,
header.active .hamburger {
  color: #000;
}

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

header .navbar {
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 10000;
}

header .navbar .content {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  width: 100%;
  gap: 60px;
}

header .navbar .items {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

header .navbar .items .item a {
  font-weight: 500;
  color: #fff;
  font-size: 1.125rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

header .button {
  width: 13.75rem;
  height: 3.125rem;
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.hamburger {
  display: none;
  font-size: 3rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  margin-left: 0;
}

.close-btn {
  display: none;
  font-size: 2.3rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  position: absolute;
  /* top: 1rem; */
  left: 0;
  /* margin-right: 3em; */
}

header .logo.phone {
  display: none;
}

@media screen and (max-width: 1200px) {
  header.active {
    background-color: var(--white-color);
  }

  header {
    position: fixed;
  }

  header.active .navbar .items .item a {
    color: var(--main-color);
  }
}

@media screen and (max-width: 768px) {
  header .logo {
    margin-right: 3em;
    margin-top: 2em;
  }

  .hamburger {
    display: block;
  }

  header .navbar {
    position: fixed;
    top: 0;
    right: -200%;
    width: 80%;
    height: 100vh;
    background: #fff; /* White background as in the screenshot */
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: right 0.3s ease;
    /* padding: 2rem; */
  }

  header .navbar .content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  header .navbar.active {
    right: 0;
  }

  header .navbar .items {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2rem;
    margin-top: 3rem;
    align-items: flex-start;
    margin-right: 3em;
    margin-top: 2em;
  }

  header .navbar .items .item a {
    color: #000; /* Black text for mobile menu */
    font-size: 1.5rem; /* Larger font size for mobile */
  }

  header .button {
    display: none;
    position: absolute;
    width: 80%;
    /* max-width: 13.75rem; */
    background: #003087;
    top: 18em;
    margin-right: 1em;
    margin-top: 0;
  }

  /* Show button when navbar is active */
  header .navbar.active .button {
    display: flex;
  }

  header .navbar.active ~ .close-btn {
    display: block;
  }
  header .navbar .items .item a {
    font-size: 1.25rem;
  }

  header .logo.phone {
    display: block;
    margin: 0;
    margin-right: 25px;
    margin-top: 10px;
  }

  header .navbar.active ~ .hamburger {
    display: none;
  }
}

/* Start Hero Section */
.hero {
  width: 100%;
  height: 100vh;
  background-image: url(../images/backgruond-2.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-right: 6em;
}

.hero.aboutPage {
  padding: 0;
  justify-content: center;
  height: 75vh;
}

.hero .content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.hero.aboutPage .content {
  align-items: center;
}

.hero .content .card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: rgb(158, 158, 158);
  background: linear-gradient(
    90deg,
    rgba(158, 158, 158, 1) 0%,
    rgba(207, 207, 207, 1) 50%,
    rgba(255, 255, 255, 1) 100%
  );
  width: 305px;
  height: 35px;
  border: 1px solid #000000;
  border-radius: 17px;
}

.hero .content .card img {
  width: 25px;
  height: 25px;
}

.hero .content .card .text {
  color: rgba(30, 30, 30, 0.7);
  font-size: 12px;
}

.hero .content .card .text span {
  font-family: var(--en-font);
  color: #1e1e1e;
  font-size: 17px;
  font-weight: 900;
  margin-right: 5px;
}

.hero .content .card .stars {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .content .card .stars i {
  color: #ffeb0f;
  font-size: 12px;
}

.hero .content-text .title {
  color: #19a3ff;
  font-size: 70px;
  font-weight: bold;
  width: 835px;
  line-height: 149.7%;
  margin-top: 15px;
}

.hero .content-text p {
  color: #fff;
  font-size: 23px;
  line-height: 149.7%;
  width: 740px;
}

.hero.aboutPage .content-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero.aboutPage .content-text .title {
  text-align: center;
  margin: 0;
  margin-bottom: 15px;
}

.hero.aboutPage .content-text p {
  text-align: center;
  margin-top: 10px;
}

.hero .content-text .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 19px;
}

.hero .content-text .buttons .button {
  width: 240px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2727px;
  background-color: var(--main-color);
  border: 2px solid var(--main-color);
  font-size: 20px;
  color: #fff;
}

.hero .content-text .buttons .button.secondary {
  background: none;
  outline: 2px solid #fff;
  border: none;
  gap: 10px;
}

.hero .content-text .buttons .button:not(.button.secondary):hover {
  background-color: #0d4582;
  border: 2px solid #0d4582;
  transition: 0.3s;
}

@media screen and (max-width: 850px) {
  .hero .content-text .title {
    font-size: 65px;
    text-align: center;
    width: auto;
    margin: 0;
  }

  header {
    padding: 0;
    width: 100%;
  }

  .hero .content {
    align-items: center;
    gap: 15px;
  }

  .hero .content-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .hero .content-text p {
    width: 700px;
    text-align: center;
  }

  .hero .container {
    width: 750px;
  }

  .hero {
    padding-right: 3em;
    height: 85vh;
    background-attachment: scroll;
  }

  .hero .content-text .buttons {
    gap: 14px;
  }

  .hero .content-text .buttons .button {
    width: 180px;
    height: 50px;
    font-size: 17px;
  }

  .hero .content-text .buttons .button.secondary img {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 750px) {
  .hero {
    padding-right: 0;
    justify-content: center;
  }

  .hero .content-text .title {
    font-size: 50px;
  }
  .hero .content-text p {
    width: 460px;
    font-size: 17px;
  }
}

@media screen and (max-width: 540px) {
  .hero .content-text .title {
    font-size: 36px;
  }

  .hero .content-text p {
    width: 80%;
    font-size: 15px;
  }

  .hero .content-text .buttons .button {
    width: 160px;
  }
}

/* End Hero Section */

/* Start partners */
.partners {
  background: rgb(246, 249, 255);
  background: linear-gradient(
    90deg,
    rgba(246, 249, 255, 1) 0%,
    rgba(255, 246, 246, 1) 50%
  );
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding-top: 10px;
  position: relative;
  overflow-x: hidden !important;
  overflow-y: auto;
}

.images-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.partners .images-wrapper .images {
  display: inline-flex;
  align-items: center;
  gap: 55px;
  animation: 14s slide infinite linear;
}

.partners .images-wrapper:hover .images {
  animation-play-state: paused;
}

@media screen and (max-width: 1100px) {
  .partners .images-wrapper:hover .images {
    animation-play-state: unset;
  }
}

.partners:before,
.partners:after {
  content: "";
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  z-index: 2;
}

.partners:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.partners:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

@media screen and (max-width: 900px) {
  .partners:before,
  .partners:after {
    content: none;
  }
}

.partners .images-wrapper .images img {
  width: 120px;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}
/* End partners */

/* Start About */
.about .content {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100%;
}

.about .content .text {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 40px;
}

.about .content .text h1 {
  color: #0b2c4f;
  font-size: 40px;
  line-height: 149.7%;
  font-weight: bold;
}

.about .content .text .list-container {
  gap: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.about .content .text .list-container .list {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}

.about .content .text .list-container .list li.first::before {
  content: "\EFA0"; /* الكود الصحيح بدون & */
  font-family: "remixicon"; /* تأكد إن Remix Icons محملة */
  font-size: 16px; /* يمكنك ضبط الحجم */
  margin-right: 8px;
  font-weight: 900;
}

.about .content .text .list-container .list li.second::before {
  content: "\EFA1"; /* الكود الصحيح بدون & */
  font-family: "remixicon"; /* تأكد إن Remix Icons محملة */
  font-size: 16px; /* يمكنك ضبط الحجم */
  margin-right: 8px;
  font-weight: 900;
}

.about .content .text .list-container .list li.third::before {
  content: "\EFA2"; /* الكود الصحيح بدون & */
  font-family: "remixicon"; /* تأكد إن Remix Icons محملة */
  font-size: 16px; /* يمكنك ضبط الحجم */
  margin-right: 8px;
  font-weight: 900;
}

.about .content .text .list-container .list li.forth::before {
  content: "\EFA3"; /* الكود الصحيح بدون & */
  font-family: "remixicon"; /* تأكد إن Remix Icons محملة */
  font-size: 16px; /* يمكنك ضبط الحجم */
  margin-right: 8px;
  font-weight: 900;
}

.about .content .text .list-container .list li {
  color: rgba(30, 30, 30, 0.8);
}

.about .content .text .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 19px;
}

.about .content .text .buttons .button {
  width: 240px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2727px;
  background-color: var(--main-color);
  border: 2px solid var(--main-color);
  font-size: 20px;
  color: #fff;
}

.about .content .text .buttons .button.secondary {
  background: none;
  outline: 2px solid var(--main-color);
  border: none;
  color: var(--main-color);
  gap: 10px;
}

.about .content .text .buttons .button:not(.button.secondary):hover {
  background-color: #0d4582;
  border: 2px solid #0d4582;
  transition: 0.3s;
}

.about .content .image img {
  width: 600px;
}

@media screen and (max-width: 1200px) {
  .about {
    margin-top: 3.5em;
  }
}

@media screen and (max-width: 900px) {
  .about .content .image img {
    width: auto;
    height: 350px;
  }
}

@media screen and (max-width: 700px) {
  .about .content {
    justify-content: center;
  }

  .about .content .text {
    align-items: center;
    width: 85%;
  }

  .about .content .text h1 {
    font-size: 35px;
  }

  .about .content .text h1 br {
    display: none;
  }

  .about .content .text .list-container .list {
    flex-direction: column;
  }

  .about .content .text .list-container .list li {
    width: 70%;
  }

  .about .content .image img {
    width: auto;
    height: 330px;
  }

  .about .content .text .buttons {
    gap: 14px;
  }

  .about .content .text .buttons .button {
    width: 180px;
    height: 50px;
    font-size: 17px;
  }

  .about .content .text .buttons .button.secondary img {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 600px) {
  .about .content .text h1 {
    font-size: 27px;
  }

  .about .content .text .list-container {
    gap: 0;
  }

  .about .content .text .list-container .list li {
    width: 80%;
  }

  .about .content .text .buttons .button {
    width: 160px;
  }
}

/* End About */

/* Start Services */
.services {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 31px;
  padding-bottom: 100px;
}

.services .title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 13px;
}

.services .title-container .text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.services .title-container .text h1 {
  margin: 0;
  color: var(--main-color);
  font-size: 36px;
  font-weight: 600;
  text-align: center;
}

.services .title-container .text h1 span {
  background: linear-gradient(
    90deg,
    rgba(137, 65, 110, 1) 17%,
    rgba(205, 100, 102, 1) 44%,
    rgba(180, 105, 113, 1) 70%,
    rgba(166, 73, 75, 1) 84%,
    rgba(76, 45, 77, 1) 97%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  display: inline-block; /* Ensures the gradient applies correctly to inline elements */
}

.services .title-container .text p {
  font-size: 18px;
  color: #1e1e1e;
  width: 90%;
  text-align: center;
}

.services .cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 55px;
  width: 100%;
}

.services .cards .card {
  background-color: #f6f9ff;
  border: 1px solid rgba(255, 255, 255, 0.1608);
  width: 388px;
  height: 282px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  border-radius: 13px;
  padding: 12px;
}

.services .cards .card .icon-container {
  margin: 35px 24px;
}

.services .cards .card .icon {
  background-color: #6d7df9;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services .cards .card .icon i {
  font-size: 30px;
  color: #fff;
}

.services .cards .card .text {
  margin: 0 24px;
  margin-bottom: 8px;
  margin-left: 0;
}

.services .cards .card .text p {
  color: rgba(30, 30, 30, 0.7);
  font-size: 16px;
}

.services .cards .card .text h1 {
  font-size: 26px;
  color: #1e1e1e;
  font-weight: bold;
}

.services .cards .card:nth-child(2) {
    justify-content: center;
}

@media screen and (max-width: 1360px) {
  .services .cards {
    gap: 30px;
  }
}

@media screen and (max-width: 875px) {
  .services .cards .card .text h1 {
    font-size: 23px;
  }

  .services .cards .card .text p {
    font-size: 14px;
  }
}

@media screen and (max-width: 875px) {
  .services .cards {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 875px) {
  .services .cards .card {
    width: 298px;
  }
}

@media screen and (max-width: 600px) {
  .services .cards .card {
    width: 320px;
  }

  .services .cards {
    gap: 20px;
  }
}
/* End Services */

/* Start Stats */
.stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 31px;
  padding-bottom: 100px;
}

.stats .title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 13px;
}

.stats .title-container .text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.stats .title-container .text h1 {
  margin: 0;
  color: var(--main-color);
  font-size: 36px;
  font-weight: 600;
  text-align: center;
}

.stats .title-container .text h1 span {
  background: linear-gradient(
    90deg,
    rgba(137, 65, 110, 1) 17%,
    rgba(205, 100, 102, 1) 44%,
    rgba(180, 105, 113, 1) 70%,
    rgba(166, 73, 75, 1) 84%,
    rgba(76, 45, 77, 1) 97%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  display: inline-block; /* Ensures the gradient applies correctly to inline elements */
}

.stats .title-container .text p {
  font-size: 18px;
  color: #1e1e1e;
  width: 90%;
  text-align: center;
}

.stats .cards-container {
  width: 100%;
}

.stats .cards {
  background: rgb(246, 249, 255);
  background: linear-gradient(
    90deg,
    rgba(246, 249, 255, 1) 0%,
    rgba(247, 251, 253, 1) 15%,
    rgba(251, 248, 248, 1) 50%,
    rgba(255, 246, 246, 1) 100%
  );
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 0fr);
  gap: 20px;
  margin: 0 auto;
  justify-content: center;
}

.stats .cards .card {
  width: 400px;
  height: 170px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.1608);
}

/* Dotted background using radial-gradient */
.stats .cards .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.1) 10%,
    transparent 10%
  );
  background-size: 20px 20px; /* Dot spacing */
  background-position: 0 0;
  z-index: 0; /* Place behind content */
}

/* Ensure content stays above the dotted background */
.stats .cards .card > * {
  position: relative;
  z-index: 1;
}

.stats .card .icon {
  background-color: #6d7df9;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 15px;
}

.stats .card .text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 15px;
}

.stats .card .text h1,
.stats .card .text p {
  margin: 0;
  text-align: center;
}

.stats .card .text h1 {
  font-family: var(--en-font);
  font-weight: bolder;
  font-size: 36px;
  color: #1e1e1e;
  direction: ltr;
}

.stats .card .text p {
  font-size: 18px;
  color: #1e1e1e;
  font-weight: normal;
  margin-top: 10px;
}

/* Responsive Design */
@media screen and (max-width: 1230px) {
  .stats .cards {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* 2 cards per row on medium screens */
  }
}

@media screen and (max-width: 768px) {
  .stats .cards {
    grid-template-columns: 1fr; /* 1 card per row on small screens */
  }

  .stats .cards .card {
    width: 100%; /* Full width on mobile */
    height: auto; /* Adjust height based on content */
    min-height: 174px; /* Minimum height to maintain visibility */
  }
}
/* End Stats */

/* Start Getting Started */

.getStarted .card {
    background: linear-gradient(90deg, rgba(92, 153, 238, 1) 0%, rgba(7, 64, 156, 1) 100%);
    width: 100%;
    max-height: 360px;
    /* border-radius: 80px; */
    display: flex
;
    align-items: center;
    justify-content: center;
    height: 350px;
    margin: 0 auto;
    /* padding: 0 30px; */
    /* padding-right: 50px; */
}
#getStartedCard {
  background: linear-gradient(90deg, #5c99ee 0%, #07409c 100%);
  background-size: 200% 200%;
  animation: gradientAnimation 6s ease infinite;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.getStarted .card .content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.getStarted .card .text h1 {
  font-size: 64px;
  font-weight: 900;
  color: var(--white-color);
  margin-bottom: 0.5em;
  text-align: center;
}

.getStarted .card .text p {
  color: var(--white-color);
  font-size: 22px;
  margin-top: 0;
  text-align: center;
}

.getStarted .card .button {
  width: 357px;
  height: 60px;
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #246ee5;
  font-weight: 600;
  gap: 10px;
  border-radius: 12px;
}

@media screen and (max-width: 1094px) {
  .getStarted .card .image img {
    width: 340px;
  }

  .getStarted .card .text h1 {
    font-size: 48px;
  }

  .getStarted .card .text p {
    font-size: 19px;
  }

  .getStarted .card .button {
    width: 340px;
  }
}

@media screen and (max-width: 767px) {
  .getStarted .card .content {
    align-items: center;
  }

  .getStarted .card .image img {
    width: 160px;
  }

  .getStarted .card .text h1 {
    font-size: 36px;
    text-align: center;
  }

  .getStarted .card .text p {
    text-align: center;
  }

  .getStarted .card .button {
    width: 310px;
    height: 52px;
  }
}


/* End Getting Started */

/* Start Footer */

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 15px 65px;
  border-top: 1px solid rgba(30, 30, 30, 0.1608);
}

.foot p {
  color: #1e1e1e;
  font-size: 20px;
  font-weight: 600;
}

.foot p a {
  color: #773ff0;
  font-weight: 900;
  text-decoration: underline;
}

.foot .socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.foot .socials .app {
  width: 40px;
  height: 40px;
  background: rgb(22, 26, 49);
  background: linear-gradient(
    90deg,
    rgba(22, 26, 49, 1) 0%,
    rgba(6, 9, 31, 1) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: normal;
  font-size: 20px;
  cursor: pointer;
}

.foot .socials .app a {
  color: #fff;
}

@media screen and (max-width: 575px) {
  .foot {
    justify-content: center;
    padding: 15px 0;
  }

  .foot p {
    text-align: center;
  }
}
/* End Footer */
