@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  color: #383838;
  font-size: 16px;
  background-color: white;
  overflow-x: hidden;
  position: relative;
}
html[lang="ar"] body {
  direction: rtl;

  text-align: right;
  font-family: "Tajawal", sans-serif;
}
html[lang="ar"] body button {
  font-family: "Tajawal", sans-serif;
}

a {
  text-decoration: none;
  color: #404040;
}

.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.to-padding-section {
  padding-top: 32px;
  padding-bottom: 32px;
}
.title-section {
  text-align: center;
  font-size: 24px;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
  .title-section {
    font-size: 26px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
  .title-section {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
  .to-padding-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .title-section {
    font-size: 32px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
  .title-section {
    font-size: 36px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
  .title-section {
    font-size: 40px;
  }
}

/* ========== */
.for-res-ordering {
  display: flex;
  flex-direction: column;
}

.offer-bar {
  background-color: #363636;
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.upgrade-btn {
  background-color: #242424;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.2s linear;
}

.upgrade-btn:hover {
  background: white;
  color: #242424;
}

.offer-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 10px;
}

.offer-bar-content span {
  font-weight: 600;
}
.offer-bar-content {
  font-size: 7pt !important;
}

#lottie-animation-offer {
  width: 52pt;
  height: 52pt;
}
@media (min-width: 350px) {
  .offer-bar-content {
    font-size: 10pt !important;
  }
}
@media (min-width: 640px) {
  .offer-bar-content {
    font-size: 12pt !important;
  }
}
@media (min-width: 1024px) {
  #lottie-animation-offer {
    width: 70px;
    height: 70px;
  }
  .offer-bar-content {
    font-size: 16px !important;
  }
}

/* ===============navbar===================== */
.navbar {
  background-color: #ffff;
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 600;
  padding: 20px 0;
}
.nav-right {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 42px;
}

.nav-buttons {
  display: flex;
  gap: 42px;
}

.nav-buttons button {
  border: none;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

.get-started-btn {
  background-color: #f07f25;
  transition: all 0.2s linear;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 12px;
  border: 1px solid #f07f25;
}

.language-btn {
  background-color: transparent;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
}

.language-btn img {
  width: 28px;
  height: 28px;
  object-fit: cover;
}

.get-started-btn:hover {
  background-color: #d47221;
  border-color: #d47221;
}

.burger {
  display: none;
  cursor: pointer;
  margin-left: auto;
}

.burger div {
  width: 25px;
  height: 2px;
  background-color: #383838;
  margin: 5px;
  transition: all 0.3s ease;
}

.nav-list-responsive {
  display: none;
}
.social-media-and-privacy {
  width: 100%;
}
.social-media {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #c7c5c5;
}
.privacy {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
}
.privacy a {
  text-decoration: none;
  font-size: 10pt;
  color: #383838;
}
.for-res-ordering {
  flex-direction: column-reverse;
}
.nav-links li::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -20px;
  width: 5pt;
  height: 36pt;
  background-color: #f07f25;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  border-radius: 4px;
}
.nav-right {
  display: none;
}
.burger {
  display: block;
}

.social-media img {
  width: 24pt;
  height: 24pt;
  object-fit: cover;
  cursor: pointer;
}
.burger {
  display: block;
}

.nav-right {
  display: none;
}
.menue-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: transparent;
  transition: right 0.5s ease-in-out;
  z-index: 10;
}

.nav-list-responsive {
  background-color: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  height: 100%;
  margin-left: auto;
}

.nav-links li {
  font-size: 16pt;
}
.get-started-btn {
  font-size: 16pt;
}
.close {
  cursor: pointer;
}
.close svg {
  width: 24pt;
  height: 24pt;
}
.nav-list-res-top {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}
.nav-list-responsive li {
  margin-bottom: 10px;
}

.menue-overlay.show {
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.upgrade-btn {
  display: none;
}
.navbar .logo {
  width: 130pt;
  height: auto;
  object-fit: cover;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  width: 100%;
  flex-direction: column;
}
@media (min-width: 640px) {
}

@media (min-width: 768px) {
  .upgrade-btn {
    display: block;
  }
  .nav-list-responsive {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  .nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    width: 100%;
    flex-direction: column;
  }
  .for-res-ordering {
    flex-direction: column;
  }
  .burger {
    display: none;
  }

  .nav-right {
    display: flex;
  }
  .nav-links {
    width: fit-content;
    flex-direction: row;
  }
  .navbar .logo {
    width: 203px;
    height: auto;
    object-fit: cover;
  }

  .nav-links li {
    position: relative;
  }

  .nav-links li a {
    text-decoration: none;
    color: #515151;
    position: relative;
    line-height: 24px;
    transition: color 0.2s ease;
  }

  .nav-links li::before {
    content: "";
    position: absolute;
    top: -38px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #f07f25;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
    border-radius: 0px 0px 4px 4px;
  }

  .nav-links li:hover::before {
    transform: scaleX(1);
  }

  .nav-links li:hover a {
    color: #f07f25;
  }
}

@media (min-width: 1280px) {
  .nav-links {
    gap: 42px;
  }
}

@media (min-width: 1536px) {
}

/* ===========================Hero Section======================  */
.hero-section {
  width: 100%;
  background-image: url("./assets/Banner\ Background.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 32px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.whatsApp-ordering-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  background-color: white;
  color: #36c14b;
  border-radius: 78px;
  padding: 10px 20px;
  border: none;
}
.lottie-animation-whatsapp {
  width: 34px;
  height: 34px;
}
.hero-content .title-section {
  font-size: 32px;
  padding: 10px 0;
}
.hero-content .title-section {
  color: white;
  text-align: center;
}
html[lang="ar"] body .title-section span {
  background-image: url("./assets/Catalogak Asset/Home/Brush Background.svg");
  background-position: left center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.title-section span {
  background-image: url("./assets/Catalogak Asset/Home/Brush Background.svg");
  background-position: center;
  background-size: cover;
}
html[lang="ar"] body .arabic-title span {
  background-position: center;
  background-size: contain;
  /* background-repeat: no-repeat; */
}

.hero-content p {
  max-width: 90%;
  text-align: center;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
}
.hero-content p a {
  text-decoration: none;
  color: #f07f25;
  font-weight: 600;
  cursor: pointer;
}
.free-trial-btn {
  font-size: 16px;
  border: none;
  font-weight: 600;
  display: flex;
  padding: 12px 20px;
  align-items: center;
  gap: 10px;
  background: transparent
    linear-gradient(98deg, #f37124 0%, #ff921c 49%, #f37124 100%) 0% 0%
    no-repeat padding-box;
  transition: all 0.3s linear;
  margin-top: 0;
  transform: translateY(0px);
}
.free-trial-btn img {
  width: 16px;
  height: 16px;
  object-fit: cover;
}
.free-trial-btn:hover {
  transform: translateY(10px);
}
.hero-images {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: 32px;
}

.hero-content {
  margin: auto;
  max-width: 86%;
}
@media (min-width: 640px) {
  .hero-content {
    max-width: 70%;
  }
}

@media (min-width: 768px) {
  .hero-content {
    max-width: 70%;
  }
}

@media (min-width: 1024px) {
  .hero-content .title-section {
    font-size: 36px;
    padding: 10px 0;
  }

  .hero-content p {
    max-width: 518px;
  }

  .lottie-animation-whatsapp {
    width: 36px;
    height: 36px;
  }
  .whatsApp-ordering-btn {
    font-size: 20px;
    padding: 10px 30px;
  }
  .title-section {
    font-size: 46px;
    padding: 10px 0;
  }
  .hero-content p {
    font-size: 20px;
  }
  .free-trial-btn {
    font-size: 20px;
  }
  .free-trial-btn img {
    width: 20px;
    height: 20px;
    object-fit: cover;
  }
}
@media (min-width: 1500px) {
  .hero-content .title-section {
    font-size: 48px;
    padding: 10px 0;
  }
}
/* ==========================steps =========================== */

.hero-images-top {
  position: relative;
  width: 100%t;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 20px;
}
.hero-images-top img {
  width: 100%;
  height: auto;
}

@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .hero-images-top img {
    width: 90%;
    height: auto;
  }
}
@media (min-width: 1280px) {
  .lottie-animation-whatsapp {
    width: 48px;
    height: 48px;
  }
  .title-section {
    font-size: 48px;
    padding: 10px 0;
  }
  .hero-images-top img {
    width: 78%;
    height: auto;
  }
  .hero-images-top {
    margin-top: 0px;
  }
}

@media (min-width: 1536px) {
}

/* ====================streamline-section ===================== */
.streamline-section .title-section {
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
}
.streamline-section {
  padding-top: 64px;
  padding-bottom: 64px;
}
.streamline-section-top {
  margin-top: 40px;
}
.streamline-section-top {
  display: flex;
  align-items: center;
  background-color: #f6f6f6;

  border-radius: 40px;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 24pt;
}
.streamline-section-top-content h2 {
  font-size: 18pt;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
}
.streamline-section-top-content p {
  font-size: 14pt;
  color: #363636;
  margin-top: 10px;
  text-align: center;
}
.video-container {
  margin-right: 100px;
}

.streamline-section-top-content {
  max-width: 90%;
}
.streamline-section-top {
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 24pt;
}
.streamline-section-top .whatsApp-ordering-btn {
  margin: 0 auto;
}
.video-container {
  margin-top: 30px;
  margin-right: 0;
}
.video-container video {
  width: 130pt;
  height: 267pt;
  border-radius: 30px;
}
@media (min-width: 640px) {
}

@media (min-width: 768px) {
}

@media (min-width: 1024px) {
  .video-container {
    margin-top: 0px;
  }
  .streamline-section-top-content {
    max-width: 50%;
  }
  .streamline-section-top {
    padding: 38px 20px;
    flex-direction: row;
  }
  .streamline-section-top .whatsApp-ordering-btn {
    margin: 0;
  }
  .streamline-section-top-content h2 {
    text-align: initial;
    font-size: 32px;
  }
  .streamline-section-top-content p {
    font-size: 18px;
    text-align: initial;
  }
  .video-container video {
    width: 200px;
    border-radius: 50px;
    height: auto;
  }
  .streamline-section-top {
    justify-content: space-around;
  }
}

@media (min-width: 1280px) {
  .streamline-section-top-content {
    max-width: 50%;
  }
  .streamline-section-top-content h2 {
    text-align: initial;
    font-size: 40px;
  }
  .streamline-section-top-content p {
    font-size: 20px;
    text-align: initial;
  }
  .video-container video {
    width: 250px;
    border-radius: 50px;
    height: auto;
  }
}

@media (min-width: 1536px) {
  .streamline-section-top-content {
    max-width: 40%;
  }
}

/* ==========================streamline-sections cards ================== */
.streamline-section-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 32px;
  margin: 0 auto;
  margin-top: 64px;
  justify-content: space-between;
}
.streamline-section-item .bg-color-share {
  background-color: #f6f6f6;
  border-radius: 40px;
  padding: 38px;
}
.streamline-section-item .item-card {
  flex: 1;
  overflow: hidden;
}

.item-card:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.streamline-section-item .bg-color-share img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.streamline-section-item .img-contain {
  padding-bottom: 0;
  width: 100%;
}

.streamline-section-img-container-bg-img {
  padding: 61px 0;
  background-image: url("./assets/Catalogak Asset/Home/Streamline Your Order Management/WhatsApp background.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 40px;
}
.streamline-section-paragraph {
  font-size: 18px;
  color: #363636;
  max-width: 88%;
}
.streamline-section-title {
  font-size: 22px;
  font-weight: bold;
}
.clean-order {
  width: 100%;
}
.clean-order img {
  margin-left: 0 auto !important;
  width: 292px !important;
  height: 330px;
  object-fit: cover;
}
.streamline-section-item .img-contain img {
  width: 170pt;
  height: auto;
  margin-bottom: -2px;
}
.streamline-section-img-container-bg-img img {
  width: auto;
  height: 240pt;
}
@media (min-width: 640px) {
}

@media (min-width: 768px) {
  .streamline-section-title {
    font-size: 24px;
    font-weight: bold;
  }
}

@media (min-width: 1024px) {
  .streamline-section-img-container-bg-img img {
    width: auto;
    height: 330px;
  }
  .streamline-section-item {
    flex-direction: row;
  }
  .streamline-section-item .img-contain img {
    height: 448px;
    width: 100%;
    object-fit: contain;
  }
  .streamline-section-title {
    font-size: 28px;
    font-weight: bold;
  }
  .right-to-left {
    flex-direction: row-reverse;
  }
  .streamline-section-paragraph {
    font-size: 20px;
    color: #363636;
    max-width: 532px;
  }
  .streamline-section-item {
    gap: 64px;
  }
}

@media (min-width: 1280px) {
  .streamline-section-title {
    font-size: 32px;
  }
}

@media (min-width: 1536px) {
}
/* ==============================Go Live Section============================ */
.container-go-live {
  display: grid;
  margin-top: 64px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 36px;
}
.share-live-container {
  background-color: #f6f6f6;
  border-radius: 40px;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.custom-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.custom-cell .beautiful-product-image {
  width: 229px;
  height: auto;
  object-fit: cover;
}
.nested-custom-cell {
  width: 100%;
}
.go-live-title {
  font-size: 24px;
  color: #333333;
}
.column-cell {
  flex-direction: column;
}
.go-live-btn-item {
  margin-top: 10px;
  border: none;
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 20px;
  background-color: white;
  border-radius: 40px;
  gap: 6px;
  cursor: pointer;
}
.go-live-btn-item img {
  width: 24px;
  height: 24px;
  margin-top: -8px;
  object-fit: cover;
}
.build-now-info-btn-item {
  border: none;
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 20px;
  width: 296px;
  background-color: white;
  border-radius: 40px;
  gap: 73px;
  color: #363636;
  cursor: pointer;
  margin-top: 20px;
}
.build-now-info {
  display: flex;
  align-items: center;
  gap: 36px;
}
.info-card {
  width: 231px;
  height: auto;
  object-fit: cover;
}
.info-whats-app-auto-reply {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 0 36px;
}
.info-whats-app-auto-reply img:nth-child(1) {
  width: 292px;
  height: auto;
  object-fit: cover;
}
.info-whats-app-auto-reply img:nth-child(2) {
  width: 314px;
  height: auto;
  object-fit: cover;
  align-self: flex-start;
}
.link-In-Bio-image {
  width: 390px;
  height: auto;
  margin-top: auto;
}
.link-In-Bio {
  padding-bottom: 0 !important;
}
.go-live-section-container .title-section {
  text-align: center;
  margin: 0 auto;
  max-width: 80%;
}
@media (max-width: 1024px) {
  .go-live-section-container .title-section {
    max-width: 70%;
  }
  .info-whats-app-auto-reply:nth-child(1) {
    width: 272pt;
    height: auto;
  }
  .go-live-title {
    font-size: 18pt;
    text-align: center;
    max-width: 220pt;
  }
  .res-hidden {
    display: none;
  }
  .custom-cell {
    width: 100%;
  }
  .custom-cell .beautiful-product-image {
    width: 130pt;
    height: auto;
  }
  .container-go-live {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
    margin: 0 auto;
  }
  .build-now-info {
    flex-direction: column;
    align-items: center;
  }
  .build-now-info-btn-item {
    width: 100%;
    gap: 20px;
  }
  .link-In-Bio-image {
    width: 234pt;
    height: auto;
  }

  .info-whats-app-auto-reply {
    padding: 0 20px;
  }
}

/* ================Success Stories ====================*/
.success-container .title-section {
  text-align: center !important;
}

.success-stories-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.success-stories-container div {
  height: 420px;
  border-radius: 40px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-position: center;
  background-size: cover;
}

.story-one {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)),
    url("./assets/Catalogak Asset/Home/Success Stories/Testimonial 1.png");
}

.story-tow {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)),
    url("./assets/Catalogak Asset/Home/Success Stories/Testimonial 2.png");
}

.story-three {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)),
    url("./assets/Catalogak Asset/Home/Success Stories/Testimonial 3.png");
}

.success-stories-container div p {
  font-size: 20px;
  color: white;
}

.success-stories-container div h1 {
  font-size: 20px;
  font-weight: 600;
  color: white;
}
@media (max-width: 768px) {
  .success-stories-container div {
    height: 212pt;
  }
  .success-stories-container div p {
    font-size: 14pt;
  }

  .success-stories-container div h1 {
    font-size: 14pt;
  }
}

/* =========================================== pricing Section ==================================*/
.pricing-section-container {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  margin-top: 64px;
}

.pricing-section-container-left,
.pricing-section-container-right {
  background-color: #fff;
  padding: 20px;
  border-radius: 32px;
  box-shadow: 0px 16px 74px #00000029;
  padding: 28px;
}

.pricing-section-container-left h3,
.pricing-section-container-right h3 {
  font-size: 40px;
  font-weight: 900;
}

.pricing-section-container-right {
  background: linear-gradient(137deg, #f5a97c 0%, #f37124 100%);
}

.pricing-section-container-right .plan-top .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-section-container-right .note {
  background-color: white;
  font-size: 16px;
  width: fit-content;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 22px;
}

.pricing-section-container-right h3 {
  color: white;
}

.pricing-section-container-right p {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  margin-top: 10px;
}

.pricing-section-container-left p {
  font-size: 24px;
  margin-top: 10px;
  color: #a8a8a8;
}

.share-pricing-top {
  padding: 20px;
  border: 1px solid #dfdfdf;
  border-radius: 20px;
}

.feature-list {
  margin: 20px 0;
  padding: 0 20px;
}

.feature-list h4 {
  font-size: 24px;
  margin-bottom: 10px;
}

.feature-list ul {
  list-style-type: none;
  padding: 0;
}

.feature-list li {
  margin: 24px 0;
  border-radius: 5px;
  font-size: 20px;
}

.pricing-section-container-right .feature-list {
  color: white;
}

@media (min-width: 768px) {
  .pricing-section-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .pricing-section-container-right .note {
    font-size: 9pt;

    /* display: none; */
  }
  .pricing-section-container-left h3,
  .pricing-section-container-right h3 {
    font-size: 24px;
  }
  .pricing-section-container-left p,
  .pricing-section-container-right p {
    font-size: 14pt;
  }
}
.title-section-custom-pricing {
  margin: 64px auto;
}
@media (max-width: 768px) {
  .title-section-custom-pricing {
    max-width: 252pt;
    margin: 32px auto;
  }
  .pricing-section-container {
    grid-template-columns: 1fr;
    margin-top: 32px;
    width: 100%;
  }

  .pricing-section-container-right .note {
    font-size: 9pt;
    /* display: none; */
  }
  .pricing-section-container-left,
  .pricing-section-container-right {
    padding: 15px;
    border-radius: 16px;
    width: 100%;
  }

  .pricing-section-container-left h3,
  .pricing-section-container-right h3 {
    font-size: 24px;
  }

  .pricing-section-container-left p,
  .pricing-section-container-right p {
    font-size: 14pt;
  }

  .feature-list h4 {
    font-size: 18pt;
  }

  .feature-list li {
    font-size: 14pt;
    margin: 12px 0;
  }
}

/* ========================== Frequently Asked Questions Section ============ */
.faq-oustide-container {
  position: relative;
  width: 100vw;
  max-width: 1920px;
  overflow: hidden !important;
  margin: 0 auto;
}

.frequently-title-section {
  font-size: 40px;
  text-align: initial;
}

.frequently-section {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 10px;
}

.frequently-left img {
  position: absolute;
  right: -10%;
  bottom: 0%;
  width: 55vw;
  max-width: 845px;
  height: 1051px;
  height: auto;
}
html[lang="ar"] body .frequently-left img {
  left: -10%;
  right: auto;
  transform: scaleX(-1);
}
.frequently-right {
  width: 50%;
}

.frequently-right li img {
  width: 32px;
  height: auto;
  cursor: pointer;
}

.frequently-right li {
  border-bottom: 1px solid #f1f1f1;
}

.active-item .item {
  color: #f07f25;
  font-weight: 600;
}

.frequently-right .item {
  font-size: 24px;
  padding: 32px 0;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.frequently-right ol {
  list-style-type: none;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 0 0 0;
  transition: max-height 0.5s ease-out, opacity 0.5s ease, padding 0.5s ease;
}

.faq-content.show {
  max-height: 500px;
  opacity: 1;
  padding: 16px 0;
}

.faq-toggle {
  cursor: pointer;
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-close {
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  display: none;
}

.faq-toggle.rotate {
  transform: rotate(45deg);
}

.faq-close.rotate {
  transform: rotate(0deg);
  display: block;
  color: #f07f25;
}

.line-color {
  transition: all 0.3s linear;
}

.faq-toggle.rotate {
  fill: #f07f25 !important;
}
.frequently-right li {
  transition: all 0.3s linear;
}
.frequently-right li.active .question {
  color: #f07f25;
}
@media (max-width: 1280px) {
  .frequently-title-section {
    font-size: 32px;
  }
  .question {
    font-size: 20px;
  }
  .faq-content.show {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .bg-fluid {
    width: 100%;
    height: 100%;
    background-image: url("./assets/Catalogak Asset/Home/FAQ Background.png");
    background-size: 500px 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
  }
  .faq-content.show {
    padding: 8px 0;
  }
  .frequently-section {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .faq-content.show {
    font-size: 12pt;
  }

  .bg-fluid::before {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 73%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
  }

  .bg-fluid > * {
    position: relative;
    z-index: 2;
  }
  .frequently-left img {
    display: none;
  }
  .frequently-right {
    width: 100%;
  }

  .frequently-right ol {
    width: 100%;
  }

  .active-item .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .frequently-left {
    display: none;
  }
  .faq-toggle {
    width: 20px;
    height: 20px;
    object-fit: cover;
  }
  .frequently-title-section {
    font-size: 20pt;
    margin: 0 auto;
    text-align: center;
    padding: 32px;
  }

  .frequently-right .item {
    font-size: 12pt;
    color: #242424;
    font-weight: normal;
  }

  .frequently-right li {
    width: 100%;
  }

  .frequently-right li img {
    width: 12pt;
    height: 12pt;
  }

  .active-item p {
    display: none;
  }
}

/* ==========================form  section============ */
html[lang="ar"] input[type="tel"] {
  direction: ltr;
  text-align: left;
}
html[lang="ar"] input[type="tel"]::placeholder {
  direction: rtl;
  text-align: right;
}
.fill-out-section {
  background-color: #f6f6f6;
  border-radius: 40px;
  padding: 30px;
  width: 100%;
  margin: 64px auto;
}
.fill-out-section p {
  font-size: 16px;
  margin: 10px auto;
  text-align: center;
  color: #8e8e8e;
}
.business-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  margin-top: 32px;
  width: 100%;
}
.form-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}
.form-row .form-row-item {
  flex: 1;
}
.fill-out-section input::placeholder {
  color: #a8a8a8;
}
.fill-out-section input:focus {
  outline: none;
  border: 1px solid #f07f25;
}
.fill-out-section input {
  width: 100%;
  padding: 15px;
  border: 1px solid #dfdfdf;
  border-radius: 8px;
  font-size: 16px;
}
.form-row .end-input {
  width: 100%;
}
.fill-out-section button.loading {
  background-color: #cccccc;
  cursor: not-allowed;
  pointer-events: none;
}

.fill-out-section button.loading span {
  visibility: hidden;
}
.fill-out-section button,
.continueButton {
  padding: 10px 80px;
  background-color: #f07f25;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s linear;
  width: fit-content;
  cursor: pointer;
  margin: 0 auto;
}

.fill-out-section button:hover,
continueButton:hover {
  background-color: #d47221;
}
.modal-success {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.5s;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-content-success {
  background-color: #fefefe;
  padding: 20px;
  padding-bottom: 30px;

  border: 1px solid #888;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  position: relative;
  animation: slideIn 0.5s;
  text-align: center;
}
.close-button {
  color: #aaa;
  margin-left: auto;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.lottie-tick-form-submitted {
  width: 100px;
  height: auto;
}
.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.modal-content-success {
  width: 80%;
}
.modal-content-success p {
  color: #363636;
  max-width: 80%;
  font-size: 16px;
}
.modal-content-success h3 {
  color: #363636;
  max-width: 80%;
  font-size: 20px;
}
.just-validate-error-label {
  font-size: 14px;
}
@media (min-width: 640px) {
  .modal-content-success {
    width: 430px;
  }
  .lottie-tick-form-submitted {
    width: 130px;
    height: 130px;
  }
}

@media (min-width: 768px) {
}

@media (min-width: 1024px) {
  .fill-out-section {
    width: 88%;
  }
  .fill-out-section {
    padding: 32px;
  }
  .form-row {
    flex-direction: row;
  }
  .modal-content-success p {
    font-size: 20px;
  }

  .modal-content-success {
    padding-bottom: 40px;
  }
  .fill-out-section p {
    font-size: 20px;
  }
}

@media (min-width: 1280px) {
  .modal-content-success {
    width: 550px;
  }
  .fill-out-section {
    padding: 40px;
  }
  .modal-content-success h3 {
    font-size: 24px;
  }
  .fill-out-section input {
    font-size: 20px;
  }
}

@media (min-width: 1536px) {
  .modal-content-success {
    width: 598px;
  }
  .lottie-tick-form-submitted {
    width: 200px;
    height: 200px;
  }
  .modal-content-success h3 {
    font-size: 28px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===================================Footer section =============================== */

footer {
  color: #363636;
  padding: 20px 0;
  width: 100%;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list img {
  width: 22px;
  height: 22px;
}
.list .logo-footer {
  margin-bottom: 26px;
  width: 203px;
  height: auto;
}
footer .list {
  margin: 10px;
}

footer h3 {
  margin-bottom: 10px;
  font-size: 20px;
  margin-bottom: 56px;
}

footer ul {
  list-style-type: none;
}

footer li span {
  color: #f37124;
}
footer li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

footer a {
  color: #363636;
  text-decoration: none;
  transition: all 0.3s linear;
}

footer a:hover {
  color: #d47221;
}

footer button {
  padding: 10px 20px;
  margin: 5px 0;
  background-color: transparent;
  color: #363636;
  border: 1px solid #dfdfdf;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s linear;
}

footer button:hover {
  color: white;
  background-color: #ff921c;
}
footer .social-media {
  border: none;
}
footer .social-media img {
  width: 24pt;
  cursor: pointer;
  height: 24pt;
}
footer {
  font-size: 20px;
}

@media (max-width: 1280px) {
  footer {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .footer-container {
    flex-direction: column;
  }
  footer h3 {
    margin-bottom: 36px;
  }
  footer {
    font-size: 16px;
  }
}

/* =======================buttom bar setion ================= */
.buttom-bar-container {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  color: white;
}

.buttom-bar-container a {
  text-decoration: none;
  color: white;
  transition: all 0.3s ease-in-out;
  margin: 0 10px;
}
.buttom-bar-container a:hover {
  color: #d47221;
}
@media (max-width: 767px) {
  .buttom-bar-container {
    font-size: 16px;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .buttom-bar-container a {
    margin: 0;
  }
  .buttom-bar-container a:nth-child(1)::after {
    content: " | ";
    margin: 0 4px;
  }
  .buttom-bar-container a:nth-child(1):hover::after {
    color: white;
  }
}
#scrollToTopBtn {
  position: fixed;
  bottom: 90px;
  right: 30px;
  color: white;
  background-color: #dfdfdf;
  border: none;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  display: none;
  transition: all 0.3s linear;
  z-index: 998;
}
#scrollToTopBtn:hover {
  background-color: #ff921c;
}
#scrollToTopBtn.show {
  display: block;
}
@media (max-width: 767px) {
  #scrollToTopBtn img {
    width: 36px;
    height: auto;
  }
}
/* ====================Modal styles ============================== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Modal background */

.modal-contact.show {
  display: flex;
  animation: fadeIn 0.3s forwards;
  opacity: 1;
  z-index: 999;
}
.modal-contact h3 span {
  color: #f07f25;
}
.modal-contact h3 {
  font-size: 22px;
  margin: 20px 0;
}
.modal-contact {
  display: none;
  opacity: 0;
  z-index: 1;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  transition: opacity 0.3s ease;
  font-size: 16px;
  padding: 0 20px;
}

body.modal-open {
  overflow: hidden;
}
.modal-contact .semiblod {
  font-weight: 700;
  margin-top: 20px;
}
.modal-contact p {
  margin-bottom: 20px;
}
.modal-contact li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.div-partner {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f07f25;
}
.modal-contact ul {
  list-style: none;
  font-weight: 600;
}
.modal-contact ul li span {
  color: #f07f25;
}
.modal-contact.hide {
  animation: fadeOut 0.3s forwards;
  opacity: 0;
}
.modal-content-contact {
  display: grid;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  height: fit-content;
  grid-template-columns: 1fr;
  border-radius: 0.5rem;
  padding: 0;
  gap: 20px;
  background-color: #faf3eb;
}
.modal-content-item {
  height: auto;
  padding: 20px;
  overflow: hidden;
  height: 100%;
}
.modal-content-item h2 {
  font-size: 24px;
}
.modal-content-item h2 span {
  color: #f07f25;
  font-size: 32px;
}

.modal-content-item:nth-child(1) {
  box-shadow: 3px 0 23px rgba(0, 0, 0, 0.16) !important;

  background-color: white;
  border-radius: 10px 10px 10px 10px;
}
.modal-content-item:nth-child(2) {
  background-color: #fff8f0;
}
.info-contact li img {
  margin-top: 6px;
}
.info-contact li {
  align-items: start;
}
.form-section-container {
  background-color: #fff8f0;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 10px 10px 10px 10px;
}
.form-back {
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 100%;
  height: auto;
  z-index: 2;
}

/* ==========form=============== */
.contact-form-card {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  background-color: white;
  position: relative;
  z-index: 10;
  border-radius: 8px;
  box-shadow: 3px 0 23px rgba(0, 0, 0, 0.16) !important;
}
form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form-group {
  position: relative;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 20px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  background-color: white;
  border-radius: 8px;
}

.contact-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 16px;
  color: #747474;
  pointer-events: none;
  transition: 0.2s ease all;
}
html[lang="ar"] body .contact-label {
  top: 16px;
  right: 16px;
  left: auto;
}
.contact-input:focus,
.contact-input:not(:placeholder-shown),
.contact-textarea:focus,
.contact-textarea:not(:placeholder-shown),
.custom-select-container.active-select .custom-select-header,
.custom-select-container .custom-select-header:focus,
.contact-form-group input:focus,
.custom-select-container.active-select .custom-select-header,
.contact-form-group textarea:focus {
  border: 1px solid #f07f25;
  outline: none;
}
.contact-input:focus ~ .contact-label,
.contact-input:not(:placeholder-shown) ~ .contact-label,
.contact-textarea:focus ~ .contact-label,
.contact-textarea:not(:placeholder-shown) ~ .contact-label,
.custom-select-container.active-select .custom-select-label {
  top: -10px;
  left: 16px;
  font-size: 12px;
  color: #f07f25;
  background-color: #fff;
  padding: 0 5px;
}
/* ==========ar ===========*/
html[lang="ar"] form {
  text-align: right;
}
html[lang="ar"] body .contact-input:focus ~ .contact-label,
html[lang="ar"] body .contact-input:not(:placeholder-shown) ~ .contact-label,
html[lang="ar"] body .contact-textarea:focus ~ .contact-label,
html[lang="ar"] body .contact-textarea:not(:placeholder-shown) ~ .contact-label,
html[lang="ar"]
  body
  .custom-select-container.active-select
  .custom-select-label {
  top: -10px;
  right: 16px;
  left: auto;
  font-size: 12px;
  color: #f07f25;
  background-color: #fff;
  padding: 0 5px;
}

.custom-select-container {
  position: relative;
  width: 100%;
  user-select: none;
}

.custom-select-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 16px;
  color: #747474;
  transition: all 0.3s ease;
  pointer-events: none;
}

.custom-select-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  background-color: white;
  border-radius: 8px;
  transition: border 0.3s ease;
}

.custom-select-header:hover {
  border-color: #888;
}

.custom-arrow {
  width: 10px;
  height: 10px;
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transition: transform 0.3s ease;
  transform: rotate(45deg);
}

.custom-select-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-size: 16px;
  border-radius: 12px;
  box-shadow: 0px 16px 74px #00000029;
  max-height: 0;
  overflow: hidden;
  padding: 0 10px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.show-menu {
  max-height: 280px;
  padding: 10px;
  z-index: 999;
  background-color: white;
}

.custom-select-item {
  padding: 15px;
  cursor: pointer;
  background-color: transparent;
  border-radius: 12px;
  transition: all 0.3s linear;
}

.custom-select-item:hover {
  background-color: #f07f25;
  color: white;
}

.custom-select-container.active-select .custom-arrow {
  transform: rotate(-135deg);
}

.custom-select-container.active-select .custom-select-label {
  top: -10px;
  left: 16px;
  font-size: 14px;
  color: var(--secondary-color);
  background-color: white;
  color: #f07f25;
}
html[lang="ar"]
  body
  .custom-select-container.active-select
  .custom-select-label {
  top: -10px;
  left: auto;
  right: 16px;
}
html[lang="ar"] body .custom-select-label {

  left: auto !important;
  right: 16px;
}
form button[type="submit"]:disabled {
  background-color: #cccccc;
}

/* confirm submitting */
.confirm-submitting-container {
  z-index: 2000;
  width: 100%;
}

.confirm-submitting-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirm-submitting {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  width: 100%;
  padding: 32px;
  box-shadow: 0px 3px 32px #00000029;
  border-radius: 24px;
}

.submitButton {
  border: none;
  outline: none;
  font-size: 16px;
  background-color: #f07f25;
  color: white;
  border-radius: 12px;
  transition: all 0.3s linear;
  padding: 10px 40px;
  cursor: pointer;
  margin: 0 60px;
}

.submitButton:hover {
  background-color: #da711c;
}
.close-contact-modal {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
  outline: none;
  border: none;
  background-color: transparent;
}
.res-button {
  display: flex;
}
.des-button {
  display: none;
}
@media (min-width: 768px) {
}

/* Single-column layout for small screens */
@media (max-width: 767px) {
  .modal-content-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .modal-content-contact {
    background-color: white;
    margin: 0 auto;
    width: 95%;
  }
  .modal-content-contact {
    grid-template-columns: 1fr 1fr;
  }
  .res-button {
    display: none;
  }
  .des-button {
    display: flex;
  }
  .modal-contact {
    font-size: 18px;
  }
}
@media (min-width: 1280px) {
  .modal-content-contact {
    background-color: white;
    margin: 0 auto;
    width: 88%;
  }
}
@media (min-width: 1600px) {
  .modal-content-contact {
    width: 85%;
  }
  .submitButton {
    font-size: 20px;
  }
  .modal-content-item h2 {
    font-size: 32px;
  }
  .modal-content-item h2 span {
    font-size: 40px;
  }
  .modal-contact {
    font-size: 20px;
  }
  .modal-contact h3 {
    font-size: 28px;
  }
  .modal-content-item {
    padding: 20px 40px;
  }
  .modal-content-item h2 {
    font-size: 40px;
  }
  .modal-content-item h2 span {
    font-size: 52px;
  }
}
.modal-content-contact {
  margin-top: 90px;
  margin-bottom: 90px;
}

/* =======================validation contact================== */

.error-message {
  display: none;
  color: red;
  font-size: 14px;
  margin-top: 0.25em;
}
.contact-input:invalid + .error-message {
  display: block;
}
.just-validate-error-label {
  color: red !important ;
}
#custom-select-header-country-oman .just-validate-error-label {
  display: none !important;
}
#custom-select-header-time-oman .just-validate-error-label {
  display: none !important;
}
#custom-select-header-country-turkey .just-validate-error-label {
  display: none !important;
}
#custom-select-header-time-turkey .just-validate-error-label {
  display: none !important;
}

.contact-form-card {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}









/* ========================= */
/* تأثير الإخفاء لـ form-card */
.contact-form-card.hide {
  animation: fadeOut 0.5s forwards;
}

/* تأثير الإظهار لـ modal-content-success */
.modal-content-item .modal-content-success.show {
  animation: fadeIn 0.5s forwards;
  visibility: visible;
}
.modal-content-item .modal-content-success {
  position: absolute;
  border: none;
  top: 50%;
  left: 50%;
  z-index: 1000;
  background-color: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  width: 90%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* إخفاء الـ modal-content-success بعد مرور 4 ثوانٍ */
.modal-content-item .modal-content-success.hide {
  animation: fadeOut 0.5s forwards;
  /* opacity: 0; */
  visibility: hidden;
}
.label-select-active{
  top :-10px;
left :16px;
font-size: 14px;
 background-color:white;
padding :0 5px;
color :#f07f25;
}
/* تنسيقات الـ modal-content-success */
