/* google fonts cdn */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");

/* Base css start */

:root {
  /* fonts */
  --tajawal: "Tajawal", sans-serif;
  --inter: "Inter", sans-serif;
  --manrope: "Manrope", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ol,
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style-type: none;
}

a,
button {
  transition: all 0.3s;
}
a {
  text-decoration: none;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
.container-fluid {
  padding-inline: 20px;
}
body {
  font-family: var(--tajawal);
  color: #060b13;
}

h2 {
  font-size: 44px;
  line-height: 1.3;
  letter-spacing: -1.25px;
  margin-bottom: 16px;
}
h2 strong,
h2 span {
  color: #6e51e0;
}
.section__title--lg {
  font-size: 58px;
  line-height: 1.32;
  letter-spacing: -1.61px;
}
.section__subtitle {
  font-size: 14px;
  line-height: 24px;
  color: #6e51e0;
  letter-spacing: -0.18px;
  margin-bottom: 16px;
}
.section__header {
  margin-bottom: 32px;
}
.section__desc {
  line-height: 2;
  color: #363d4f;
  letter-spacing: -0.18px;
}

.section__list li {
  gap: 12px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.18px;
}
.section__list li img {
  width: 24px;
}

.section__bg img {
  min-height: 100px;
}
.section__bg img:not(:first-child) {
  transform: rotate(180deg);
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background-color: #6e51e0;
  color: #fff;
  border-radius: 50px;
  padding-inline: 36px;
  font-weight: 500;
  letter-spacing: -0.18px;
  border: 0;
}
.theme-btn:hover {
	background-color: #866de8;
}
.theme-btn--sm {
  height: 40px;
  font-size: 14px;
  padding-inline: 15px;
}
.theme-btn--white {
  background: linear-gradient(180deg, rgba(236, 239, 243, 0) 0%, rgba(236, 239, 243, 0.04) 100%);
  color: #6e51e0;
  box-shadow:
    0px 0.5px 1px 0px #666d8033,
    0px 3px 4px -2px #80889729,
    0px 0px 0px 1.5px #e9ebf1;
}
.theme-btn--white:hover {
	background-color: #e6e6e6;
}

.section__circle-shape {
  width: 448px;
  height: 448px;
}
/* Base css end */

/* header start */
.header {
  top: 32px;
}
.header .container {
  max-width: 1384px;
}
.header__wrapper {
  padding-inline: 44px 36px;
  border: 1px solid #e9ebf1;
  box-shadow: 0px 0px 0px 5px #fff;
  padding-bottom: 1px;
}
.header__logo img {
  width: 81px;
}
.header__btn {
  font-weight: 800;
}
/* header end */

/* hero section start */
.hero {
  padding-top: 176px;
}

.hero__title {
  font-size: 100px;
  line-height: 1.16;
  letter-spacing: -0.07em;
  max-width: 780px;
  padding-bottom: 86px;
}
.hero__title-shape {
  width: 288px;
  bottom: -25px;
  left: -12px;
  transform: rotate(-10deg);
}
.gradient-text {
  background-image: radial-gradient(112.5% 384.69% at 88.05% 11.25%, #6e51e0 38.16%, rgba(31, 16, 76, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-kerning: none;
}
.hero__images {
  gap: 17px;
}
.hero__img {
  width: 323px;
}
.hero__img:nth-child(2) {
  width: 350px;
}
.hero__annotation--left {
  right: -85px;
  bottom: 136px;
}
.hero__annotation-text {
  font-size: 22px;
  line-height: 26px;
  color: #2c3033;
  font-weight: 700;
  transform: rotate(-25deg);
}
.hero__annotation-text span {
  background-color: #fce566;
  border-radius: 50px;
  padding: 4px;
}
.hero__annotation-arrow {
  width: 130px;
}
.hero__annotation--left .hero__annotation-arrow {
  transform: rotate(180deg);
  margin-top: -10px;
}
.hero__annotation--right {
  top: 130px;
  left: -64px;
}
.hero__annotation--right .hero__annotation-arrow {
  margin-bottom: 16px;
}
.hero__annotation--right .hero__annotation-text {
  transform: rotate(-20deg);
}
.hero__bg {
  height: 712px;
}
/* hero section end */

/* brands section start */
.brands {
  padding-block: 72px 18px;
  --brands-gap: 88px;
  --brands-duration: 15s;
}
.brands__title {
  font-size: 40px;
  line-height: 1.15;
  padding: 20px 36px 12px;
  background-color: #e9ebf1;
  border-radius: 18px;
  letter-spacing: 0;
  margin-bottom: 98px;
}
.brands__marquee {
  max-width: 1168px;
}
.brands__logo {
  height: 64px;
  width: auto;
}
.brands__track {
  width: max-content;
  gap: var(--brands-gap);
  animation: brands-marquee var(--brands-duration) linear infinite;
  will-change: transform;
}
@keyframes brands-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .brands__track {
    animation: none;
  }
}

/* brands section end */

/* features section start */
.features {
  padding-block: 80px;
}
.features__cards {
  max-width: 1140px;
}
.features__cards .row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}
.card {
  border: 0;
  border-radius: 32px;
  background-color: #f7f8fa;
  box-shadow: 5px 8px 20px 0px #bfbfbf40;
  padding: 54px 32px;
  align-items: center;
}
.card-icon {
  width: 129px;
  height: 115px;
  margin-bottom: 24px;
}
.card-icon img {
  max-width: 100%;
  max-height: 100%;
}
.card-title {
  font-size: 30px;
  letter-spacing: -0.055em;
  margin-bottom: 16px;
}
.card-desc {
  font-size: 20px;
  line-height: 1.32;
  letter-spacing: -0.035em;
  color: #727272;
}
.features__bg {
  width: 1590px;
  top: -196px;
  right: -272px;
  transform: rotate(-24deg);
}
/* features section end */

/* market section start */
.market {
  padding-bottom: 61px;
  padding-top: 16px;
}
.market__wrapper {
  gap: 24px;
}
.market__content {
  flex: 1;
  padding-top: 96px;
}
.market__visuals {
  gap: 20px;
}
.market__thumb {
  width: 310px;
  border-radius: 18px;
  box-shadow: 0px 18.04px 144.34px 0px #060b131a;
  background-color: #fff;
  padding: 5px;
  margin-top: 215px;
}
.market__thumb img {
  border-radius: inherit;
}
.market__thumb--two {
  width: 375px;
}
.market__visuals-bg {
  top: 67px;
  left: 140px;
}
.market__emoji {
  width: 64px;
  left: 210px;
  bottom: 30px;
}
.market .section__subtitle {
  margin-bottom: 30px;
}
.market .section__title {
  margin-bottom: 40px;
}
/* market section end */

/* subscribe section start */
.subscribe {
  padding-block: 64px 57px;
}
.subscribe__wrapper {
  gap: 77px;
}
.subscribe__thumb--one {
  width: 311px;
}
.subscribe__thumb--two {
  width: 368px;
  padding: 16px;
  border-radius: 48px;
  background-color: #fff;
  box-shadow: 0px 48.89px 391.11px 0px #060b131a;
  margin-inline-start: 154px;
}
.subscribe__content {
  flex: 1;
  max-width: 488px;
}
.subscribe__form {
  max-width: 360px;
  font-family: var(--inter);
}
.form__input-field {
  height: 50px;
  border: 0;
  padding-inline: 16px;
  box-shadow:
    0px 0px 0px 1px #e9ebf1 inset,
    0px 0.4px 1px 0px #666d8033;
}
.form__input-field::placeholder {
  color: #979fb4;
}
.form__note {
  font-size: 14px;
  line-height: 24px;
  color: #505a71;
}
.subscribe .section__circle-shape {
  top: 50px;
  right: 36px;
}
/* subscribe section end */

/* alert section start */
.alert-section {
  padding-block: 32px 85px;
}
.alert__content {
  width: 595px;
  padding-top: 28px;
}
.alert__visuals {
  flex: 1;
  gap: 20px;
}

.alert__card--white {
  max-width: 396px !important;
  width: 100%;
  overflow: hidden;
  padding: 3px !important;
  box-shadow: 0px 7.77px 62.16px 0px #060b131a;
}
.alert__card:nth-child(2) {
  margin-right: -52px;
}
.alert__card {
  max-width: 364px;
  border-radius: 18px;
  background-color: #25252599;
  -webkit-backdrop-filter: blur(32px);
  backdrop-filter: blur(32px);
  padding: 9px 6px 18px 16px;
  gap: 7px;
}
.alert__card-icon {
  width: 45px;
}
.alert__card-title {
  font-size: 14px;
  line-height: 17px;
}
.alert__card-time {
  font-size: 13px;
  line-height: 16px;
  color: #ebebf599;
  letter-spacing: -0.2px;
}
.alert__card-header {
  margin-bottom: 8px;
}
.alert__card-desc {
  font-size: 14.76px;
  line-height: 1.25;
  letter-spacing: -0.2px;
}
.alert-section .section__circle-shape {
  top: 0;
  right: 64px;
}
.alert__flash-icon {
  width: 67px;
  top: 184px;
  left: 116px;
}
/* alert section end */

/* portfolio section start */
.portfolio {
  padding-block: 120px 112px;
  background-color: #f7f8fa;
}
.portfolio .section__header {
  max-width: 700px;
  margin-bottom: 64px;
}
.portfolio .section__title span {
  color: #fff;
  box-shadow:
    0px 1px 1px 0px #26145580,
    0px 0px 0px 1.5px #6e51e0,
    0px 6px 8px -4px #7f51f24d;
  background-image: linear-gradient(to bottom, #9681e8 0%, #6e51e0 100%);
  border-radius: 100px;
  padding-inline: 32px;
  padding-bottom: 8px;
  display: inline-block;
}
.portfolio__wrapper {
  max-width: 1040px;
}
.portfolio__wrapper .row {
  --bs-gutter-x: 48px;
  --bs-gutter-y: 48px;
}
.portfolio__item {
  gap: 24px;
  color: inherit;
}
.portfolio__thumb {
  height: 265px;
  border: 1px solid #e9ebf1;
}
.portfolio__title {
  font-size: 21.75px;
  line-height: 1.32;
  margin-bottom: 16px;
}
.portfolio__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #363d4f;
  letter-spacing: -0.09px;
}
/* portfolio section end */

/* ai section start */

.ai {
  padding-block: 120px;
}
.ai .section__header {
  margin-bottom: 48px;
}
.ai__features {
  width: 240px;
  gap: 64px;
}
.ai__feature-icon {
  width: 48px;
  height: 48px;
  border: 1px solid #e9ebf1;
  margin-bottom: 16px;
}
.ai__feature-title {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.26px;
  margin-bottom: 16px;
}
.ai__feature-text {
  font-size: 14px;
  line-height: 1.7;
  color: #363d4f;
  letter-spacing: -0.09px;
  font-family: var(--inter);
}
.ai__thumb {
  width: 448px;
  margin-inline: 32px 72px;
}
/* ai section end */

/* download section start */

.download {
  padding-bottom: 120px;
}
.download .section__header {
  max-width: 495px;
  margin-bottom: 50px;
}
.download__qr-title {
  font-size: 30px;
}
.download__qr-image {
  width: 292px;
}
.download__wrapper {
  gap: 120px;
}
.download__or {
  font-size: 70px;
  color: #6e51e0;
  letter-spacing: 0.01em;
  text-shadow: 0px 4px 12px #1ed7601a;
}
.download__btns {
  gap: 28px;
}
.download__btn {
  width: 354px;
}
.download__btn-icon {
  width: 35px;
  position: absolute;
  top: -26px;
  left: -32px;
  transform: rotate(-177.74deg);
}
.download__note {
  line-height: 2;
  color: #353d4f;
  margin-top: 90px;
  letter-spacing: -0.18px;
}
/* download section enc */

/* testimonial section start */
.testimonial {
  padding-top: 120px;
  padding-bottom: 16px;
  background-color: #f7f8fa;
}
.testimonial .section__header {
  margin-bottom: 64px;
}
.testimonial__container {
  max-width: 1072px;
}
.testimonial__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial__card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow:
    0px 0px 0px 4px #fff,
    0px 12px 40px 0px #060b130a;
  padding: 16px 32px 32px;
  border: 1px solid #e9ebf1;
}
.testimonial__stars {
  gap: 4px;
  margin-bottom: 12px;
}
.testimonial__stars img {
  width: 18px;
}
.testimonial__text {
  font-size: 14px;
  line-height: 1.7;
  color: #363d4f;
  letter-spacing: -0.09px;
  flex-grow: 1;
  margin-bottom: 40px;
  min-height: 90px;
}
.testimonial__user {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--inter);
}
.testimonial__user-avatar {
  width: 48px;
  height: 48px;
}
.testimonial__user-name {
  font-size: 14px;
  line-height: 1.7;
  color: #060b13;
  letter-spacing: -0.09px;
  margin-bottom: 0;
}
.testimonial__user-username {
  font-size: 12px;
  line-height: 20px;
  color: #6e51e0;
  font-weight: 500;
}
.testimonial__icon {
  width: 48px;
  height: 48px;
  border: 1px solid #e9ebf1;
}
.testimonial__show-more-btn {
  bottom: 72px;
  box-shadow:
    0px 1px 1px 0px #26145580,
    0px 6px 8px -4px #7f51f24d,
    0px 0px 0px 1.5px #6e51e0;
  background-image: linear-gradient(to bottom, #9681e8 0%, #6e51e0 100%);
  padding-inline: 12px;
  font-size: 14px;
  white-space: nowrap;
}
.testimonial::after {
  content: "";
  width: 100%;
  height: 332px;
  background-image: linear-gradient(180deg, rgba(233, 235, 241, 0) 0%, #e9ebf1 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.testimonial__star-shape {
  width: 136px;
  top: 4px;
  left: 16px;
  transform: rotate(-31deg);
}
/* testimonial section end */

/* cta section start */
.cta {
  padding-block: 140px;
  background-color: #f7f8fa;
}
.cta .section__bg img {
  max-height: 192px;
}
.cta__wrapper {
  gap: 120px;
}
/* cta section end */

/* footer section start */
.footer {
  padding-block: 98px 48px;
}
.footer__wrapper {
  gap: 90px;
  padding-bottom: 100px;
}
.footer__logo img {
  width: 90px;
}
.footer__intro-text {
  font-size: 14px;
  line-height: 1.7;
  color: #363d4f;
  letter-spacing: -0.09px;
}
.footer__contact {
  padding-top: 28px;
  gap: 22px;
}
.footer__contact-link {
  gap: 6px;
  color: #000000;
}
.footer__contact-link:hover {
  text-decoration: underline;
}
.footer__newsletter {
  max-width: 366px;
  width: 100%;
}
.footer__newsletter-title {
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -0.035em;
  color: #afafaf;
  max-width: 296px;
  margin-bottom: 28px;
}
.footer__form-input {
  height: 53px;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -0.035em;
  color: #afafaf;
  background-color: #e9ebf1;
  border: 0;
  direction: rtl;
  padding-inline: 24px 130px;
}
.footer__form-submit-btn {
  height: 53px;
}
.footer__bottom {
  padding-top: 48px;
  border-top: 1px solid #e9ebf1;
}
.footer__copyright {
  font-size: 12px;
  color: #505a71;
  letter-spacing: 0.01px;
}
.social-links {
  gap: 12px;
}
.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid #e9ebf1;
}
.social-link:hover {
  background-color: #e9ebf1;
}
/* footer section end */
