:root {
  --main-color: #BC03CE;
  --secondary: #7c278c;
  --yellow: #F4B300;
  --text-color: #313131;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.wrapper {
  /* Media query for mobile devices only (max-width: 768px) */
}
.wrapper header {
  background-color: var(--secondary);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wrapper header img {
  width: 60px;
  height: 50px;
  color: white !important;
}
.wrapper main {
  font-family: "Poppins", Sans-serif !important;
  /* For screens up to 768px (tablets/mobiles) */
  /* For very small screens (phones) */
}
.wrapper main .heading {
  font-weight: bolder;
}
.wrapper main .description {
  font-weight: 100;
  letter-spacing: 2;
  font-size: 20px;
}
.wrapper main .section-info {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wrapper main .front {
  padding: 0 50px;
  background-color: transparent;
  background-image: linear-gradient(165deg, var(--secondary) 40%, var(--main-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper main .front .img {
  display: flex;
  justify-content: center;
}
.wrapper main .front .info {
  color: white;
  /* For very small screens (phones) */
}
@media screen and (max-width: 480px) {
  .wrapper main .front .info .heading {
    font-size: 20px;
  }
  .wrapper main .front .info .description {
    font-size: 13px;
  }
}
.wrapper main .desc-section {
  padding: 0 50px;
  margin-bottom: 100px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
}
.wrapper main .desc-section .info {
  padding: 0% 15% 0% 3%;
}
.wrapper main .desc-section .info .description {
  font-size: 17px;
}
.wrapper main .services {
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0% 10%;
}
.wrapper main .services .service-title {
  color: var(--secondary);
  font-size: 1.3em;
  text-align: center;
}
.wrapper main .services .service-item {
  text-align: center;
  padding: 20px 10px !important;
}
.wrapper main .services .service-item .service-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.wrapper main .services .service-item p {
  font-size: 0.95em;
  line-height: 1.6;
}
.wrapper main .services .service-item .line {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
}
.wrapper main .services .service-item .line div {
  width: 20%;
  height: 2px;
  background-color: var(--yellow);
}
@media screen and (max-width: 1024px) {
  .wrapper main .services {
    padding: 0% 7%;
  }
}
@media screen and (max-width: 768px) {
  .wrapper main .services {
    padding: 0% 5%;
  }
}
@media screen and (max-width: 480px) {
  .wrapper main .services {
    padding: 0% 3%;
  }
}
.wrapper main .our-services {
  padding: 0 5%;
}
.wrapper main .our-services .service-card {
  background-color: #faf8f8;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.wrapper main .our-services .service-card:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}
.wrapper main .our-services .service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
}
.wrapper main .our-services .service-card p {
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--text-color);
}
.wrapper main .our-services .service-card .line {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  margin-bottom: 10px;
}
.wrapper main .our-services .service-card .line div {
  width: 30px;
  height: 2px;
  background-color: var(--yellow);
}
.wrapper .why-us {
  padding: 0 5%;
}
.wrapper .why-us .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
}
.wrapper .why-us h3 {
  font-size: 17px;
  font-weight: 700;
}
.wrapper .why-us p {
  font-size: 0.95em;
  line-height: 1.6;
}
.wrapper .why-us .icon {
  background-color: #86338D;
  fill: #FFFFFF;
  color: #FFFFFF;
  border-radius: 12px;
  padding: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.wrapper .why-us .icon img {
  width: 50px;
  height: auto;
}
.wrapper .why-us .icon svg {
  width: 50px;
  height: auto;
}
.wrapper .button-yellow {
  background-color: var(--yellow);
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 1em;
  letter-spacing: 0px;
  word-spacing: 0em;
  fill: #FFFFFF;
  color: #FFFFFF;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: var(--yellow);
  border-radius: 100px 100px 100px 100px;
  padding: 16px 55px;
  transition: all 0.3s;
}
.wrapper .button-yellow:hover {
  background-color: rgba(2, 1, 1, 0);
  color: var(--yellow);
}
@media screen and (max-width: 768px) {
  .wrapper .button-yellow {
    padding: 16px 40px; /* Adjust padding for mobile */
  }
}
.wrapper footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  min-height: 70px;
}
.wrapper footer a {
  cursor: pointer;
}
.wrapper footer img {
  width: 50px;
  height: auto;
}
.wrapper footer div {
  display: flex;
  gap: 10px;
}
.wrapper footer div img {
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 480px) {
  .wrapper footer {
    flex-direction: column;
    padding: 10 0;
    gap: 20px;
  }
}

.lang-ar {
  display: none;
  direction: rtl;
  text-align: right;
  font-family: "Arial", sans-serif;
}

.lang-en {
  direction: ltr;
  text-align: left;
  font-family: "Arial", sans-serif;
}

#lang-toggle {
  margin: 20px;
  padding: 8px 16px;
  font-size: 16px;
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */