* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  
  body {
    direction: ltr;
    overflow-x: hidden;
    font-family: popins-light;
  }
  img{
      max-width:100%;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  ul {
    list-style: none;
  }
  
  a {
    text-decoration: none;
  }
  
  @font-face {
    font-family: popins-reguler;
    src: url(../fonts/Poppins-Regular.ttf);
    font-display: swap;
  }
  
  @font-face {
    font-family: popins-bold;
    src: url(../fonts/Poppins-Bold.ttf);
    font-display: swap;
  }
  
  
  @font-face {
    font-family: popins-semi-bold;
    src: url(../fonts/Poppins-SemiBold.ttf);
    font-display: swap;
  }
  
  
  
  @font-face {
    font-family: popins-extra-bold;
    src: url(../fonts/Poppins-ExtraBold.ttf);
    font-display: swap;
  }
  
  @font-face {
    font-family: popins-medium;
    src: url(../fonts/Poppins-Medium.ttf);
    font-display: swap;
  }
  
  @font-face {
    font-family: popins-light;
    src: url(../fonts/Poppins-Light.ttf);
    font-display: swap;
  }
  
  /*============ start Header  ============*/
  .home-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .home-header ul {
    display: flex;
    align-items: center;
    padding: 0;
  }
  
  .home-header ul li {
    margin: 0px 15px;
    transition: all 0.5s ease;
  }
  
  .logo {
    width: 255px;
    height: 166px;
    margin-top: 24px;
  }
  
  .logo img {
    width: 100%;
    height: 100%;
  }
  
  .hero-home {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .hero-sec::before {
    /* content: ""; */
    position: absolute;
    background-image: url(../images/hero-shape.png);
    background-repeat: no-repeat;
    width: 953px;
    height: 699px;
    z-index: -1;
    right: -6px;
  }
  
  .home-header ul li a {
    color: #d1d1d1;
    position: relative;
    font-family: 'popins-medium';
  }
  .home-header ul li a.active {
    color: white;
  }
  .home-header ul li a.active::after {
    width: 50%;
  }
  
  .hero-img {
    flex: 50%;
    max-width: 50%;
  }
  
  .hero-img img {
    width: 100%;
    height: auto;
    /*! animation: rotateInDownRight; */
    /*! animation-duration: 3s; */
  }
  
  .hero-desc h1 {
    font-size: 40px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px !important;
  }
  
  .hero-sec {
    /*! padding-bottom: 100px; */
  }
  
  .hero-desc h3 {
    font-size: 56px;
    font-weight: 800;
    color: #FF9D01;
    margin-bottom: 24px;
    font-family: popins-extra-bold;
    line-height: 1.2;
  }
  
  .hero-desc p {
    color: #000000;
    margin-bottom: 40px;
  }
  
  .hero-desc {
    flex: 50%;
    max-width: 50%;
    animation: fadeInLeft;
    animation-duration: 3s;
  }
  
  .btn-h {
    color: #ffffff;
    background: #FF9D01;
    padding: 16px 40px;
    border-radius: 32px;
    position: relative;
    transition: all 0.5s;
    overflow: hidden;
    min-width: 120px;
    display: inline-block;
    z-index: 1;
    text-align: center;
    font-family: 'popins-medium';
  }
  
  .btn-h::after {
    position: absolute;
    content: "";
    background-color: #FF9D01;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 100%;
    height: 0%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.5s;
  }
  
  .btn-h:hover {
    background-color: #ffffff;
  }
  
  .btn-h:hover::after {
    height: 480%;
  }
  
  .btn-h1 {
    color: #ffffff;
    background: #5AA68B;
    padding: 16px 40px;
    border-radius: 32px;
    position: relative;
    transition: all 0.5s;
    overflow: hidden;
    min-width: 120px;
    display: inline-block;
    z-index: 1;
    text-align: center;
/*     font-family: 'popins-medium'; */
  }
  
  .btn-h1::after {
    position: absolute;
    content: "";
    background-color: #5AA68B;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 100%;
    height: 0%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.5s;
  }
  
  .btn-h1:hover {
    background-color: #ffffff;
  }
  
  .btn-h1:hover::after {
    height: 480%;
  }
  .home-header ul li a:hover {
    color: white;
    transition: all 0.5s;
  }
  
  .home-header ul li a:hover::after {
    width: 50%;
  }
  
  .home-header ul li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 4px;
    background-color: white;
    bottom: -2px;
    left: 0;
    transition: all 0.5s;
    border-radius: 16px;
  }
  
  .vert-move {
    animation: mover 3s infinite alternate;
  }
  
  @keyframes mover {
    0% {
      transform: translateY(0);
    }
  
    100% {
      transform: translateY(-10px);
    }
  }
  
  .about {
    position: relative;
    padding-bottom: 0px;
    padding-top: 100px;
  }
  
  .about-h {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  
  .about-desc {
    padding-inline-start: 78px;
    flex: 50%;
    max-width: 50%;
    /* animation: rotateInUpRight; */
    /* animation-duration: 3s; */
  }
  
  .about-img {
    flex: 50%;
    max-width: 50%;
  }
  
  .about-img img {
    width: 100%;
    height: auto;
    /* animation: rotateInUpLeft; */
    /* animation-duration: 3s; */
  }
  
  .about-desc h2 {
    color: #7e76f9;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    display: none;
  }
  
  .about-desc h3 {
    color: #000000;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 32px;
  }
  
  .about-desc p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 56px;
  }
  
  .about::before {
    content: "";
    width: 822px;
    height: 627.13px;
    position: absolute;
    background-image: url(../images/about-pattern.webp);
    background-repeat: no-repeat;
    right: 5px;
    top: -4px;
    background-size: contain;
  }
  
  .clients {
    padding: 96px 0px;
    background: rgba(236, 234, 254, 0.3);
  }
  
  .sec-title {
    text-align: center;
  }
  
  .sec-title h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 55px;
    color: #000000;
    font-family: popins-extra-bold;
  }
  
  .client-logo {
    padding: 10px;
  }
  
  .clients .container {
    padding: 0px 10px;
  }
  
  .clients-slider-two {
    padding-top: 35px;
  }
  
  .serv-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .serv-card-outer {
    flex: 33.333333%;
    max-width: 33.333333%;
    padding: 12px;
    padding-bottom: 25px;
  }
  
  .serv-img {
    width: 66.29px;
    height: 58px;
    margin: 0 auto;
    margin-bottom: 0px;
  }
  
  .serv-img img {
    width: 100%;
    height: auto;
  }
  
  .serv-desc h4 {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
  }
  
  .serv-desc p {
    /* margin-bottom: 12px; */
    color: #848689;
    font-weight: 500;
    font-size: 16px;
  }
  
  .serv-btn a {
    text-align: end;
    background-color: #FF9D01;
    padding: 13px 33.5px;
    border-radius: 33px;
    display: inline-block;
    color: #ffffff;
  }
  
  .serv-btn {
    text-align: end;
  }
  
  .serv-card {
    border-radius: 16px;
    border: #d9d9d9 2px solid;
    padding: 12px 24px 12px 24px;
    background: #ffffff;
    transition: all 0.5s ease;
    height: 367px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  .serv-card:hover {
    border-color: transparent;
    transform: translateY(-0.5rem);
    box-shadow: 0 10px 15px rgb(0, 0, 0, 0.16);
    transition: all 0.5s ease;
  }
  
  .serv-card:hover img {
    animation: pulse;
    animation-duration: 1s;
  }
  
  .services-h {
    padding: 96px 0px;
    position: relative;
  }
  
  .services-h::before {
    content: "";
    position: absolute;
    background-image: url(../images/serv-pattern.webp);
    background-repeat: no-repeat;
    width: 1501.76px;
    height: 893.39px;
    z-index: -1;
    right: 0;
    top: 7%;
    background-size: contain;
  }
  
  .why-list ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: start;
    width: 100%;
    padding: 0;
    height: 100%;
  }
  
  .why-list ul li {
    flex: 25%;
    max-height: 21%;
    color: #42495b;
    font-size: 20px;
    /* padding-bottom: 35px; */
  }
  
  .why-list {
    display: flex;
    flex-wrap: wrap;
  }
  
  .why-list ul li i {
    color: #5faa83;
    background: #ffffff;
    border-radius: 50%;
    border: 2px solid #5faa83;
    padding: 4px 5px;
    font-size: 17px;
    margin-inline-end: 10px;
  }
  
  .why-us {
    background-color: #eceafe;
    padding: 96px 0px;
    background: white;
  }
  
  .why-desc h3 {
    font-weight: 700;
    font-size: 40px;
    color: #000000;
    margin-bottom: 24px;
    font-family: popins-extra-bold;
  }
  
  .why-desc p {
    font-weight: 500;
    font-size: 20px;
    color: #000000;
    margin-bottom: 54px;
    font-family: 'popins-medium';
    text-align: center;
  }
  
  input[type="email"] {
    background-color: #ebebeb;
    border: none;
    height: 72px;
    width: 534px;
    border-radius: 25px;
    padding: 24px 56px 24px;
  }
  
  button.bt {
    border: none;
    padding: 24px 39px;
    background-color: #FF9D01;
    border-radius: 32px;
    position: absolute;
    right: 319px;
    color: #ffffff;
  }
  
  .news-letter-desc {
    text-align: center;
  }
  
  form {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .mail {
    position: relative;
    right: 20px;
  }
  
  .mail img {
    position: absolute;
    left: 25.8px;
    width: 21px;
    top: 24.64px;
  }
  
  input::placeholder {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #aeaeae;
  }
  
  .news-letter-desc h4 {
    font-weight: 400;
    font-size: 32px;
    line-height: 48px;
    /* identical to box height */
    color: #7e76f9;
    margin-bottom: 8px;
    display: none;
  }
  
  .news-letter-desc h3 {
    font-weight: 700;
    font-size: 30px;
    line-height: 72px;
    /* identical to box height */
    color: #000000;
    margin-bottom: 56px;
    font-family: popins-extra-bold;
  }
  
  .news-letter {
    padding: 96px 0px 110px 0px;
  }
  
  .news-letter::before {
    content: "";
    position: absolute;
    background-image: url(../images/news-pattern.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 332px;
    z-index: -1;
    background-size: contain;
    opacity: 30%;
  }
  
  .footer {
    position: relative;
    /* background: linear-gradient(
      360deg,
      rgba(93, 168, 136, 1) 50%,
      rgba(255, 255, 255, 0) 50%
    ); */
    padding-top: 118px;
  }
  
  .footer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 701px;
    background-image: url(https://old.almaqsd.sa/wp-content/uploads/2024/08/footer-shape-1-scaled.webp);
    background-repeat: no-repeat;
    z-index: -1;
    background-size: cover;
    top: 1px;
    background-position: top center;
    background-size: cover;
  }
  
  .footer-logo {
    width: 170px;
    height: auto;
    margin-bottom: 25px;
  }
  
  .footer-logo img {
    width: 100%;
    height: auto;
  }
  
  .footer-title h3 {
    font-size: 32px;
    line-height: 32px;
    /* identical to box height, or 100% */
    color: #ffffff;
    margin-bottom: 26px;
    font-family: 'almarai extra' !important;
  }
  
  .social-icons i {
    font-size: 19px;
    color: #ffffff;
    margin-inline-end: 23px;
  }
  
  .column-f {
    display: flex;
    flex-direction: column;
    max-width: 25%;
    flex: 25%;
    padding-top: 62px;
    padding-inline-start: 91px;
  }
  
  .second {
    padding-inline-start: 112px;
    padding-top: 156px;
  }
  
  .second.column-f h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    /* identical to box height, or 100% */
    color: #ffffff;
    margin-bottom: 18px;
  }
  
  .second.column-f ul {
    padding: 0;
  }
  
  .second.column-f ul li a {
    /* identical to box height, or 100% */
    color: #ffffff;
    line-height: 1.7;
    font-size: 15px;
    font-family: 'popins-light';
  }
  
  .second.column-f ul li {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 20px;
    color: white;
    font-family: 'almarai light';
  }
  
  input:focus-visible {
    outline: none;
  }
  
    textarea:focus-visible {
    outline: none;
  }
  .columns {
    display: flex;
    justify-content: space-between;
  }
  
  .second.column-f ul li a i {
    margin-inline-end: 8px;
  }
  
  /* section.hero-sec.hero-inner::before {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, #4093a6 0%, #FF9D01 100%);
    background-repeat: no-repeat;
    width: 100%;
    z-index: -1;
    right: 0px;
    top: 0%;
  } */
  
  .logo.logo-inner {
    width: 120px;
    height: auto;
  }
  
  .hero-inner {
    padding: 190px 0px 0px 0px;
    /* margin-bottom: 98px; */
    background: #02b3b7;
   /* overflow: hidden;*/
    position: relative;
  }
  
  .inner-h {
    text-align: center;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row-reverse;
  }
  
  .hero-inner h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 72px;
    color: #ffffff;
    margin-bottom: 35px;
  }
  
  .hero-inner a {
    background: #FF9D01;
    border-radius: 32px;
    color: #fff;
    padding: 5px 20px;
    font-weight: 600;
    font-size: 18px;
    line-height: 42px;
  }
  
  .inner-header {
    padding-bottom: 130px;
    width: 100%;
  }
  
  .serv-btn button {
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    /* identical to box height, or 100% */
    text-align: center;
    color: #848689;
    transition: 0.5s ease;
    font-family: 'popins-light';
    background: none;
    border-bottom: 0.1px solid #FF9D01 !important;
    padding-bottom: 5px;
  }
  
  .serv-btn button:hover {
    color: #FF9D01;
  }
  
  .hero-inner a:hover {
    background: transparent;
    color: white;
  }
  
  .services-inner::before {
    content: "";
    position: absolute;
    background-image: url(../images/serv-pattern.png);
    background-repeat: no-repeat;
    width: 1497.76px;
    height: 893.39px;
    z-index: -1;
    right: 0;
    top: 20%;
    background-size: contain;
    background-position: top center;
  }
  
  .inner-hero-desc a {
    padding: 16px 40px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height */
    align-items: center;
    text-align: center;
    color: #57a38f;
    font-size: 16px;
    width: 259px;
    height: 56px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  .inner-hero-desc h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 48px;
    /* identical to box height, or 100% */
    color: #ffffff;
  }
  
  .inner-hero-desc p {
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    /* or 133% */
    color: #ffffff;
    margin-bottom: 40px;
  }
  
  .inner-hero {
    display: flex;
  }
  
  .inner-hero-desc {
    flex: 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  
  .inner-hero-vec img {
    width: 80%;
    height: auto;
  }
  
  .inner-hero-vec {
    flex: 45%;
    max-width: 45%;
    position: relative;
    left: 103px;
    top: 21px;
  }
  
  .inner-hero {
    justify-content: center;
    align-items: center;
    gap: 48px;
  }
  
  .inner-heder-2 {
    padding-bottom: 0px;
  }
  
  .inner-hero-vec::after {
    /* content: ""; */
    position: absolute;
    background-image: url(../images/bread-vec.png);
    background-size: cover;
    width: 127%;
    background-repeat: no-repeat;
    height: 130%;
    z-index: -1;
    left: 0;
    top: -5px;
  }
  
  .e-commerce {
    padding: 80px 0px;
    position: relative;
  }
  
  /* .e-commerce::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/e-pattern.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 96px;
    z-index: -1;
  } */
  
  .sec1-e-commerce {
/*     display: flex; */
    justify-content: center;
    align-items: start;
    gap: 55px;
	text-align:center;
	margin: 0 auto 20px; 
  }
  
  .e-commerce-cards {
    display: flex;
    flex-wrap: wrap;
    /* padding-inline-start: 79px; */
    gap: 32px 40px;
  }
  
  /* إعداد حاوية الكروت */
.e-commerce-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px; /* مسافة بين الكروت */
    justify-content: space-around; /* توزيع الكروت بشكل متساوي */
}

/* تنسيق الكروت */
.e-commerce-card {
    flex: 1 1 calc(25% - 32px); /* عرض الكرت الواحد بنسبة مئوية مع مراعاة المسافة بين الكروت */
    max-width: calc(25% - 32px); /* عرض الكرت الأقصى مع مراعاة المسافة بين الكروت */
    display: flex;
    flex-direction: column; /* لجعل المحتوى عمودي داخل الكرت */
    align-items: center;
    padding: 16px; /* مسافة داخلية حول المحتوى */
    box-sizing: border-box; /* لضمان عدم تجاوز المحتوى حدود الكرت */
    background-color: #fff; /* خلفية الكرت */
    border: 1px solid #ddd; /* حدود خفيفة للكرت */
    border-radius: 8px; /* زوايا مدورة للكرت */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* ظل خفيف للكرت */
    transition: transform 0.3s, box-shadow 0.3s; /* تأثيرات انتقالية */
}

/* تأثيرات عند الوقوف على الكرت */
.e-commerce-card:hover {
    transform: translateY(-10px); /* رفع الكرت قليلاً للأعلى */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* زيادة الظل لجعل الكرت بارز */
}

/* تنسيق الأيقونات داخل الكروت */
.e-commerce-cards-icon {
    width: 100%;
    max-width: 48px; /* عرض الأيقونة الثابت */
    margin-bottom: 16px; /* مسافة بين الأيقونة وبقية المحتوى */
}

.e-commerce-cards-icon img {
    width: 100%;
    height: auto; /* للحفاظ على نسبة العرض إلى الارتفاع للصورة */
}

/* تنسيق نصوص أو محتويات إضافية داخل الكروت */
.e-card-desc {
    text-align: center; /* محاذاة المحتوى إلى الوسط */
}

  
  .e-card-desc h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    /* identical to box height, or 100% */
    color: #7e76f9;
    margin-bottom: 8px;
  }
  
  .e-card-desc p {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    /* or 140% */
    color: #979797;
    margin: 0;
  }
  
  .e-commerce-desc h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 56px;
    /* or 117% */
    color: #0f0f0f;
    margin-bottom: 16px;
  }
  
  .e-commerce-desc p {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    /* or 140% */
    display: flex;
    align-items: center;
    color: #979797;
  }
  
  .serv-e {
    background: #ffffff;
    border-radius: 16px;
    background: #ffffff;
    border-radius: 16px;
    max-width: 100%;
    border: #d9d9d9 2px solid;
    margin: 0;
    padding: 16px 24px;
    gap: 16px;
    overflow: hidden;
    height: 100%;
    transition: all 0.5s ease;
  }
  
  .outer-serv-e {
    max-width: 31.333333%;
    flex: 31.333333%;
    /* padding: 0px 12px; */
    /* margin-bottom: 32px; */
  }
  
  .outer-serv-e h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    /* or 120% */
    display: flex;
    align-items: center;
    color: #42495b;
    margin-bottom: 16px;
  }
  
  .outer-serv-e p {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #848689;
  }
  
  .e-commerce-serv {
    padding: 96px 0px;
    position: relative;
    background: rgb(126 118 249 / 5%);
  }
  
  .e-commerce-serv::before {
    content: "";
    position: absolute;
    background-image: url(../images/Subtract.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
    width: 100%;
    height: 252.6px;
    top: -53px;
    z-index: -1;
    display:none;
  }
  
  .e-last {
    text-align: center;
    margin-bottom: 190px;
    position: relative;
    padding: 97px 0px;
  }
  
  .e-last h3 {
    font-weight: 700;
    font-size: 48px;
    line-height: 72px;
    /* identical to box height */
    color: #26304a;
    margin-bottom: 56px;
    position: relative;
  }
  .e-last h3 span {
    position: relative;
  }
  
  /* .e-last h3 span::before {
    content: "";
    position: absolute;
    background-image: url(../images/h3-vec.png);
    background-repeat: no-repeat;
    background-size: cover;
    left: -21px;
    top: -5px;
    width: 46.31px;
    height: 46.31px;
  } */
  
  .e-last a {
    font-weight: 600;
    font-size: 28px;
    line-height: 42px;
    /* identical to box height */
    display: inline-block;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 19px 48px;
    margin: 0;
  }
  .arrows {
    display: flex;
    position: absolute;
    bottom: 198px;
    right: 30%;
    animation-iteration-count: infinite;
  }
  
  .e-serv {
    padding: 0;
    gap: 24px 24px;
  }
  
  @keyframes arrow {
    0% {
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
    80% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  
  .arrows img {
    animation: arrow 2s infinite;
    fill: transparent;
    max-width: 44px;
  }
  
  .arrows img.arrow1 {
    animation-delay: -0.3s;
  }
  .arrows img.arrow2 {
    animation-delay: -0.5s;
  }
  .serv-e:hover {
    border-color: transparent;
    transform: translateY(-0.5rem);
    box-shadow: 0 10px 15px rgb(0, 0, 0, 0.16);
    transition: all 0.5s ease;
  }
  .store-desc h3 {
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
    /* identical to box height, or 40px */
    color: #282828;
    margin-bottom: 24px;
	text-align:center;
  }
  
  .store-desc p {
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    /* or 133% */
    color: #7e7e7e;
    margin-bottom: 35px;
	text-align:center;
  }
  
  .sotre-card-img {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  
  .sotre-card-img img {
    width: 100%;
    height: auto;
  }
  
  .store-card {
    background: #ffffff;
    border-radius: 12px;
    width: 100%;
    padding: 24px;
    border: #d9d9d9 1px solid;
    margin: 0 auto;
    transition: all 0.5s ease;
  }
  
  .store {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02)),
      url(22535557_2112.w039.n003.47B.p1.jpg);
    padding: 96px 0px;
    position: relative;
  }
  
  .store::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    background-size: cover;
    background-image: url(../images/slider-pro.png);
    background-repeat: no-repeat;
    background-position: top center;
    top: 0;
  }
  
  .store-card h5 {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    /* identical to box height */
    color: #848689;
    margin: 16px 0px 0px 0px;
    text-align: center;
  }
  .store-card-oter {
    padding: 0px 17.5px;
  }
  .store-card:hover {
    border-color: transparent;
    box-shadow: 0 10px 15px rgb(0, 0, 0, 0.16);
    transition: all 0.5s ease;
  }
  .packages-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
  }
  
  .packages-card {
    max-width: 33.333333%;
    flex: 33.333333%;
    /* display: flex; */
    gap: 0px 23px;
    padding: 24px 24px;
    background: #ffffff;
    border-radius: 12px;
    position: relative;
    height: 1165px;
  }
  
  .packages-i {
    width: 56px;
    height: auto;
    margin: 0 auto;
    margin-bottom: 21px;
  }
  
  .packages-i img {
    width: 100%;
    height: auto;
  }
  
  .packages-cards-desc ul {
    padding: 0;
    margin-bottom: 44px;
  }
  
  .packages-cards-desc h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
    /* identical to box height, or 100% */
    color: #5aa68b;
    position: relative;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .packages-cards-desc h3::after {
    content: "";
    position: absolute;
    width: 22%;
    height: 2.5px;
    background-color: #5aa68b;
    bottom: -6px;
    left: 97px;
    transition: all 0.5s;
    border-radius: 8px;
    display: inline-flex;
  }
  .packages-cards-desc h4 span {
    font-weight: 700;
    font-size: 32px;
    line-height: 32px;
    /* identical to box height, or 100% */
    color: #0f0f0f;
    font-family: popins-extra-bold;
  }
  
  .packages-cards-desc h4 {
    font-size: 20px;
    margin-bottom: 4px;
    text-align: center;
  }
  .packages-cards-desc h5 {
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    /* identical to box height, or 125% */
    color: #848689;
    text-align: center;
  }
  
  .packages-cards-desc ul li {
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 12px;
    /* identical to box height, or 100% */
    color: #636363;
    display: flex;
    justify-content: start;
    align-items: center;
    font-weight: 500;
    line-height: 1.7;
  }
  .packages-card-btn {
    text-align: center;
    margin: 48px 0px 40px 0px;
  }
  
  .packages-card-btn a {
    background: #FF9D01;
    border: 1px solid #e3e3e3;
    border-radius: 32px;
    padding: 16px 64px;
    color: white;
    width: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .packages-card-btn a:hover {
    color: #ffffff;
  }
  .packages-cards-desc ul li i {
    color: #FF9D01;
    font-size: 20px;
    margin-inline-end: 8px;
    font-weight: 900;
  }
  .packages-card::after {
    content: "";
    position: absolute;
    background-image: url(../images/waves.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 72px;
    bottom: 0px;
    left: 0;
    border-radius: 13px;
  }
  .pro-card {
    max-width: 37%;
    flex: 37%;
    justify-content: center;
    height: 600px;
    height: 560px;
  }
  .packages-desc h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 48px;
    /* identical to box height, or 100% */
    text-align: center;
    color: #282828;
    margin-bottom: 24px;
  }
  
  .packages-desc {
    text-align: center;
  }
  
  .packages-desc p {
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    /* or 133% */
    color: #575757;
    text-align: center;
    padding: 0px 200px;
    margin-bottom: 40px;
  }
  .packages {
    padding: 96px 0px;
    position: relative;
  }
  .pro-card h3::after {
    content: "";
    position: absolute;
    width: 15%;
    height: 4px;
    background-color: #ffe161;
    bottom: -4px;
    left: 0;
    transition: all 0.5s;
    border-radius: 16px;
    display: inline-flex;
  }
  .pro-img {
    width: 92px;
  }
  
  .pro-card h3 {
    color: #ffe161;
  }
  
  .pro-card ul li {
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    /* identical to box height, or 100% */
    color: #636363;
    margin-bottom: 16px;
  }
  
  .pro-card a {
    width: 222px;
    height: 56px;
  }
  .packages-card::before {
    content: "";
    position: absolute;
    background: #f1f1f1;
    filter: blur(4px);
    border-radius: 12px;
    width: 100%;
    height: 100%;
    z-index: -1;
    left: 0;
    top: -2px;
  }
  .packages-cards :nth-child(2)::after {
    /* height: 122px; */
  }
  .pro-btn {
    margin: 85px 0px 0px 0px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 86px;
  }
  
  .packages-cards-desc {
    /* display: flex; */
    /* flex-direction: column; */
  }
  
  .subscribe-sec {
    background: linear-gradient(180deg, #4093a6 0%, #FF9D01 100%);
    border-radius: 24px;
    padding: 96px 0px;
    position: relative;
  }
  .subscribe-sec h3,
  h4 {
    text-align: center;
  }
  
  .subscribe-sec h3 {
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    /* identical to box height, or 100% */
    text-align: center;
    color: #ffffff;
    margin-bottom: 32px;
  }
  
  h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    /* identical to box height */
    color: #000000;
  }
  
  .subscribe-sec h4 {
    font-weight: 600;
    font-size: 32px;
    line-height: 32px;
    /* identical to box height, or 100% */
    text-align: center;
    color: #ffef14;
    margin-bottom: 24px;
  }
  .subscribe-sec input[type="email"] {
    background-color: #ffffff;
    border-radius: 24px;
  }
  .subscribe-sec::before {
    content: "";
    position: absolute;
    background-image: url(../images/bell.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 285px;
    height: 245px;
    right: 0;
  }
  .e-last a i {
    margin-inline-end: 8.6px;
  }
  button.bt img {
    max-width: 23px;
  }
  button.bt.e-btn {
    padding: 16px;
  }
  button.bt.e-btn img {
    position: static;
  }
  
  button.bt.e-btn {
    right: 6px;
    top: 12%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  section.hero-sec.hero-inner::before {
    content: "";
    position: absolute;
    width: 98%;
    height: 125%;
    background: url(../images/bread-vec.png) right bottom / 50% 100% no-repeat;
    bottom: -253px;
    right: 0px;
    z-index: 0;
    display: none;
  }
  navbar {
    position: absolute;
    width: 100%;
    z-index: 9999;
  }
  img {
  }
  
  .inner-hero-vec.case-vec {
    flex: 45%;
    max-width: 45%;
    left: 0;
    top: 0;
  }
  
  .inner-hero-vec.case-vec img {
    width: 100%;
    height: auto;
  }
  .case-cards {
    display: flex;
    justify-content: center;
    align-items: center;
/*     gap: 56px; */
    flex-wrap: wrap;
  }
  
  .case-card {
    background: #ffffff;
    border-radius: 24px;
/*     max-width: 40%; */
    flex: 40%;
    position: relative;
    /* overflow: hidden; */
    padding: 32px 42px;
  }
  
  .case-p h3 {
    text-align: center;
  }
  .card-headeing {
    text-align: center !important;
    position: relative;
    z-index: 1;
  }
  
  .card-b h3,
  p {
    text-align: start;
  }
  .card-headeing p {
    text-align: center;
  }
  .card-headeing h4 {
    font-weight: 600;
    font-size: 32px;
    line-height: 32px;
    /* identical to box height, or 100% */
    margin-bottom: 16px;
    color: #2D2D2D;
  }
  
  .card-headeing h3 {
    font-style: italic;
    font-weight: 900;
    font-size: 56px;
    line-height: 56px;
    /* identical to box height, or 100% */
    color: #ffee00;
    margin-bottom: 16px;
  }
  
  .card-headeing h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 32px;
    /* identical to box height, or 100% */
    color: #2d2d2d;
    margin-bottom: 8px;
  }
  
  .card-headeing p {
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    /* identical to box height, or 100% */
    color: #7c7c7c;
    margin-bottom: 58px;
  }
  .arrow-card {
    position: absolute;
    width: 117px;
    height: auto;
    left: 50px;
    top: 4px;
    z-index: 9999;
    opacity: 0;
  }
  
  .arrow-card img {
    width: 100%;
  }
  h3.case-heading {
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    /* identical to box height, or 100% */
    color: #282828;
    margin-bottom: 80px;
    display: none;
  }
  
  section.case-sec {
    padding: 96px 0px;
    overflow: hidden;
  }
  
  .case-card::after {
    content: "";
    position: absolute;
    background-image: url(../images/wave-c-c.png);
    width: 100.5%;
    height: 306px;
    z-index: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    top: -23px;
    left: -2px;
  }
  .p-num {
    position: relative;
  }
  .p-num::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/h3-shape.png);
    left: 99px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    opacity: 0;
  }
  .card-b h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    /* identical to box height, or 100% */
    color: #2d2d2d;
  }
  
  .card-b p {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    /* or 140% */
    color: #959595;
  }
  .case-card::before {
    content: "";
    position: absolute;
    background: #c8c8c8;
    filter: blur(2px);
    border-radius: 24px;
    width: 100%;
    height: 100%;
    z-index: -1;
    left: 0px;
    top: 1px;
  }
  .card-b {
    position: relative;
    z-index: 1;
  }
  .case-sec {
    position: relative;
  }
  .case-sec::before {
    content: "";
    position: absolute;
    background-image: url(../images/vec-case.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 114%;
    top: -442px;
    z-index: -9;
  }
  .case-sec::after {
    content: "";
    position: absolute;
    background-image: url(../images/fashion-shape.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 330px;
    width: 314px;
    z-index: -9;
    right: 35px;
    bottom: 80px;
  }
  .case-last {
    position: relative;
  }
  .case-last::before {
    content: "";
    position: absolute;
    background-image: url(../images/case-last.png);
    width: 436px;
    height: 498px;
    right: -8px;
    background-size: cover;
    bottom: -108px;
  }
  .her0-shape {
    position: absolute;
    right: 0;
    top: -10px;
    z-index: -1;
    width: 61%;
  }
  
  .her0-shape img {
    width: 100%;
    height: auto;
  }
  .clients .item {
    width: 203px;
  }
  section.hero-sec.hero-inner.hero-serv::before {
    display: none;
  }
  
  section.hero-sec.hero-inner.hero-serv {
  padding: 120px 0px 0px 0px;
  }
  .inner-h.contact-contain {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    padding: 56px 32px 33px 32px;
    position: absolute;
    top: -261px;
    z-index: 99999;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    text-align: start;
    width: 100%;
    margin-bottom: 24px;
  }
  
  .form-group input {
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 24px;
    width: 100%;
    height: 64px;
    padding: 0px 25px;
  }
  
  .form-group textarea {
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 24px;
    margin-bottom: 46px;
    padding: 25px 25px 0px 25px;
    width: 100%;
  }
  .form-group button {
    width: 100%;
    height: 56px;
    left: 792px;
    top: 828px;
    background: #FF9D01;
    border-radius: 16px;
    border: navajowhite;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    /* identical to box height */
    align-items: center;
    text-align: center;
    color: #ffffff;
  }
  
  .form-group label {
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    /* identical to box height, or 100% */
    text-align: start;
    color: #535353;
    margin-bottom: 8px;
  }
  .form-contact {
    max-width: 50%;
    flex: 50%;
    position: relative;
  }
  section.hero-sec.hero-inner.hero-serv.hero-contact {
    padding-bottom: 190px;
    padding-top: 293px;
    overflow: visible;
  }
  section.last-sec.case-last.contact-last {
    padding-top: 300px;
  }
  .inner-hero-desc.contact-hero {
    text-align: start;
    align-items: center;
  }
  section.services-h.services-inner {
    top: -244px;
    height: 100%;
    padding: 100px 0px;
    position: static;
  }
  header {
    animation: fadeInDown;
    animation-duration: 3s;
  }
  .serv-view-p-img {
    flex: 50%;
    max-width: 50%;
    padding: 0px 45px;
  }
  
  .serv-view-p {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .serv-list {
    flex: 50%;
    max-width: 50%;
    position: relative;
  }
  
  .serv-view-p-img img {
    width: 100%;
    border-radius: 30px;
  }
  
  .serv-h-p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 56px;
  }
  .serv-h-p-i {
    width: 90px;
    height: auto;
  }
  
  .serv-h-p-i img {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
  }
  
  .serv-list ul li {
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    /* identical to box height, or 100% */
    color: #42495b;
    margin-bottom: 45px;
    display: inline-flex;
    align-items: center;
    line-height: 1.7;
  }
  
  .serv-inner-p {
    padding: 60px 0px;
  }
  .serv-details .sec-serv-d:nth-child(odd) {
    background-color: #00000008;
    background: rgba(236, 234, 254, 0.3);
  }
  .serv-details .sec-serv-d:nth-child(even) {
    background: white;
    direction: rtl;
  }
  
  .serv-details .sec-serv-d:nth-last-child(1) {
    /* margin-bottom: 129px; */
  }
  .serv-list ul {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  
  .serv-list ul li i {
    margin: 0px 10px;
    color: #5faa83;
    background: #ffffff;
    border-radius: 50%;
    border: 2px solid #5faa83;
    padding: 5px 7px;
    font-size: 17px;
    margin-inline-end: 10px;
  }
  .serv-details .sec-serv-d:nth-child(even) ul li {
    direction: ltr;
  }
  section.hero-sec.hero-inner.case-single::before {
    content: "";
    position: absolute;
    width: 33%;
    height: 542.71px;
    background: url(../images/case-single.png) right bottom / 50% 100% no-repeat;
    bottom: 4%;
    background-size: contain;
    right: 12%;
    z-index: 0;
    background-position: bottom center;
  }
  section.hero-sec.hero-inner.case-single {
    margin-bottom: 96px;
    padding-bottom: 0;
  }
  .inner-hero-vec.case-vec.single-case-vec h3 {
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 40px;
    /* identical to box height, or 100% */
    color: #2d2d2d;
    margin-bottom: 16px;
  }
  
  .inner-hero-vec.case-vec.single-case-vec {
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .inner-hero-vec.case-vec.single-case-vec h4 {
    font-style: italic;
    font-weight: 900;
    font-size: 64px;
    line-height: 64px;
    /* identical to box height, or 100% */
    color: #ffee00;
    margin-bottom: 16px;
  }
  
  .inner-hero-vec.case-vec.single-case-vec h5 {
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    /* identical to box height, or 100% */
    color: #7c7c7c;
  }
  
  .inner-hero-vec.case-vec.single-case-vec img {
    width: 100%;
    margin-bottom: 0;
  }
  h3.last-desc {
    margin-bottom: 8px !important;
  }
  
  .inner-hero-desc h3 span {
    color: #ffee00;
  }
  section.hero-sec.hero-inner.case-single::after {
    content: "";
    position: absolute;
    width: 30%;
    height: 647px;
    background: url(../images/circels.png) right bottom / 50% 100% no-repeat;
    bottom: 9%;
    background-size: contain;
    right: -10%;
    z-index: 0;
    background-position: bottom center;
    display: none;
  }
  .inner-hero-desc.single-c-desc {
    max-width: 50%;
    flex: 50%;
  }
  
  .inner-hero-vec.case-vec.single-case-vec {
    max-width: 50%;
    flex: 50%;
    position: static;
  }
  .inner-hero.case-hero.single-c-hero {
    justify-content: space-between;
  }
  .inner-hero-vec.case-vec.single-case-vec::after {
    content: "";
    position: absolute;
    background-size: contain;
    background-image: url(../images/arrow-case.png);
    width: 16%;
    z-index: 999;
    left: 108px;
    top: 44%;
    display: none;
  }
  .c-c-content p {
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    /* or 133% */
    color: #4d4d4d;
  }
  
  .c-c-content h3 {
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    /* identical to box height, or 40px */
    color: #282828;
  }
  
  section.f-c-single-case {
    padding-bottom: 96px;
  }
  .s-c-single-case-main {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 24px;
    position: relative;
  }
  
  .s-c-single-case-img img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
  }
  
  .s-c-single-case-img {
    flex: 40%;
    max-width: 40%;
    height: 500px;
  }
  
  .s-c-single-case-decs {
    flex: 60%;
    max-width: 60%;
  }
  .s-c-single-case-decs h3 {
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    /* identical to box height, or 40px */
    color: #282828;
    margin-bottom: 24px;
  }
  
  .s-c-single-case-decs p {
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    /* or 133% */
    color: #4d4d4d;
  }
  section.s-c-single-case {
    background: rgba(236, 234, 254, 0.3);
    padding: 96px;
    position: relative;
    overflow: hidden;
  }
  section.t-c-single-case {
    padding: 96px 0px;
  }
  .sub-title {
    text-align: center;
  }
  
  .sub-title h5 {
    font-weight: 600;
    font-size: 26px;
    line-height: 64px;
    /* or 200% */
    text-align: center;
    color: #2b2b2b;
  }
  
  section.sub h4 {
    font-weight: 300;
    font-size: 34px;
    text-align: center;
    color: #2b2b2b;
    line-height: 1.5;
    margin-bottom: 35px;
  }
  
  section.sub h4 span {
    font-weight: 600;
    font-size: 34px;
    text-align: center;
    color: #2b2b2b;
    border-bottom: 2px solid #ffee00;
  }
  
  .sub-title p {
    font-weight: 500;
    font-size: 17px;
    line-height: 32px;
    /* or 133% */
    color: #4d4d4d;
    text-align: start;
  }
  .sub-title p span {
    font-weight: 600;
  }
  .sub {
    position: relative;
    padding: 96px 0px;
  }
  .sub::after {
    content: "";
    position: absolute;
    background-image: url(../images/sub-vec.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 485px;
    background-size: cover;
    top: 0;
    z-index: -1;
  }
  .forward-list {
    display: flex;
    flex-wrap: wrap;
  }
  
  .forward-list ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: start;
    width: 100%;
    padding: 0;
  }
  
  .forward-list ul li {
    flex: 33.333333%;
    max-height: 33.333333%;
    /* font-weight: 600; */
    font-size: 18px;
    line-height: 32px;
    /* identical to box height, or 133% */
    color: #4d4d4d;
    position: relative;
  }
  .forward {
    padding: 96px 0px;
  }
  
  .forward-se h3 {
    font-weight: 700;
    font-size: 28px;
    line-height: 48px;
    /* identical to box height, or 100% */
    text-align: center;
    color: #282828;
    margin-bottom: 24px;
    position: relative;
  }
  
  .forward-se p {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    /* or 133% */
    color: #4d4d4d;
    margin-bottom: 16px;
  }
  /* .forward-list ul li::after {
    content: "";
    position: absolute;
    background-image: url(../images/ul-after.png);
    width: 23px;
    height: 23px;
    background-size: contain;
    left: -30px;
    top: 0px;
  } */
  .forward-list ul li img {
    width: 23px;
    height: 23px;
    position: relative;
    top: -6px;
  }
  .fuel {
    padding: 96px 0px;
    background-image: url(../images/bg-img.png);
    background-size: cover;
  }
  
  .fuel-se h3 {
    font-weight: 700;
    font-size: 38px;
    line-height: 48px;
    /* identical to box height, or 100% */
    text-align: center;
    color: #282828;
    margin-bottom: 24px;
    position: relative;
  }
  .fuel-se p {
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    /* or 133% */
    color: #4d4d4d;
    margin: 0;
  }
  h3 img {
    width: 48px;
    height: 48px;
    position: relative;
    top: -7px;
  }
  .s-c-single-case::before {
    content: "";
    position: absolute;
    background-image: url(../images/dilemma-affter.png);
    background-size: contain;
    width: 45%;
    height: 100%;
    background-repeat: no-repeat;
    right: -45px;
    bottom: 4%;
  }
  .slider-case {
    padding: 94px 0px;
    background: linear-gradient(180deg, #eceafe 0%, rgba(236, 234, 254, 0) 100%);
  }
  
  .slider-case h3 {
    text-align: center;
  }
  .slider-c {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .slider-c-img {
    flex: 45%;
    max-width: 45%;
  }
  
  .slider-c-desc {
    flex: 50%;
    max-width: 50%;
  }
  .slider-c-img img {
    width: 100%;
    height: auto;
  }
  
  .slider-c-desc h4,
  p {
    text-align: inherit;
  }
  .slider-c-img img {
    width: 100%;
    height: auto;
    width: 100%;
    height: 410px;
    border-radius: 20px;
  }
  
  .slider-c-desc h4,
  p {
    text-align: inherit;
  }
  
  .slider-c-desc h4 {
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    /* identical to box height, or 32px */
    color: #0f0f0f;
    margin-bottom: 21px;
  }
  
  .slider-c-desc p {
    /* font-weight: 700; */
    font-size: 18px;
    line-height: 32px;
    /* or 133% */
    color: #4d4d4d;
  }
  
  .owl-nav button {
    border: none;
    background: #FF9D01;
    color: #ffffff;
    position: absolute;
    top: 50%;
    padding: 11px 20px;
    border-radius: 50%;
  }
  
  .owl-nav button.owl-next {
    right: -5%;
  }
  .owl-nav button.owl-prev {
    left: -5%;
  }
  .sidebar {
    position: fixed;
    text-align: center;
    background-color: #fff;
    height: 100%;
    width: 100%;
    left: -400px;
    transition: 0.5s ease-in-out;
    z-index: 99;
    display: none;
  }
  .sidebar ul {
    list-style: none;
    font-size: 24px;
    padding: 0;
  }
  .sidebar ul li {
    padding-top: 30px;
  }
  
  .sidebar a {
    text-decoration: none;
    color: #46979f;
    background: linear-gradient(-55deg, #000 40%, #fff 0 60%, #000 0) right/300%
        100% no-repeat,
      linear-gradient(-55deg, #0000 40%, #000 0 60%, #0000 0) right/300% 100%
        no-repeat;
    -webkit-background-clip: text, padding-box;
    background-clip: text, padding-box;
    transition: 0.9s;
  }
  .sidebar a:hover {
    background-position: left;
  }
  .sidebaractive {
    left: 0;
  }
  
  /*Hamburger icon*/
  .hamburger {
    /* top: -27px; */
    right: 10px;
    position: fixed;
    display: none;
  }
  .hamburger {
    height: 80px;
    position: absolute;
    width: 80px;
    /* top: 30px; */
    /* right: 20px; */
  }
  
  .plate {
    height: 100%;
    width: 100%;
  }
  .burger {
    filter: url(#gooeyness);
  }
  .x {
    transform: scale(0);
    transition: transform 400ms;
  }
  .line {
    fill: none;
    stroke: #fff;
    stroke-width: 6px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform-origin: 50%;
    transition: stroke-dasharray 500ms 200ms, stroke-dashoffset 500ms 200ms,
      transform 500ms 200ms;
  }
  .x .line {
    stroke-width: 5.5px;
  }
  .plate .x {
    transition: transform 400ms;
    display: none;
  }
  .plate .line {
    transform-origin: 50%;
    transition: transform 400ms 100ms;
  }
  .active.plate .line {
    transition: transform 400ms;
  }
  .active.plate .line1 {
    transform: translateX(18px) translateY(-3px) rotate(-45deg) scale(0.7);
  }
  .active.plate .line2 {
    transform: translateX(-18px) translateY(-3px) rotate(45deg) scale(0.7);
  }
  .active.plate .line3 {
    transform: translateY(0px) rotate(45deg) scale(0.7);
  }
  .active.plate .line4 {
    transform: translateY(0px) rotate(-45deg) scale(0.7);
  }
  .active.plate .line5 {
    transform: translateX(18px) translateY(3px) rotate(45deg) scale(0.7);
  }
  .active.plate .line6 {
    transform: translateX(-18px) translateY(3px) rotate(-45deg) scale(0.7);
  }
  .active.plate .x {
    transition: transform 400ms 100ms;
    transform: scale(1);
    display: none;
  }
  .menu-res {
    display: none;
  }
  .lang h3 {
    color: white;
  }
  img.hero-img2 {
    position: absolute;
    top: 0;
    z-index: -1;
    right: 0;
    animation: fadeInUp !important;
    animation-duration: 3s !important;
  }
  
  img.hero-img3 {
    position: absolute;
    top: 0;
    z-index: -2;
    right: 0;
    animation: fadeInRight !important;
    animation-duration: 3s !important;
  }
  
  img.hero-img4 {
    position: absolute;
    right: 0;
    z-index: -2;
    animation: fadeInLeft !important;
    animation-duration: 3s !important;
    top: 0;
  }
  img.hero-img1 {
    animation: fadeInTopRight !important;
    animation-duration: 3s !important;
  }
  section.hero-sec.hero-inner.case-single.service-single::before {
      display: none;
  }
  
  .inner-hero-vec.case-vec.single-case-vec.single-service img {
      width: 100%;
      height: auto;
  }
  .inner-hero-desc.single-c-desc.single-s-desc h4 {
      font-weight: 600;
      font-size: 30px;
      line-height: 32px;
  /* identical to box height, or 100% */
      display: flex;
      align-items: center;
      color: #FFEF14;
  }
  .inner-hero-desc.single-c-desc.single-s-desc {
      flex: 50%;
      max-width: 50%;
  }
  
  .inner-hero-vec.case-vec.single-case-vec.single-service {
      max-width: 35%;
      flex: 35%;
      position: relative;
  }
  .inner-hero-vec.case-vec.single-case-vec.single-service::after {
      content: "";
      position: absolute;
      background-image: url(../images/serv-t-vec.png);
      width: 123%;
      height: 121%;
      top: -43px;
      left: -64px;
      animation: spinoffPulse 30s linear infinite;
  }
  @keyframes spinoffPulse {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  .s-c-single-case-decs.single-serv-descs h4 {
      font-weight: 600;
      font-size: 24px;
      line-height: 24px;
  /* identical to box height, or 100% */
      color: #7E76F9;
      text-align: start;
      margin-bottom: 24px;
  }
  
  .s-c-single-case-decs.single-serv-descs h3 {
      font-weight: 700;
      font-size: 48px;
      line-height: 40px;
  /* identical to box height, or 83% */
      color: #282828;
  }
  
  .s-c-single-case-decs.single-serv-descs p {
      font-weight: 500;
      font-size: 20px;
      line-height: 28px;
  /* or 140% */
      display: flex;
      align-items: center;
      color: #979797;
  }
  
  .s-c-single-case-decs.single-serv-descs {
      max-width: 50%;
      flex: 50%;
  }
  
  .s-c-single-case-main.s-s-main.s-c-single-case-img {
      flex: 50%;
      max-width: 50%;
  }
  
  .s-c-single-case-main.s-s-main.s-c-single-case-img {
      flex: 50%;
  }
  
  section.t-c-single-serv {
      padding: 96px 0px;
  }
  .why-us-cards-sec {
      display: flex;
      justify-content: start;
      align-items: start;
      flex-wrap: wrap;
  }
  
  .why-us-card-outer {
      padding: 10px 12px;
      position: relative;
      flex: 25%;
      max-width: 25%;
  }
  
  .why-us-card {
      padding: 27px 24px 44px 24px;
      position: relative;
      background: #ffffff;
      border-radius: 12px;
      z-index: 9;
      transition: all 0.5s;
  }
  .why-us-card-num {
      display: flex;
      justify-content: center;
  }
  
  .why-us-card-num h4 {
      background: linear-gradient(90deg, #FFF33B 0%, #FFE029 5.9%, #FFD218 13%, #FEC90F 20.3%, #FDC70C 28.1%, #F3903F 66.8%, #ED683C 88.8%, #E93E3A 100%);
      padding: 10px 16px;
      border-radius: 50%;
      color: #F2F2F2;
      font-weight: 900;
      font-size: 15px;
      margin-bottom: 11px;
  }
  h3.sec-heading {
      text-align: center;
      font-weight: 700;
      font-size: 48px;
      line-height: 48px;
  /* identical to box height, or 100% */
      text-align: center;
      color: #282828;
      margin-bottom: 56px;
  }.why-us-card::after
  
  section.why-us-single-serv {
      padding: 96px 0px;
  }
  
  
  
  .why-us-card:hover {
      border-color: transparent;
      transform: translateY(-0.5rem);
      box-shadow: 0 10px 15px rgb(0, 0, 0, 0.16);
      transition: all 0.5s ease;
  }
  .why-us-card-outer::after {
      content: "";
      position: absolute;
      filter: blur(4px);
      width: 90%;
      height: 88%;
      background: #ECECEC;
      z-index: -9;
      top: 15px;
      border-radius: 12px;
  }
  section.why-us-single-serv {
      padding: 96px 0;
      background-image: url(../images/why-us-shape.png);
      background-size: cover;
      background-repeat: no-repeat;
      /* width: 100%; */
      height: 100%;
  }
  .why-us-cards-sec .why-us-card-outer:nth-child(even) {margin-top: 172px;}
  section.clients.clients-inner {
      background: #ffffff;
      margin-bottom: 200px;
  }
  .packages-card-btn.ordin {
      /* position: absolute; */
      margin: 0;
      left: 50%;
      /* transform: translate(-50%, -50%); */
      bottom: 36px;
  }
  
  .packages-card-btn.ordin a {
      padding: 0;
      margin: 0;
      width: 200px;
      height: 44px;
  }
  .packages-card-btn.ordin {
      /* position: absolute; */
      margin: 0;
      left: 50%;
      /* transform: translate(-50%, -50%); */
      bottom: 36px;
      display: flex;
      justify-content: center;
  }
  
  .packages-card-btn.ordin a {
      padding: 0;
      margin: 0;
      width: 200px;
      height: 44px;
  }
  .packages-cards-desc.enterprise h3 {
      color: #FF5D7D;
  }
  
  .packages-cards-desc.enterprise h3::after {
      background: #FF5D7D;
  }
  .packages-cards-desc.enterprise h3 {
      color: #5aa68b;
  }
  
  .packages-cards-desc.enterprise h3::after {
      background: #5aa68b;
      width: 33%;
      bottom: -8px;
      left: 84px;
  }
  section.hero-sec.hero-inner.case-single.service-single {
      margin: 0;
  }
  section.hero-sec.hero-inner.case-single.service-single::after {
      display: none;
  }
  .why-us-card-outer h3 {
      font-weight: 600;
      font-size: 20px;
      line-height: 32px;
  /* identical to box height, or 114% */
      text-align: center;
      color: #353535;
  }
  
  .why-us-card p {
      font-weight: 500;
      font-size: 15px;
      line-height: 28px;
  /* or 140% */
      color: black;
  }
  .case-last::after {
      content: "";
      position: absolute;
      background-image: url(../images/last-sec-affter.png);
      background-repeat: no-repeat;
      width: 1400px;
      height: 1400px;
      background-size: contain;
      top: 0;
      left: 10px;
      z-index: -9;
      /* background-position: top center; */
      animation: none;
  }
  .footer-title h3 a {
      font-weight: 500;
      font-size: 24px;
      line-height: 32px;
      color: #ffffff;
      margin-bottom: 26px;
      font-family: 'popins-bold';
  }
  .case-last {
      overflow: hidden;
  }
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
  
  }
  .home-header ul li a img {
      width: 38px;
      height: 25px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #FF9D01;
  }
  .lang-switch {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: row-reverse;
  }
  
  .lang-switch h3 {
      margin: 0 0px 0px 10px;
      padding: 0;
      font-size: 12px;
  }
  
  .lang-switch img {
      border-radius: 10px;
  }
  .hero-e-row {
      display: flex;
      gap: 16px;
      justify-content: center;
      align-items: start;
      flex: 33.333333%;
      max-width: 33.333333%;
  }
  
  .hero-e-row h3 {
      font-weight: 700;
      font-size: 20px;
      line-height: 24px;
  /* identical to box height, or 100% */
      color: #000000;
      margin-bottom: 12px;
  }
  
  .hero-e-img {
      max-width: 56px;
      height: auto;
  }
  
  .hero-e-img img {
      width: 100%;
  }
  
  .title-e-c-row {
      font-weight: 700;
      font-size: 24px;
      line-height: 24px;
  /* identical to box height, or 100% */
      color: #FFFFFF;
  }
  
  .hero-e-row p {
      font-weight: 500;
      font-size: 18px;
      line-height: 28px;
  /* or 140% */
      color: #000000;
      /* max-width: 60%; */
  }
  section.hero-sec.hero-inner.hero-e-commerce {
      padding: 240px 0px 59px 0px;
  }
  section.hero-sec.hero-inner.hero-e-commerce::before{
      content: "";
      position: absolute;
      width: 98%;
      height: 106%;
      background: url(../images/bread-vec.png) right bottom / 50% 100% no-repeat;
      bottom: -253px;
      right: 0px;
      z-index: 0;
  }
  .outer-serv-e-s {padding: 0px;max-width: 80%;margin: auto;}
  
  .e-commerce-card-s {
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .e-commerce-cards-icon-s {
      height: auto;
      margin: 0px 20px;
      max-width: 30%;
      flex: 30%;
  }
  
  .e-commerce-cards-icon-s img {
      width: 100%;
  }
  .e-card-desc-s h3 {
      font-weight: 600;
      font-size: 18px;
      line-height: 24px;
  /* identical to box height, or 75% */
      display: flex;
      align-items: start;
      color: #000000;
      margin-bottom: 20px;
      justify-content: start;
  }
  
  .e-card-desc-s p {
      font-weight: 500;
      font-size: 16px;
      line-height: 36px;
      color: #000000;
      text-align: center;
  }
  .e-commerce-serv .owl-dots {
      display: flex;
      position: absolute;
      top: 0;
      transform: translate(0%, -50%);
      gap: 96px;
      left: -90px;
      background: #ffffff;
      padding: 40px 0px;
      display: none;
  }
  
  .e-commerce-serv .owl-dots button {
      background: none;
      border: none;
      white-space: nowrap;
      font-weight: 500;
      font-size: 20px;
      line-height: 20px;
  /* identical to box height, or 83% */
      color: #9F9F9F;
      transition: all 0.5s ease;
      position: relative;
  }
  .e-commerce-serv .owl-dots .owl-dot.active button {
      font-weight: 600;
      font-size: 25px;
      line-height: 20px;
  /* identical to box height, or 71% */
      color: #5AA68B;
  }
  .e-commerce-serv .owl-dots .owl-dot.active button::after {
  width:71%;
  }
  .e-commerce-serv .owl-dots button::after {
      content: "";
      position: absolute;
      background: #5AA68B;
      height: 4px;
      bottom: -8px;
      left: 14%;
      border-radius: 16px;
      width: 0%;
      transition: all 0.5s ease;
  }
  .e-commerce-cards-s {
  }
  .sec-title.inner-e-sf h3 {
      margin-bottom: 60px;
  }
  a.btn-h.btn-w-app {
      width: 259px;
      height: 56px;
      display: flex;
      justify-content: space-around;
      align-items: center;
  }
  
  a.btn-h.btn-w-app i {color: #57A38F;transition: all 0.5s ease;font-size: 30px;}
  
  a.btn-h.btn-w-app h3 {
      font-weight: 600;
      font-size: 16px;
      line-height: 24px;
  /* identical to box height */
      display: flex;
      align-items: center;
      text-align: center;
      color: #57A38F;
  }
  section.store.inner-store {background: linear-gradient(0deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)), url(22535557_2112.w039.n003.47B.p1.jpg);}
  
  section.store.inner-store::before {
      display: none;
  }
  h3.enterpice {
      color: #FF5D7D;
  }
  
  h3.enterpice::after {
      color: #FF5D7D;
  }
  .packages-cards-desc.pro h3 {
      color: #5aa68b;
  }
  
  .packages-cards-desc.pro h3::after {
      background-color: #5aa68b;
      width: 32px;
      left: 110px;
  }
  .packages-cards-desc.customize h3 {
      color: #5aa68b;
  }
  
  .packages-cards-desc.customize h3::after {
      background-color: #5aa68b;
      left: 86px;
      width: 32%;
  }
  .packages-cards-desc.customize h4 {
      font-weight: 600;
      font-size: 20px;
      line-height: 20px;
  /* identical to box height, or 100% */
      text-align: center;
      color: #0F0F0F;
      margin-bottom: 16px;
  }
  
  .packages-cards-desc.customize p {
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
  /* or 150% */
      display: flex;
      align-items: center;
      text-align: center;
      color: #636363;
      margin-bottom: 40px;
  }
  a.whats-i-fexed {
      position: fixed;
      width: 55px;
      bottom: 50px;
      right: 25px;
      left: 25px;
      z-index: 9999999;
  }
  
  a.whats-i-fexed img {
      width: 100%;
      position: relative;
      background: #ffffff;
      border-radius: 78%;
      box-shadow: 0 7px 5px rgba(0,0,0,0.25), 0 8px 10px rgba(0,0,0,0.22);
      height: 100%;
  }
  section.packages::after {
      content: "";
      position: absolute;
      background-image: url(../images/Subtract.png);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: top center;
      width: 100%;
      height: 252.6px;
      top: 57%;
      z-index: -1;
      transform: scaleX(-1);
      opacity: 0.5;
  }
  section.testmonials {
      padding: 96px 0px;
      position: relative;
      
  }
  section.testmonials::after{
      content:"";
      position: absolute;
      background-image: url(../images/test-back.webp);
      background-size: cover;
      background-repeat: no-repeat;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: -1;
  }
  .test-img img {
    width: 100%;
}

.test-img {
    max-width: 200px;
    margin: 0 auto;
    margin-bottom: 69px;
}
  
  .test-desc {
    opacity: 0;
}
.owl-item.active.center .item{
    position: static !important;
    margin: 0px;
}
.testmonials-inner .owl-item.active.center .item img{
    max-width: 200px !important;
}
.owl-item.active.center .test-desc {
    opacity: 1;
    transition: all 0.5s ease;
}

.test-img h4 {
    font-weight: 600;
    font-size: 32px;
    line-height: 32px;
/* identical to box height, or 100% */
    text-align: center;
    opacity: 0;
    color: #000000;
}

.test-img h5 {
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
/* identical to box height, or 100% */
    text-align: center;
    color: #B4B4B4;
    opacity: 0;
}

.test-desc p {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
/* or 140% */
    text-align: center;
    color: #636363;
    margin: 0 auto;
    margin: 0 auto;
}

.testmonials-inner .owl-item:nth-child(odd) .item {
  /* background: red; */
  position: relative;
  top: 94px;
  transition: all 0.5s ease;
}
.testmonials-inner .owl-item:nth-child(even) .item {
  /* background: black; */
  transition: all 0.5s ease;
  position: relative;
  bottom: 0px;
}
.testmonials-inner .owl-item:nth-child(even) .item img {
    max-width: 120px;
    margin: 0 auto;
}

.testmonials-inner .owl-item:nth-child(odd) .item img {
    max-width: 160px;
    margin: 0 auto;
}
.test-img img {
    transition: all 0.5s ease;
}

.test-desc p {
    transition: all 0.5s ease;
}

.owl-stage-outer {}

section.testmonials .item {
    margin: 0px;
}
.containerwidth {
            width: 100%;
        }

        .wrapper {
            /* background-color: #ffffff; */
            /* padding: 10px 20px; */
            /* margin-bottom: 20px; */
            /* border-radius: 5px; */
            /* -webkit-box-shadow: 0 15px 25px rgba(0, 0, 50, 0.2); */
            /* box-shadow: 0 15px 25px rgba(0, 0, 50, 0.2); */
            border-bottom: 1px solid #ECECEC;
            padding-bottom: 24px;
        }

        .toggle,
        .content {
        }

        .toggle {
            width: 100%;
            text-align: start;
            background-color: transparent;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            font-size: 16px;
            color: #111130;
            font-weight: 600;
            border: none;
            outline: none;
            cursor: pointer;
            padding: 10px 0;
            font-weight: 600;
            font-size: 18px;
            line-height: 24px;
/* identical to box height, or 100% */
            color: #000000 !important;
        }
        .content {
            position: relative;
            font-size: 16px;
            text-align: start;
            line-height: 1.7;
            height: 0;
            -webkit-transition: all 1s;
            -o-transition: all 1s;
            transition: all 1s;
            overflow: hidden;
        }
.faq-h {
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-img {
    flex: 50%;
    max-width: 50%;
    position: relative;
    left: -117px;
}

.faq-img img {
    width: 100%;
}

.faq-con {
    flex: 50%;
    max-width: 50%;
}

section.faq {
    padding: 100px 0px 195px 0px;
}
.faq-con h3 {
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
/* identical to box height, or 100% */
    text-align: start;
    color: #282828;
}
.faq-con h3 {
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
/* identical to box height, or 100% */
    text-align: start;
    color: #282828;
}

button.toggle i {
    color: #000000;
    font-size: 30px;
}
.owl-item h4 {
}
.owl-item h5 {
}
.owl-item.active.center h4{
    opacity:1;
    margin-top: 16px;
    margin-bottom: 8px;
}
.owl-item.active.center h5{
    opacity:1;
}
.testmonials .owl-nav button {
    top: 89%;
}
.hero-inner a:hover i {
    color: #ffffff;
}
.inner-hero-desc a i {
    font-size: 30px;
}
.packages-cards-desc ul li {
    font-family: 'popins-medium';
}
.inner-hero-desc.single-c-desc.single-s-desc a i {
    margin-inline-end: 5px;
}
section.last-sec.case-last.contact-last .e-last {
    padding: 185px 0px;
}
a.whats-i-fexed.call.vert-move {
    bottom: 121px;
}
a.btn-h.btn-w-app.serv-sec-btn {
    width: 188px;
    height: 50px;
    font-size: 15px;
    padding: 0;
    justify-content: center;
    margin: 0 auto;
    direction: ltr;
    display: flex;
}

a.btn-h.btn-w-app.serv-sec-btn i {
    margin: 0px 8px;
    font-size: 27px;
    color: #ffffff;
    padding: 0 !important;
}
.serv-btn button {
    border: none;
}
.inner-h-desc-img img {
    width: 100%;
}

.inner-h-desc-img {
    max-width: 50%;
    flex: 50%;
    margin: 0 auto;
    padding-inline-start: 20px;
}
.inner-h-desc {
    max-width: 50%;
    flex: 50%;
}
.inner-h-desc {
    max-width: 50%;
    flex: 50%;
    text-align: start;
}

.inner-h-desc p {
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    color: #e8e8e8;
    margin-bottom: 40px;
    text-align: start;
}
.serv-details .sec-serv-d:nth-child(even) a.btn-h.btn-w-app.serv-sec-btn {
    /* position: absolute; */
    /* left: 0; */
}
@keyframes two {
  0% {
    width: 0px;
    height: 0px;
    opacity:0;
  }
  
  50% {
    width: 0px;
    height: 0px;
    opacity:1;
  }
  
  100% {
    width: 200%;
    height: 200%;
    opacity:0;
  }
}

a.whats-i-fexed.call.vert-move {
    animation: pulse 2s infinite alternate; /* referring directly to the animation's @keyframe declaration */
     /* don't forget to set a duration! */
}

a.whats-i-fexed.vert-move {
    animation: pulse 2s infinite alternate;
}

a.whats-i-fexed::after {
    content: "";
    position: absolute;
    background: transparent;
    border: 3px solid #FF9D01;
    top: 26px;
    left: 26px;
    width: 304%;
    height: 158%;
    z-index: -1;
    border-radius: 50%;
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -o-animation: two 2s infinite;
    -moz-animation: two 2s infinite;
    -webkit-animation: two 2s infinite;
    -ms-animation: two 2s infinite;
    animation-delay:0s;
    animation-timing-function: ease-in-out;
    background-color: #FF9D01;
}
.why-us-card.home-why-c {
    background: #F4FBF3;
    padding: 20px;
    height: 200px;
    max-width: 31.333333%;
    flex: 33.3333333%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.19), 0 0px 0px rgba(0,0,0,0.23);
}
.why-us-card-outer.home-why:nth-child(even) {
    margin-top: 0;
}
.i-title-home img {
    max-width: 30px;
    margin-inline-end: 10px;
}

.i-title-home {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 10px;
}

.i-title-home h4 {
    font-size: 19px;
    font-family: 'popins-medium';
    text-align: start;
    margin: 0;
}.why-us-card-outer.home-why {
    flex: 33.333333%;
    max-width: 33.333333%;
}
.why-us-card-outer.home-why {
    flex: 33.333333%;
    max-width: 33.333333%;
}
.why-us-card.home-why-c:nth-child(even) {
    background: #F3F9FE;
}
.second.column-f ul i {
    font-size: 20px;
}
.serv-list p {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    /* display: flex; */
    align-items: center;
    color: #000000;
}
.serv-h-p.single-inner-s {
    margin-bottom: 0px;
    display: flex;
    justify-content: start;
    flex-direction: row;
}
.serv-view-p.aec-single {
    flex-direction: row-reverse;
}

.serv-view-p.aec-single img {
    /* padding-inline-end: 39px; */
}
.sec-serv-d.inner-serv-aec {
    background: rgba(236, 234, 254, 0.3);
}
.why-us-cards-sec.new-why {
    gap: 20px;
}
.serv-h-p.single-inner-s h3 {
    font-size: 24px;
    color: black;
    font-family: popins-bold;
}
section.clients.clients-inner.s-clients {
    margin: 0;
}
.owl-item h5 span {
    font-family: 'popins-extra-bold';
}
.card-headeing h3 {
    color: black;
    font-style: normal;
    font-size: 20px;
    text-align: start;
}

.card-headeing h3 span {
    font-size: 24px;
    font-family: 'popins-extra-bold';
    color: #FF9D01;
}
.card-headeing button {
    font-weight: 600;
    font-size: 16px;
    line-height: 42px;
    display: inline-block;
    align-items: baseline;
    text-align: center;
    color: #ffffff;
    padding: 5px 27px;
    margin: 0;
    border: none;
    background: #FF9D01;
    border-radius: 46px;
}
.inner-hero-desc.e-c-c-desc {
    max-width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
}

.inner-hero-desc.e-c-c-desc.hero-e-row {
    max-width: 33.333333%;
    flex: 33.333333%;
}
section.sec-start-e-commerce {
    padding-top: 80px;
}
.e-card-desc-s {
    max-width: 70%;
    flex: 70%;
}
section.faq.faq-hh {padding: 0px;}

.serv-view-p-img.blog-img {
    text-align: center; /* توسيط الصورة */
}

.serv-view-p-img.blog-img img {
    max-height: 409px;
    width: auto; /* عرض الصورة بناءً على أبعادها الأصلية */
    height: auto; /* ارتفاع الصورة بناءً على نسبتها الطبيعية */
    object-fit: contain; /* تضمن أن الصورة تحتفظ بأبعادها الطبيعية وتتناسب مع الإطار */
    max-width: 100%; /* عدم تجاوز عرض الإطار */
    display: block;
    margin: 0 auto; /* توسيط الصورة داخل العنصر */
}

.serv-inner-p.blog-contain {
    display: flex;
    justify-content: center;
    align-items: center;
}

.serv-view-p-img.blog-thum {
    max-height: 400px;
    text-align: center; /* توسيط الصورة */
}

.serv-view-p-img.blog-thum img {
    height: auto;
    width: auto;
    object-fit: contain; /* تضمن أن الصورة تحتفظ بأبعادها الطبيعية وتتناسب مع الإطار */
    max-width: 100%; /* عدم تجاوز عرض الإطار */
    display: block;
    margin: 0 auto; /* توسيط الصورة داخل العنصر */
}

.blog-inner-p {
    justify-content: center;
    align-items: center;
    border: 1px solid #0000001f;
    margin: 60px 0px 100px;
}

.blog-desc {
    flex: 50%;
    max-width: 50%;
}

.hero-inner h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 72px;
    color: #ffffff;
    margin-bottom: 35px;
}

.blog-img {
    height: auto; /* السماح للصورة بأخذ ارتفاعها الطبيعي */
    margin-bottom: 25px;
    max-width: 100%; /* التحكم في عدم تجاوز عرض الإطار */
    text-align: center; /* توسيط الصورة */
}

.blog-img img {
    width: auto; /* السماح بعرض الصورة بشكل تلقائي بناءً على أبعادها الطبيعية */
    height: auto; /* السماح بارتفاع الصورة الطبيعي */
    max-width: 75%; /* ضمان عدم تجاوز عرض الإطار */
    object-fit: contain; /* تضمن أن الصورة تتناسب مع الإطار دون أن تكون ممطوطة */
    display: block;
    margin: 0 auto; /* توسيط الصورة داخل العنصر */
}

.card-headeing.blog-block-img img {
    width: 100%;
    height: 100%;
}
.inner-hero-desc.contact-hero p {
    text-align: center;
}
svg.burger {
    width: 100%;
    height: 100%;
}

html, body {
    overflow-x: hidden;
}
section.terms-sec {
    padding: 200px 0px;
}
navbar.terms-header {
    background: #FF9D01;
}
.side-blog.blog-inner-p {
    display: block;
    padding: 20px;
}

.img-blog-s-c {
    max-width: 40%;
    flex: 40%;
    height: auto;
}

.img-blog-s-c img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-s-c a {
    display: flex;
}

.blog-s-c a {}

.blog-s-c a h3 {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    padding: 0;
}

.blog-s-c {
    margin-bottom: 15px;
}

.title-blog-s-c {
    max-width: 60%;
    flex: 60%;
    padding-inline-start: 20px;
}
.side-blog h3 {
    font-size: 18px;
}
.blog-inner-p p img {
    width: 70%;
}

.blog-inner-p h3, h4 {
    padding: 0px 20px;
}

.blog-inner-p p {
    padding: 0px 20px;
}

.blog-inner-p h5 {
    padding: 0px 20px;
}

.blog-inner-p ul {
    padding: 0px 40px;
    list-style: disc;
}

.blog-inner-p ul li {
}

.blog-inner-p ol {
    padding: 0px 20px;
}

.blog-inner-p ol li {
    padding: 0px 20px;
}

.blog-inner-p h2 {
    padding: 0px 20px;
}
.date-blog-s-c {
    font-size: 13px;
    color: #0000005c;
}

.date-blog-s-c i {
    margin-inline-end: 5px;
}
.side-blog h3 {
    padding: 0;
}
h3.f-t-side-blog {
    margin-bottom: 18px;
    position: relative;
}

h3.f-t-side-blog::after {
    content: "";
    position: absolute;
    background: #4093a6;
    width: 25%;
    height: 4px;
    bottom: 0;
    left: 0;
    border-radius: 32px;
}
a.all-b-inner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px;
    background: #46979f;
    color: white;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    z-index: 999999;
    /* transition: all 2s ease; */
}

a.all-b-inner::after {
    height: 480px;
}

a.all-b-inner::after {
    position: absolute;
    content: "";
    background-color: #4093a6;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 100%;
    height: 0%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 1s;
}

a.all-b-inner:hover {
    /* background: transparent; */
    color: white;
}

a.all-b-inner:hover::after {
    height: 999%;
}
.social-single-tt {
    padding: 20px;
}

.social-single-tt i {
    background: #46979f;
    color: white;
    padding: 15px 20px;
    margin-inline-end: 10px;
    font-size: 20px;
    border-radius: 5px;
    transition: all 0.5s ease;
}

.social-single-tt i:hover {transform: translateY(-8px);}

form.contact-form .wpcf7 {
    width: 100%;
}
.sec-serv-new {
    padding-top: 60px;
}

.sec-serv-new h3 {
    text-align: center;
    margin-bottom: 15px;
}

.sec-serv-new p {
    font-size: 18px;
    line-height: 1.7;
}
.desc-img-ss {
    width: 100%;
    height: auto;
}

.desc-img-ss img {
    width: 100%;
}
.desc-img-ss {
    width: 100%;
}

.desc-img-ss img {
    width: 100%;
}
.serv-list.new-single-s ul {
    list-style: disc !important;
    padding-inline-start: 20px;
}

.serv-list.new-single-s ul li {
    display: list-item;
    margin-bottom: 15px;
    
}
.serv-n-btn {
    display: flex;
    justify-content: center;
}

.blog-inner-p h3 {
    font-size: 26px;
}
.blog-inner-p h4 {
    font-size: 24px;
}

.blog-inner-p h2 {
    font-size: 28px;
}

section {
    overflow: hidden;
}
section.hero-sec {
    overflow: visible;
}
.sub-menu {
    background: white;
}

.sub-menu a {
    color: #FF9D01 !important;
    transition: all 0.5s ease;
}

.sub-menu {
    position: absolute;
/*     display: block !important; */
    width: 232px;
    /*top: 75px;*/
    opacity: 0;
    transition: all 0.5s ease;
    padding: 10px !important;
    z-index: 99999;
    border-radius: 10px;
    border: 1px solid #FF9D01;
}

.sub-menu li {
    margin: 0px !important;
    transition: all 0.5s ease !important;
    padding: 10px 0px;
    padding-inline-start: 5px;
}

.menu-item-has-children {
  /*  position: relative;*/
}

.menu-item-has-children:hover ul {
    opacity: 1;
}
.sub-menu li:hover {
    background: #02b3b7;
}

.sub-menu li:hover a {
    color: white !important;
}


/* إخفاء القوائم المنسدلة بشكل افتراضي */
.menu-item-has-children > ul {
    display: none;
    position: absolute; /* لضمان عدم تأثيرها على التخطيط */
    z-index: 1000; /* لضمان ظهورها فوق العناصر الأخرى */
}

/* إظهار القوائم المنسدلة عند الوقوف على العنصر الأساسي */
.menu-item-has-children:hover > ul {
    display: block;
}

/* إبقاء السهم دون تغيير */
.menu-item-has-children::after {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    color: #d1d1d1;
    position: relative;
    left: -5px;
    top: 2px;
}

.menu-item-has-children:hover::after {
    color: white;
}

/* باقي الكود */
li.dot-pack i {
    font-size: 14px;
    margin-inline-end: 8px;
    font-weight: 900;
    background: #FF9D01;
    color: white;
    border-radius: 50%;
    padding: 3px 4px;
    height: 20px;
}

li.dot-pack {
    font-size: 19px;
    border-bottom: 1px solid #0000001c;
    padding-bottom: 17px;
    display: flex;
    line-height: 1.7;
    align-items: baseline;
}

ul.dot-pack-list {
    padding: 0;
}

.new-dots {
    margin-bottom: 50px;
}

.n-n-c-p {
    max-width: none;
    height: 108%;
    width: 100%;
}

.new-packges {
    justify-content: center;
}


.fa-x {
    color: red !important;
}
section.landinf-hero-1 .row {
    justify-content: center;
}

.logo-hero-landing {
    width: 200px;
    margin-bottom: 33px;
}

.logo-hero-landing img {
    width: 50%;
    height: 100%;
}

.all-hero-landing {display: flex;flex-direction: column;align-items: center;padding-top: 50px;}

.illi-hero-landing {
    width: 550px;
    margin-bottom: 30px;
}

.illi-hero-landing img {
    width: 100%;
    height: 100%;
}
.title-hero-landing h3 {
    font-size: 36px;
    font-weight: 800;
    font-family: almarai extra;
    color: #FF9D01;
}

.title-hero-landing {
    margin-bottom: 30px;
}

.landinf-hero-1 {
    position: relative;
}

.landinf-hero-1::after {
    content: "";
    position: absolute;
    width: 245px;
    height: 464px;
    background-image: url(../images/last-pattern.png);
    top: 0;
    left: 0;
    /* rotate: 180deg; */
    opacity: 1;
    background-size: contain;
    /* opacity: 0.4; */
    background-repeat: no-repeat;
}
.f-sec-desc p {
    color: #FF9D01;
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
}

.f-sec-desc p span {
    color: #5aa68b;
}

.f-sec-link a {
    font-size: 17px;
    display: flex;
    gap: 10px;
    align-items: end;
    justify-content: center;
    padding: 10px 10px;
}

.f-sec-link a i {font-size: 27px;}
section.s-sec-land-1 .row {
    justify-content: center;
}

.s-sec-ill-landing {
    width: 440px;
}

.s-sec-ill-landing img {
    width: 100%;
    height: 100%;
}

.all-s-sec-con {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section.s-sec-land-1 {
    padding: 100px 0px;
    position: relative;
}

.landing h3 {
    color: #FF9D01;
}

.landing h3 span {
    color: #5aa68b;
}
.s-sec-title-land h3 {
    font-size: 22px;
}

.s-sec-ill-land .row {
    align-items: center;
}
.m-s-title-land {
    margin-bottom: 24px;
}
.single-landing_1 {
    position: relative;
    overflow: hidden !important;
}

.single-landing_1::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/over-patt.svg);
}
.all-s-sec-con::after {
    content: "";
    position: absolute;
    width: 334px;
    height: 372px;
    background-image: url(../images/abs-shape.png);
    top: 0;
    right: -157px;
    rotate: 12deg;
    opacity: 1;
    background-size: cover;
    opacity: 0.4;
}
.landing .row {
    justify-content: center;
}

.sec-title-land h3 {
    font-size: 36px;
    font-weight: 800;
    font-family: almarai extra;
    color: black !important;
    text-align: center;
    margin-bottom: 30px;
}
.res-image {
    width: 80%;
    height: 692px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.res-image img {width: 100%;height: 100%;}
.testimonials .res-image {
    height: 180px;
    width: calc(100% - 10px);
    margin: 0px;
}

.test-clients {
    margin-bottom: 30px;
}

.testimonials {
    padding: 100px 0px;
}
.testimonials button.owl-prev {
    position: absolute;
    left: -60px !important;
    right: auto;
}

.testimonials button.owl-next {
    position: absolute;
    right: -60px !important;
    left: auto;
}
.img-call-to-acc img {
    width: 100%;
    height: 100%;
}

.img-call-to-acc {
    width: 450px;
    margin: 0 auto;
    rotate: 320deg;
}

.lat-call-t-acc {
    text-align: center;
}

.lat-call-t-acc a {font-size: 36px;font-weight: 800;font-family: almarai extra;color: #5aa68b;border-bottom: 5px solid;}
.mobile-mock-img img {
    width: 100%;
    height: 100%;
}

section.hero-land-2 .row {
    align-items: center;
}

.mobile-mock-img {
    width: 70%;
    height: auto;
}

.her0-shape.land-new {
    left: auto;
    right: 0;
    transform: none;
}
.logo-land-2 {
    position: absolute;
    max-width: 200px;
    left: 140px;
    top: 10px;
}

section.hero-land-2 {
    position: relative;
}

.logo-land-2 img {
    width: 100%;
    height: 100%;
}
.land-2-desc h3 {
    color: #FF9D01;
    font-family: almarai extra;
    font-size: 32px;
    margin-bottom: 20px;
}

.land-2-desc p {
    font-size: 16px;
}
.land-2-desc {
    margin-bottom: 30px;
}
section.banner-land-2 {
    padding: 60px 0px;
    margin: 100px 0px;
    background: linear-gradient(180deg, #4093a6 0%, #FF9D01 100%);
    position: relative;
    overflow: visible;
}

.banner-desc-land {
    text-align: center;
    margin-bottom: 27px;
}

section.banner-land-2 a {color: #4093a6;background: white;}

section.banner-land-2 a:hover {
    color: white;
}

.banner-desc-land h3 {
    color: white;
    font-size: 36px;
}
.ill-banner-land-2 {
    position: absolute;
    max-width: 375px;
    z-index: 6;
    top: -225px;
    left: -47px;
}

.ill-banner-land-2 img {
    width: 100%;
    height: 100%;
}
.sec-title-chrt {
    text-align: center;
}

.sec-title-chrt h3 {
    color: #FF9D01;
    font-size: 48px;
    font-family: almarai extra;
}

section.chart-land {
}

.chart-img {
    width: 100%;
    height: 785px;
}

.chart-img img {
    width: 100%;
    height: 100%;
}
section.chart-land a {
    padding: 20px 92px;
    font-size: 30px;
}

section.chart-land a i {
    font-size: 45px;
}
.our-con-block img {
    width: 100%;
    height: 100%;
}

.our-con-block {
    width: 350px;
    height: 100%;
    margin: 0 auto;
}

section.our-con-landing {
    padding: 100px 0px;
}

.sec-title-basic {
    text-align: center;
    margin-bottom: 45px;
}

.sec-title-basic h3 {
    color: #FF9D01;
    font-size: 42px;
}
section.ask-answer {
    padding-bottom: 100px;
}

.ask-ans-block {
    border: 3px solid #FF9D01;
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 20px;
    transition: all 0.5s ease;
}

.ask-ans-block h3 {
    font-size: 28px;
}

.ask-ans-block:hover {
    border: 3px solid transparent;
    box-shadow: 0 10px 15px rgb(0, 0, 0, 0.16);
    transform: translateY(-0.5rem);
}
section.fixed-btn {
    position: fixed;
    bottom: -43px;
    transform: translate(-50%, -50%);
    left: 50%;
    z-index: 99999;
    background: #5aa68b;
    width: 100%;
    padding: 16px 0px;
}
.logo-3-land {
    width: 100px;
    margin-bottom: 10px;
}

.f-hero-all-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.f-hero-all-3 h3 {
    margin-bottom: 60px;
}

.f-hero-all-3 a {
    margin-bottom: 40px;
}

.f-hero-all-3 p {
    font-size: 24px;
    font-weight: 600;
}
.landinf-hero-3 {
    padding-top: 30px;
}
.f-hero-all-3 a {
    font-size: 21px;
}

.f-hero-all-3 i {
    font-size: 27px;
    margin-inline-end: 10px;
}
section.serv-details.more-sec-landing .serv-list {
    text-align: center;
}
section.clients-res-land3 {
    padding: 100px 0px;
}

.serv-packg-n {
  display: none;
}

.hero-img.vert-move.mobile-img-hero {
  display: none;
}

.btn-form {
  border: none !important;
  height: 0px;
  background: #FF9D01;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  width: 100%;
  border-radius: 10px;
  transition: all 0.5s ease;
}
.form-contact p {
  width: 100%;
}
.btn-form:hover {
  color: #4093a6;
}
.e-commerce-card-s {
    background-color: #fff; /* لون خلفية البلوك */
    border: 1px solid #ddd; /* حد للبلوك */
    border-radius: 10px; /* زوايا دائرية */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* ظل خفيف للبلوك */
    padding: 20px; /* مساحة داخلية للبلوك */
    text-align: center; /* توسيط النص داخل البلوك */
    transition: transform 0.3s, box-shadow 0.3s; /* تأثير التحريك والظل */
    height: 100%; /* جعل البلوك يمتد ليملأ الحاوية بالكامل */
    display: flex; /* استخدام flexbox لتنسيق العناصر */
    flex-direction: column; /* ترتيب العناصر عموديًا */
    justify-content: center; /* توسيط العناصر عموديًا */
    align-items: center; /* توسيط العناصر أفقيًا */
}

.e-commerce-card-s:hover {
    transform: translateY(-10px); /* تحريك البلوك للأعلى عند التمرير */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* زيادة ظل البلوك عند التمرير */
}

.e-commerce-cards-icon-s img {
    width: 80px; /* عرض الأيقونة */
    height: 80px; /* ارتفاع الأيقونة */
    margin-bottom: 15px; /* مسافة أسفل الأيقونة */
    border-radius: 50%; /* جعل الأيقونة دائرية */
    border: 2px solid #ddd; /* حد للأيقونة */
    transition: transform 0.3s; /* تأثير التحريك عند التمرير */
}

.e-commerce-cards-icon-s img:hover {
    transform: scale(1.1); /* تكبير الأيقونة عند التمرير */
}

.e-card-desc-s {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; /* توسيط النص داخل البلوك */
    height: 100%;
}

.e-card-desc-s h3 {
    font-size: 1.5em; /* تغيير حجم النص */
    margin-bottom: 10px; /* إضافة مسافة أسفل العنوان */
    color: #333; /* تغيير لون العنوان */
    line-height: 1.2; /* تغيير تباعد الأسطر */
    text-align: center; /* توسيط النص داخل العنوان */
}

.e-card-desc-s p {
    color: #666; /* تغيير لون النص */
    line-height: 1.6; /* تغيير تباعد الأسطر */
    text-align: center; /* توسيط النص داخل الفقرة */
}
.whatsapp-button {
    display: flex;
    justify-content: center; /* محاذاة الزر إلى المنتصف */
    margin-top: 20px; /* مسافة بين الزر والمحتوى السابق */
}

.whatsapp-button a {
    background-color: #02B3B7;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.whatsapp-button a:hover {
    background-color: #128C7E; /* تغيير اللون عند الوقوف على الزر */
}

.whatsapp-button a::after {
    content: attr(href); /* إظهار الرابط */
    position: absolute;
    bottom: -20px; /* مسافة تحت الزر */
    left: 50%;
    transform: translateX(-50%);
    color: #25D366;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s, bottom 0.3s;
}

.whatsapp-button a:hover::after {
    bottom: -30px; /* تحريك الرابط للأسفل عند الوقوف على الزر */
    opacity: 1; /* إظهار الرابط */
}
/* شريط ثابت أسفل الصفحة */
.fixed-footer-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #28A745;
  text-align: center;
 /* padding: 15px 0;*/
  z-index: 1000;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.fixed-footer-bar a {
  color: #fff;
  text-decoration: none;
  font-size: 32px;
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 0;
  background-color: #28A745;
  text-align: center;
  border-radius: 0;
}

.fixed-footer-bar a img {
  margin-right: 8px;
}

@media (max-width: 600px) {
  .fixed-footer-bar a {
    font-size: 16px;
    padding: 15px 0;
  }
}
.store-desc {
    text-align: center; /* لتوسيط المحتوى */
}

.header-icon {
    display: block; /* لجعل الصورة تبدأ في سطر جديد */
    margin: 0 auto 10px; /* إضافة مسافة بين الأيقونة والعنوان */
}

h3 {
    margin-top: 0;
}
.faq-header {
    text-align: center;
    margin-bottom: 30px; /* Adjust space between header and the rest of the section */
}

.faq-icon img {
    display: block;
    margin: 0 auto;
    max-width: 100px; /* Adjust size of the icon */
}

.faq-header h3 {
    margin-top: 10px; /* Adjust space between the icon and the title */
    font-size: 28px;
    font-weight: bold;
    color: #333; /* Adjust color as needed */
}

.faq {
    padding-top: 50px; /* Adjust space between the top of the section and the content */
}
.live-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    z-index: 1000; /* Ensures it stays on top */
}

.chat-icon img {
    width: 90px; /* Size of the chat icon */
    height: 90px;
    cursor: pointer;
}

.welcome-message {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
    margin-left: 10px;
    font-size: 14px;
    color: #333;
    max-width: 200px;
}

.welcome-message p {
    margin: 0;
}
/* ====== General Styling ====== */
.products-h {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.prod-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* ====== Product Card Styling ====== */
.prod-card-outer {
    width: calc(33.33% - 20px);
    max-width: 350px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.prod-card-outer:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.prod-card {
    text-align: center;
    padding: 20px;
}

/* ====== Product Image ====== */
.prod-img img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* ====== Product Title ====== */
.prod-desc h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.prod-desc h4 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.prod-desc h4 a:hover {
    color: #0073e6;
}

/* ====== Product Description ====== */
.prod-desc p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* ====== Button Styling ====== */
.prod-btn button {
    background-color: #0073e6;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.prod-btn button:hover {
    background-color: #005bb5;
}

/* ====== Responsive Styling ====== */
@media (max-width: 992px) {
    .prod-card-outer {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .prod-card-outer {
        width: 100%;
    }
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.product-item {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-image img {
    max-width: 100%;
    border-radius: 8px;
}

.product-title {
    font-size: 18px;
    margin: 15px 0 10px;
    color: #333;
}

.product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.product-price {
    font-size: 16px;
    font-weight: bold;
    color: #1d72b8;
    margin-bottom: 10px;
}

.product-btn a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.product-btn a:hover {
    background-color: #1ebe57;
}

.partners-section {
  background-color: #ffffff;
  padding: 60px 20px;
  direction: rtl; /* مهم للعرض بالعربي */
}

.partners-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

/* النصوص */
.partners-text-box {
  flex: 1 1 35%;
  text-align: right;
}

.partners-text-box h2 {
  font-size: 26px;
  font-weight: bold;
  color: #1b1b1b;
  margin-bottom: 15px;
}

.partners-text-box p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.7;
}

.partners-text-box a.partners-cta {
  font-size: 16px;
  color: #0077b6;
  text-decoration: none;
  font-weight: 600;
}

.partners-text-box a.partners-cta span {
  margin-right: 5px;
}
.partners-section {
  background: #f1f7fb;
  padding: 60px 0;
  direction: rtl;
}

.partners-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partners-content {
  flex: 1;
  min-width: 280px;
  max-width: 450px;
}

.partners-title {
  font-size: 26px;
  font-weight: bold;
  color: #0e1c3f;
  margin-bottom: 20px;
  line-height: 1.6;
}

.partners-cta {
  color: #007bff;
  font-weight: bold;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.partners-cta:hover {
  color: #0056b3;
}

.partners-logos {
  flex: 2;
  min-width: 280px;
}

.partner-logo-item {
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
  transition: transform 0.3s;
}

.partner-logo-item img {
  max-height: 50px;
  object-fit: contain;
  width: auto;
  height: auto;
}

.partner-logo-item:hover {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .partners-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .partners-content {
    text-align: center;
  }
}
.testimonials-section {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
  direction: rtl;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading .subtitle {
  font-size: 16px;
  color: #777;
  margin-bottom: 10px;
}

.section-heading .title {
  font-size: 32px;
  font-weight: bold;
 font-family: almarai extra;
  color: #222;
}

.section-heading .title span {
  color: #0073e6;
}

.testimonial-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  margin: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card .quote {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-card .name {
  font-weight: bold;
  color: #000;
}

.stars {
  color: #FFD700;
  font-size: 18px;
  margin-top: 10px;
}






