@charset "UTF-8";
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}
html::-webkit-scrollbar {
  width: 0.5rem;
}
html::-webkit-scrollbar-thumb {
  background: var(--color-primary);
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%2351212D' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler-white .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler-black .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.border-primary-2 {
  border: 2px solid var(--color-primary) !important;
}

.border-secondary-2 {
  border: 2px solid var(--color-secondary) !important;
}

.border-primary-3 {
  border: 3px solid var(--color-primary) !important;
}

.border-secondary-3 {
  border: 3px solid var(--color-secondary) !important;
}

.border-primary-4 {
  border: 4px solid var(--color-primary) !important;
}

.border-secondary-4 {
  border: 4px solid var(--color-secondary) !important;
}

.border-primary-5 {
  border: 5px solid var(--color-primary) !important;
}

.border-secondary-5 {
  border: 5px solid var(--color-secondary) !important;
}

.border-primary-6 {
  border: 6px solid var(--color-primary) !important;
}

.border-secondary-6 {
  border: 6px solid var(--color-secondary) !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

:root {
  /* Primary Colors */
  --color-primary:#9B569D;
  --color-primary-hover: #D1C2DD;
  /* Secondary Colors */
  --color-secondary:#B49774;
  --color-secondary-light: #f2f2f2;
  /* info Colors  */
  --color-info: #8E8E93;
  --color-info-light: #FEF8CD;
  /* Neutral / Grayscale */
  --color-gray-dark: #3b3c40;
  --color-gray-medium: #454545;
  --color-gray-light: #D2BADE;
  /* Text Colors */
  --color-text-heading: #666666;
  --color-text-dark: #0C2131;
  --color-text-dark-alt: #181716;
  --color-text-dark-soft: #3B3B3B;
  --color-text-muted: #6D6D6D;
  --color-text-footer: #d7d7d7;
  --color-text-light: #F5F6F6;
  --color-text-lighter: #999999;
  /* Accent Colors */
  --color-accent: #E3DBF0;
  /* Background Colors */
  --color-bg-card: #F5F5F5;
  --color-bg-light: #F1EDF8;
  --color-bg-light-alt: #EDEDED;
  --color-bg-light-soft: #F7F7FA;
  --color-bg-light-extra: #F9F9F9;
  /* Dark Backgrounds */
  --color-bg-dark: #0D0D0D;
  --color-bg-dark-alt: #EAFAF9;
  --color-bg-dark-soft: #11111199;
}

.text-heading {
  color: var(--color-text-heading) !important;
}

.text-primary {
  color: var(--color-primary) !important;
}

.text-primary-hover {
  color: var(--color-primary-hover) !important;
}

.text-secondary {
  color: var(--color-secondary) !important;
}

.text-secondary-light {
  color: var(--color-secondary-light) !important;
}

.text-muted {
  color: var(--color-text-muted) !important;
}

.text-dark {
  color: var(--color-text-dark) !important;
}

.text-dark-alt {
  color: var(--color-text-dark-alt) !important;
}

.text-dark-soft {
  color: var(--color-text-dark-soft) !important;
}

.text-gray-light {
  color: var(--color-gray-light) !important;
}

.text-footer {
  color: var(--color-text-footer) !important;
}

.text-accent {
  color: var(--color-accent) !important;
}

.text-gray-dark {
  color: var(--color-gray-dark) !important;
}

.text-info {
  color: var(--color-info) !important;
}

.text-light-custom {
  color: var(--color-text-light);
}

.text-lighter-custom {
  color: var(--color-text-lighter);
}

.bg-primary {
  background-color: var(--color-primary) !important;
}

.bg-primary-hover {
  background-color: var(--color-primary-hover) !important;
}

.bg-secondary {
  background-color: var(--color-secondary) !important;
}

.bg-info {
  background-color: var(--color-info-light) !important;
}

.bg-secondary-light {
  background-color: var(--color-secondary-light) !important;
}

.bg-card {
  background-color: var(--color-bg-card) !important;
}

.bg-light {
  background-color: var(--color-bg-light) !important;
}

.bg-light-alt {
  background-color: var(--color-bg-light-alt) !important;
}

.bg-light-soft {
  background-color: var(--color-bg-light-soft) !important;
}

.bg-light-extra {
  background-color: var(--color-bg-light-extra) !important;
}

.bg-dark {
  background-color: var(--color-bg-dark) !important;
}

.bg-dark-alt {
  background-color: var(--color-bg-dark-alt) !important;
}

.bg-dark-soft {
  background-color: var(--color-bg-dark-soft) !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-17 {
  font-size: 17px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-19 {
  font-size: 19px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-36 {
  font-size: 36px !important;
}

.fs-40 {
  font-size: 40px !important;
}

.text-Neutral-700 {
  color: #333333 !important;
}

.font-poppins {
  font-family: "Poppins", sans-serif;
}

.hero-text {
  line-height: 140% !important;
}

.line-height-120 {
  line-height: 120% !important;
}

.line-height-150 {
  line-height: 150% !important;
}

.line-height-160 {
  line-height: 160% !important;
}

ol {
  list-style-type: lower-alpha;
}

.btn-primary {
  color: white !important;
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  transition: all 0.5s linear !important;
  font-weight: 600;
  display: inline-block;
}
.btn-primary:hover {
  color: var(--color-primary) !important;
  background-color: var(--color-primary-hover) !important;
  border-color: var(--color-primary-hover) !important;
  font-weight: 700;
  transform: translateY(-5px) !important;
}
.btn-primary:hover i {
  transition: all 0.5s linear !important;
  color: var(--color-primary) !important;
}
.btn-primary.no-hover-transform:hover {
  transform: none !important;
}

.btn-green {
  color: white !important;
  background-color: #34C759 !important;
  border-color: #34C759 !important;
  transition: all 0.5s linear !important;
  font-weight: 600;
  display: inline-block;
}
.btn-green:hover {
  color: #34C759 !important;
  background-color: var(--color-primary-hover) !important;
  border-color: var(--color-primary-hover) !important;
  font-weight: 700;
}

.btn-primary-two {
  color: white !important;
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  transition: 0.5s linear !important;
  font-weight: 700;
  display: inline-block;
}
.btn-primary-two:hover {
  color: var(--color-primary) !important;
  background-color: var(--light-color-three) !important;
  border-color: var(--light-color-three) !important;
}

.btn-dark {
  color: white !important;
  background-color: var(--dark-color) !important;
  border-color: var(--dark-color) !important;
  transition: 0.5s linear !important;
}
.btn-dark:hover {
  color: var(--dark-color) !important;
  background-color: transparent !important;
  border-color: var(--dark-color) !important;
}

.btn-outline-primary {
  color: var(--color-primary) !important;
  background-color: transparent !important;
  border: 1px solid var(--color-primary) !important;
  transition: 0.5s linear !important;
  font-weight: 600;
}
.btn-outline-primary:hover {
  color: white !important;
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  transform: translateY(-5px) !important;
}

.btn-outline-red {
  color: #FF3B30 !important;
  background-color: transparent !important;
  border: 1px solid #FF3B30 !important;
  transition: 0.5s linear !important;
}
.btn-outline-red:hover {
  color: white !important;
  background-color: #FF3B30 !important;
  border-color: #FF3B30 !important;
}

.btn-outline-secondary {
  color: var(--color-secondary) !important;
  background-color: transparent !important;
  border: 1px solid var(--color-secondary) !important;
  transition: 0.5s linear !important;
}
.btn-outline-secondary:hover {
  color: white !important;
  background-color: var(--color-secondary) !important;
  border-color: var(--color-secondary) !important;
}

.btn-secondary {
  color: white !important;
  background-color: var(--color-secondary) !important;
  border-color: var(--color-secondary) !important;
  transition: 0.5s linear !important;
}
.btn-secondary:hover {
  color: var(--color-secondary) !important;
  background-color: transparent !important;
  border-color: var(--color-secondary) !important;
}
.btn-secondary:hover svg path {
  fill: var(--color-secondary) !important;
}

.btn-secondary-two {
  color: white !important;
  background-color: #0E2859 !important;
  border-color: #0E2859 !important;
  transition: 0.5s linear !important;
}
.btn-secondary-two:hover {
  color: #0E2859 !important;
  background-color: transparent !important;
  border-color: #0E2859 !important;
}
.btn-secondary-two:hover svg path {
  fill: var(--color-secondary) !important;
}

.btn-white {
  color: var(--color-primary) !important;
  background-color: white !important;
  border-color: white !important;
  transition: 0.5s linear !important;
}
.btn-white:hover {
  color: white !important;
  background-color: transparent !important;
  border-color: white !important;
}
.btn-white:hover svg path {
  fill: white !important;
}

.btn-outline-gray {
  background-color: transparent;
  border: 1px solid #cccccc !important;
  color: black !important;
}

.btn-gray-transparent {
  background-color: rgba(255, 255, 255, 0.4509803922);
  border: 1px solid rgba(255, 255, 255, 0.4509803922) !important;
  color: white !important;
}

::placeholder {
  color: #AEAEB2 !important;
}

.form-control-md {
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
  height: 48px;
}

input {
  color: var(--color-secondary) !important;
}
input:focus {
  border: 1px solid var(--color-primary) !important;
  box-shadow: none !important;
}

select {
  color: var(--color-info) !important;
}
select:focus {
  border: 1px solid var(--color-primary) !important;
}

.form-select:focus {
  border: 1px solid var(--color-primary) !important;
  box-shadow: none !important;
}

.intl-tel-input {
  width: -webkit-fill-available !important;
}

textarea {
  resize: none !important;
}
textarea:focus {
  border: 1px solid var(--color-primary) !important;
  box-shadow: none !important;
}

.iti {
  width: -webkit-fill-available !important;
}

body:not(.arabicVersion) .iti--allow-dropdown .iti__flag-container,
body:not(.arabicVersion) .iti--show-selected-dial-code .iti__flag-container {
  right: auto !important;
  left: 0 !important;
}

body:not(.arabicVersion) .iti__arrow {
  margin-right: 5px;
  margin-left: 6px;
}

body:not(.arabicVersion) .iti {
  direction: ltr !important;
  width: -webkit-fill-available !important;
}

body:not(.arabicVersion) .iti input {
  direction: ltr !important;
  text-align: left !important;
  padding-left: 50px !important;
}

body:not(.arabicVersion) .iti input.iti__search-input {
  padding-left: 10px !important;
}

.iti__country-name {
  margin-right: 8px;
  color: var(--dark-color) !important;
}

.LanguageMenu {
  text-align: left;
}

.LanguageMenu span {
  font-size: 16px;
}

.LanguageMenu svg {
  display: inline-block !important;
  vertical-align: middle;
  direction: ltr;
}

body.arabicVersion {
  font-family: "Almarai", sans-serif;
}

.fs-cairo {
  font-family: "Cairo", sans-serif !important;
}

body.arabicVersion .fs-ar {
  font-family: "Inter", sans-serif;
}

body.arabicVersion .ms-auto {
  margin-right: auto !important;
  margin-left: 0 !important;
}

body.arabicVersion .LanguageMenu {
  text-align: right;
}

body.arabicVersion .LanguageMenu span {
  font-size: 16px;
}

body.arabicVersion .LanguageMenu svg {
  margin-right: 0;
}

body.arabicVersion .arrow-ar {
  transform: scaleX(-1) !important;
}

body:not(.arabicVersion) .arrow-ar-dir {
  transform: scaleX(-1) !important;
}

body.arabicVersion .plan-img {
  transform: scaleX(-1) !important;
}

body.arabicVersion .rotate-img {
  transform: scaleX(-1) !important;
}

.link-hover {
  display: inline-block;
  transition: 0.4s all !important;
}

.link-hover:hover {
  transform: translateX(5px) !important;
}

.social-icons {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent !important;
  color: var(--color-primary) !important;
  transition: 0.5s all;
  border: 1px solid white !important;
}
.social-icons:hover {
  background-color: white !important;
  color: var(--color-primary) !important;
  transform: translateY(-5px);
}
.social-icons:hover svg path {
  stroke: var(--color-secondary);
}

@media (max-width: 576px) {
  .social-icons {
    width: 38px;
    height: 38px;
  }
  .social-icons svg {
    width: 18px;
    height: 18px;
  }
}
.bg-white-nav {
  background-color: rgba(255, 255, 255, 0.4);
}

.social-icons-two {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(183, 233, 246, 0.2) !important;
  border: 1px solid white !important;
  color: white !important;
  transition: 0.5s all;
}
.social-icons-two:hover {
  background-color: white !important;
  color: var(--color-primary) !important;
  transform: translateY(-5px);
}
.social-icons-two:hover svg path {
  stroke: var(--color-primary);
}

.back-to-top {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 20px;
  right: 10px;
  background-color: var(--color-primary) !important;
  border: 1px solid var(--color-primary) !important;
  color: white !important;
  border-radius: 50px;
  font-size: 20px !important;
  line-height: 0px !important;
  display: none;
  z-index: 999;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}
.back-to-top:hover {
  background-color: var(--color-primary) !important;
  border: 1px solid var(--color-primary) !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}
.back-to-top:hover i {
  color: white !important;
}
.back-to-top img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(162deg) brightness(101%) contrast(104%);
}
body.arabicVersion .back-to-top {
  left: 10px;
  right: auto;
}

.btn-phone i {
  line-height: 1;
}

.whats-app {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 70px;
  background-color: #59B438 !important;
  color: #fff;
  border-radius: 50%;
  font-size: 23px;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  border: #59B438 !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  right: 10px;
}
.whats-app:hover {
  background-color: var(--primary-color);
  color: white !important;
}
.whats-app:focus, .whats-app:focus-visible {
  background-color: #59B438 !important;
  color: #fff !important;
  box-shadow: none !important;
  outline: none;
}
body.arabicVersion .whats-app {
  left: 10px;
  right: auto;
}
.whats-app::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #59B438;
  opacity: 0.6;
  animation: pulse 1.8s infinite;
  z-index: -1;
}

/* Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@media (max-width: 576px) {
  .back-to-top {
    width: 35px !important;
    height: 35px !important;
    font-size: 16px !important;
    bottom: 15px !important;
    right: 8px !important;
    padding: 0.25rem !important;
  }
  .back-to-top img {
    width: 14px !important;
    height: 14px !important;
  }
  .whats-app {
    width: 35px !important;
    height: 35px !important;
    font-size: 18px !important;
    bottom: 55px !important;
    right: 8px !important;
    padding: 0.25rem !important;
  }
  .whats-app i {
    font-size: 16px !important;
  }
}
.cursor-pointer {
  cursor: pointer !important;
}

@media (max-width: 991px) {
  .img-small {
    width: 85px !important;
  }
  .offcanvas-body::-webkit-scrollbar {
    width: 8px;
  }
  .w-sm {
    width: 70px;
  }
  .flight-path {
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }
  .navbar-nav.bg-light-alt {
    background-color: var(--color-primary) !important;
  }
  .offcanvas-body::-webkit-scrollbar-track {
    background: white;
  }
  .offcanvas-body::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
  }
  .offcanvas {
    padding: 0;
  }
  .offcanvas-body {
    padding: 0;
  }
  .offcanvas-body .nav-link a {
  color: var(--color-primary) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 100%;
}

.offcanvas-body .nav-link:hover {
  background-color: var(--color-primary) !important;
}

.offcanvas-body .nav-link:hover a {
  color: white !important;
}
  .offcanvas-body .navbar-nav {
    margin: 0;
  }
  .filter .btn-close {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-size: contain;
  }
  .offcanvas-header {
    display: flex;
    align-items: end;
    justify-content: end;
    background-color: white;
  }
  .offcanvas-header .btn-close {
    background-repeat: no-repeat;
    background-size: contain;
    width: 1px !important;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
  }
  .offcanvas-body.profile-sidebar .nav-link:hover svg path {
    stroke: white !important;
  }
  .offcanvas-body .nav-link {
    color: var(--color-primary) !important;
    border-bottom: 1px solid rgba(143, 143, 143, 0.2);
    padding: 10px 15px;
    margin: 0;
  }
  .offcanvas-body .nav-link:hover {
    background-color: var(--color-primary) !important;
    color: white !important;
  }
  .offcanvas-body .nav-link:hover svg path {
    stroke: white;
  }
  .offcanvas-body .nav-link svg path {
    stroke: var(--color-primary);
  }
  .offcanvas-body {
    background-color: white;
    color: var(--color-primary) !important;
  }
  .offcanvas-body .text-primary {
    color: white !important;
    border-bottom: 1px solid #fff;
  }
  .offcanvas-body .btn-outline-primary {
    color: white !important;
    border: 1px solid white !important;
  }
  .offcanvas-body .btn-outline-primary:hover {
    color: var(--color-primary) !important;
  }
}
@media (min-width: 1100px) {
  .bg-img {
    background-size: 100% 80% !important;
    background-position: bottom;
    background-repeat: no-repeat;
  }
  .service-card {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
  }
  .service-card.hovered,
  .service-card:hover {
    transform: translateY(-12px);
    border: none !important;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  }
  .nav-hover-link {
    transition: color 0.5s ease, font-weight 0.5s ease;
  }
  .nav-hover-link::after {
    content: "";
    height: 2px;
    width: 0%;
    background-color: var(--color-text-dark-alt) !important;
    transition: 0.5s;
    margin: auto;
    display: block;
  }
  .nav-hover-link:hover, .nav-hover-link.active {
    color: var(--color-text-dark-alt) !important;
  }
  .nav-hover-link:hover::after, .nav-hover-link.active::after {
    width: 100%;
  }
  .header--overlay .nav-hover-link::after {
    background-color: ar(--color-text-dark-alt) !important;
  }
  .header--overlay .nav-hover-link:hover, .header--overlay .nav-hover-link.active {
    color: ar(--color-text-dark-alt) !important;
    font-weight: 700 !important;
  }
  .header--overlay .nav-hover-link:hover::after, .header--overlay .nav-hover-link.active::after {
    width: 100%;
  }
  .header--default .nav-hover-link::after {
    background-color: var(--color-primary);
  }
  .header--default .nav-hover-link:hover, .header--default .nav-hover-link.active {
    color: var(--color-primary) !important;
  }
  .header--default .nav-hover-link:hover::after, .header--default .nav-hover-link.active::after {
    width: 100%;
  }
  .nav-hover-link-two {
    position: relative;
    display: inline-block;
    transition: color 0.5s ease, font-weight 0.5s ease;
  }
  .nav-hover-link-two::after {
    content: "";
    height: 2px;
    width: 0%;
    background-color: white !important;
    transition: 0.5s;
    margin: auto;
    display: block;
    transition: transform 0.5s ease;
  }
  .nav-hover-link-two:hover::after,
  .nav-hover-link-two.active::after {
    width: 100%;
    color: white !important;
  }
  .nav-hover-link-two:hover,
  .nav-hover-link-two.active {
    color: white !important;
  }
}
.btn-custom {
  width: auto;
  display: inline-block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .card-not-hover:hover {
    transform: translateY(0px);
    box-shadow: none !important;
  }
  .position-resp {
    position: static !important;
  }
  .position-resp .para-responsive {
    font-size: 14px !important;
    font-weight: 500 !important;
  }
  .position-resp .heading-responsive {
    font-size: 16px !important;
    font-weight: 600 !important;
  }
  .position-resp .text-black-responsive {
    color: #2BB3AA !important;
  }
  .text-resp {
    font-size: 10px !important;
  }
  .h6-resp {
    font-size: 12px !important;
    white-space: nowrap;
    font-weight: 500;
  }
  .h1-resp {
    font-size: 20px !important;
  }
}
.fs-4-sm {
  font-size: 1.4rem;
}

@media (min-width: 768px) and (max-width: 991px) {
  .text-resp .fs-4-sm {
    font-size: 1rem;
  }
  .text-resp p {
    font-size: 12px;
  }
  .para-responsive {
    font-size: 10px !important;
  }
  .heading-responsive {
    font-size: 12px !important;
  }
}
.image-container {
  display: block;
  overflow: hidden;
  position: relative;
}

.image-container img {
  transition: transform 0.5s ease-in-out;
  width: 100%;
  display: block;
  -webkit-mask-image: radial-gradient(circle, rgb(0, 0, 0) 100%, rgba(0, 0, 0, 0) 0);
  mask-image: radial-gradient(circle, rgb(0, 0, 0) 100%, rgba(0, 0, 0, 0) 0);
}

.image-container:hover img {
  transform: scale(1.06);
}

.home-img img {
  animation: animate 3s ease-in-out infinite;
}

@keyframes animate {
  0% {
    transform: translate(-11px, 0);
  }
  50% {
    transform: translate(0px, -11px);
  }
  100% {
    transform: translate(-11px, 0);
  }
}
@media (min-width: 768px) {
  .custom-modal-size {
    max-width: 750px;
  }
  .custom-modal-size-md {
    max-width: 650px;
  }
}
.cursor-pointer {
  cursor: pointer !important;
}

@media (min-width: 999px) and (max-width: 1199px) {
  .fs-sm {
    font-size: 13px !important;
  }
}
.line-height-153 {
  line-height: 153%;
}

.overlay-text {
  max-width: 90%;
  width: 100%;
  bottom: 0;
  left: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: wrap;
}

@media (max-width: 768px) {
  .overlay-text {
    font-size: 14px;
    padding: 8px;
  }
}
.text-nowrap {
  word-break: break-word;
}

.dropdown-item:focus,
.dropdown-item:active {
  background-color: transparent !important;
  box-shadow: none !important;
  color: var(--color-primary);
}

.hero-bg {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100vh; /* أفضل من رقم ثابت */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-bg .container {
  position: relative;
  z-index: 1;
}

/* ===== Desktop ===== */
.hero-text h1 {
  font-size: 48px;
}

.hero-text h4 {
  font-size: 20px;
}

/* ===== Tablet ===== */
@media (max-width: 992px) {
  .hero-bg {
    min-height: 85vh;
    padding: 40px 0;
  }
  .hero-text h1 {
    font-size: 36px;
  }
  .hero-text h4 {
    font-size: 18px;
  }
  .google-app img {
    width: 150px;
  }
}
/* ===== Mobile ===== */
@media (max-width: 576px) {
  .hero-bg {
    min-height: auto;
    padding: 60px 0 40px;
  }
  .hero-text img {
    width: 180px;
  }
  .hero-text h1 {
    font-size: 26px;
    line-height: 1.4;
  }
  .hero-text h4 {
    font-size: 15px;
    line-height: 1.6;
  }
  .google-app {
    flex-direction: row !important;
    gap: 12px;
  }
  .google-app img {
    width: 120px;
  }
}
.about-img {
  height: 100%;
}

.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  overflow: hidden !important;
}

.logo-center {
  width: 280px;
}

.logo-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
}

.dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  border-radius: 20px;
}

.frame4-blur {
  position: absolute;
  bottom: -69px;
  left: 0;
  width: 100%;
  height: 150px;
  background-image: url("../images/Frame 4.png");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.centerd {
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 1;
}

.lh-100 {
  line-height: 100% !important;
}

.lh-140 {
  line-height: 140% !important;
}

.lh-153 {
  line-height: 153% !important;
}

.lh-150 {
  line-height: 150% !important;
}

.lh-160 {
  line-height: 160% !important;
}

.h-500 {
  height: 650px;
}

body.arabicVersion .phone {
  direction: rtl;
  text-align: right;
}

.btn-close:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.section-background {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 550px;
  overflow: hidden;
}
.section-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5019607843);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1;
}
.section-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
  opacity: 0.5;
  z-index: 2;
}
.section-background .section-content {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.section-background .section-content h1 {
  font-size: 2.5rem;
}

/* ✅ Tablet */
@media (max-width: 991px) {
  .section-background {
    min-height: 420px;
  }
  .section-background .section-content h1 {
    font-size: 2rem;
  }
}
/* ✅ Mobile */
@media (max-width: 575px) {
  .section-background {
    min-height: 350px;
  }
  .section-background .section-content {
    padding: 0 1rem;
  }
  .section-background .section-content h1 {
    font-size: 1.6rem;
  }
  .section-background p {
    font-size: 1rem !important;
  }
}
.section-background-contact {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 600px !important;
}
.section-background-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.section-background-contact .section-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}
.section-background-contact .section-content h1 {
  font-size: 2.5rem;
}

.section-background-two {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 650px;
}
.section-background-two::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.section-background-two .section-content {
  position: absolute;
}
.section-background-two .section-content h1 {
  font-size: 2.5rem;
}

.section-background-new {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-background-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.section-background-new .section-content {
  position: relative;
  z-index: 1;
}

.section-background-three {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 600px;
}
.section-background-three::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.section-background-three .section-content {
  position: relative;
  z-index: 1;
}

.height-350 {
  height: 350px;
}

.height-300 {
  height: 300px;
}

.height-100 {
  height: 100px;
  cursor: pointer;
}

.bg-img {
  background-size: 100% 100%;
  background-position: bottom;
  background-repeat: no-repeat;
}

.loader-bg {
  position: fixed;
  overflow: hidden;
  z-index: 1111111;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* From Uiverse.io by Nawsome */
.loader {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 6.25em;
  height: 6.25em;
  animation: rotate5123 2.4s linear infinite;
}

.white {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  animation: flash 2.4s linear infinite;
  opacity: 0;
}

.dot {
  position: absolute;
  margin: auto;
  width: 2.4em;
  height: 2.4em;
  border-radius: 100%;
  transition: all 1s ease;
}

.dot:nth-child(2) {
  top: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
  animation: dotsY 2.4s linear infinite;
}

.dot:nth-child(3) {
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  animation: dotsX 2.4s linear infinite;
}

.dot:nth-child(4) {
  top: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
  animation: dotsY 2.4s linear infinite;
}

.dot:nth-child(5) {
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  animation: dotsX 2.4s linear infinite;
}

@keyframes rotate5123 {
  0% {
    transform: rotate(0);
  }
  10% {
    width: 6.25em;
    height: 6.25em;
  }
  66% {
    width: 2.4em;
    height: 2.4em;
  }
  100% {
    transform: rotate(360deg);
    width: 6.25em;
    height: 6.25em;
  }
}
@keyframes dotsY {
  66% {
    opacity: 0.1;
    width: 2.4em;
  }
  77% {
    opacity: 1;
    width: 0;
  }
}
@keyframes dotsX {
  66% {
    opacity: 0.1;
    height: 2.4em;
  }
  77% {
    opacity: 1;
    height: 0;
  }
}
@keyframes flash {
  33% {
    opacity: 0;
    border-radius: 0%;
  }
  55% {
    opacity: 0.6;
    border-radius: 100%;
  }
  66% {
    opacity: 0;
  }
}
.poppins-ff {
  font-family: "Poppins", sans-serif !important;
}

.montserrat-ff {
  font-family: "Montserrat", sans-serif !important;
}

.bg-about {
  background-position: center;
  background-size: cover;
  height: 550px;
}

.mt--30 {
  margin-top: -30px;
}

.icon-right {
  right: 0;
  transform: translateX(-80px);
}
body.arabicVersion .icon-right {
  transform: translateX(80px);
  left: 10px;
  right: unset;
}

.custom-top-line {
  border-top: 1px solid #E6E6E6;
  width: 15%;
}

.faq-accordion .accordion-item {
  border: 1px solid #EAEAEA !important;
  border-radius: 10px !important;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  background-color: white !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 12px !important;
  transition: border-radius 0.3s ease;
}
.faq-accordion .accordion-button::after {
  content: "";
  background-image: url(../images/circle-arrow-down-02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  margin-left: auto;
}
body.arabicVersion .faq-accordion .accordion-button::after {
  margin-right: auto !important;
  margin-left: 0;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: #070B12 !important;
  background-color: var(--color-white) !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url(../images/circle-arrow-down-01.png);
  transform: translateY(1px);
}
.faq-accordion .accordion-body {
  background-color: white !important;
  color: #666666 !important;
}
.dropdown-item:focus,
.dropdown-item:active {
  background-color: transparent !important;
  box-shadow: none !important;
  color: var(--primary-color);
}

.top-55 {
  top: 55px !important;
}

.bg-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.feature-box {
  background: rgba(17, 17, 17, 0.6);
  border-radius: 10px;
  padding: 15px 30px;
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.text-terms {
  color: #1A1B1D !important;
}

.text-terms-muted {
  color: #838587 !important;
}

.mb--30 {
  margin-bottom: -30px;
}

body.arabicVersion .form-check-label {
  padding-right: 0.5rem;
}

@media (max-width: 767px) {
  .service-card {
    padding: 20px;
  }
}
.card-hover {
  transition: all 0.5s ease-in-out;
}

.card-hover:hover {
  transform: translateY(-18px);
  box-shadow: 0 12px 24px rgba(140, 199, 255, 0.4);
}

.ff-Almarai {
  font-family: "Almarai", sans-serif;
}

@media only screen and (min-width: 991px) {
  .top-bottom-absolute {
    top: -70px;
    bottom: -70px;
    left: 0;
    right: 0;
    z-index: 1;
  }
}
.slider-img {
  width: 150px;
  height: 150px;
}

.text-slider {
  color: #4D4D4C !important;
}

.slider-card {
  transition: all 0.8s ease;
  cursor: pointer;
}

.slider-card:hover .slider-img img {
  transform: scale(1.05);
}

.slider-img img {
  transition: transform 0.5s ease;
}

.custom-list {
  list-style: none;
  padding: 0;
}

.custom-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
body.arabicVersion .custom-list li {
  padding-left: 0px;
  padding-right: 30px;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 14.5C5 14.5 6.5 14.5 8.5 18C8.5 18 14.0588 8.83333 19 7' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 24px 24px;
}
body.arabicVersion .custom-list li::before {
  left: unset;
  right: 0;
}

.project-details-img {
  height: 200px;
  width: 100%;
}

.hero-sec .image-container {
  overflow: hidden;
  height: 370px;
  transition: transform 0.8s ease;
}
.hero-sec .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hero-sec .image-container:hover img {
  transform: scale(1.1);
}
.hero-sec .col-4:first-child .image-container {
  border-top-left-radius: 120px;
}
body.arabicVersion .hero-sec .col-4:first-child .image-container {
  border-top-right-radius: 120px;
  border-top-left-radius: 0px;
}
.hero-sec .col-4:last-child .image-container {
  border-top-right-radius: 120px;
}
body.arabicVersion .hero-sec .col-4:last-child .image-container {
  border-top-left-radius: 120px;
  border-top-right-radius: 0px;
}

.where-care-sec {
  overflow: visible;
}
.where-care-sec .img-hover {
  overflow: hidden;
  height: 370px;
}
.where-care-sec .img-hover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.where-care-sec .rounded-left img {
  border-top-left-radius: 100px;
}
.where-care-sec .rounded-right img {
  border-top-right-radius: 100px;
}
.z-1000 {
  z-index: 1000;
}

.highlight-wrapper {
  position: relative;
  display: inline-block;
}

.highlight-wrapper::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 12%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: url("../images/Highlight_07.png") no-repeat center/contain;
  z-index: -1;
}

@media (max-width: 767px) {
  .highlight-wrapper::before {
    top: -50px;
    width: 150px;
    height: 150px;
  }
}
.ticker-wrapper {
  background: #1a1a1a;
  overflow: hidden;
  white-space: nowrap;
  color: white;
  font-size: 32px !important;
  font-weight: 400 !important;
  text-transform: uppercase;
}

.ticker {
  display: inline-block;
  padding-right: 50px;
  animation: ticker 15s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
}

.ticker span::after {
  content: "•";
  margin: 0 15px;
  color: white;
}

.ticker span:last-child::after {
  content: "";
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ticker-wrapper:hover .ticker {
  animation-play-state: paused;
}

.stats-section {
  background-color: #b22053;
  color: #fff;
  border-radius: 10px;
}

.stats-section .col {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.stats-section .col:last-child {
  border-right: none;
}

.stats-number {
  font-size: 3rem !important;
  font-weight: bold;
}

.stats-label {
  font-size: 1rem;
}

.slick-track {
  display: flex !important;
  align-items: stretch;
}

.slick-slide {
  height: inherit !important;
}

.slick-slide {
  outline: none;
}

.slide-box {
  background: #EDF1F8;
  padding: 20px 20px;
}

.slide-box p {
  line-height: 1.8;
  font-size: 16px;
}

.slide-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.slide-footer a {
  color: #0d6efd;
  font-weight: bold;
  text-decoration: none;
}

.custom-arrows {
  display: flex;
  gap: 10px;
}

.custom-arrows button {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  cursor: pointer;
}

.slick-prev {
  background: var(--color-secondary);
  border: 1px solid var(--color-secondary);
  color: white;
}

.slick-next {
  background: transparent;
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
}

.section-background-heading {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 350px;
  border-radius: 0rem;
}
.section-background-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.section-background-heading .section-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.section-background-heading .section-content h1 {
  font-size: 2.5rem;
}

.contact-card {
  overflow: hidden;
}

.contact-left {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  min-height: 100%;
}

.contact-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.contact-left::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.contact-info {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2rem;
}

.p-2-contact {
  padding: 2rem;
}

.icon-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

.about-images img {
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.border-bottom.border-primary {
  border-bottom: 2px solid var(--color-primary) !important;
}

.border-primary {
  border: 1px solid var(--color-primary) !important;
}

.border-gray {
  border: 1px solid #E6E6E6 !important;
}

.fs-almarai {
  font-family: "Almarai", sans-serif;
}

.ff-lato {
  font-family: "Lato", sans-serif;
}

.services-section {
  position: relative;
  overflow: hidden;
}

.services-section .blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  filter: blur(8px);
  transform: scale(1.1);
  z-index: 1;
}

.services-section .container {
  position: relative;
  z-index: 2;
}

.card-overlay {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 100%;
}

.card-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.card-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.5); */
}

.card-overlay .card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  color: #fff;
}

.card-overlay:hover img {
  transform: scale(1.05);
}

.slick-dots {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 1rem 0;
  list-style-type: none;
}

.slick-dots button {
  display: block;
  width: 1rem;
  height: 1rem;
  margin-inline: 3px;
  border: none;
  border-radius: 100%;
  background-color: #E9E1EF;
  text-indent: -9999px;
}

.btn-slider {
  background: #E9E1EF !important;
}

.btn-slider:hover {
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.4) !important;
  text-decoration: none !important;
  color: #FFF;
}

.slider li {
  color: white;
  border-right: 2px solid #E9E1EF;
  text-align: center;
}

.btn-slider {
  padding: 10px 40px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0px;
  border-color: transparent !important;
  box-shadow: 0px 0px 0px 0px transparent !important;
}

li.slick-active button {
  background-color: var(--color-primary);
  width: 1rem;
  height: 1rem;
  border-radius: 24px;
  transition: all 0.3s ease-in-out;
}

.slick-dots button {
  transition: all 0.3s ease-in-out;
}

.slick-dots:not(:first-of-type) {
  display: none !important;
}

input[type=hidden i] {
  appearance: none;
  background-color: rgba(0, 0, 0, 0.1019607843) !important;
  cursor: default;
  display: none !important;
  padding: initial;
  border: initial;
}

.newsletter-form__field-wrapper {
  width: 100%;
}

.newsletter-form__field-wrapper {
  max-width: 46rem;
}

.newsletter-form__field-wrapper .field {
  z-index: 0;
  border: none;
}

.footer__newsletter input::placeholder {
  color: #696969 !important;
  font-weight: 400 !important;
}

.field {
  position: relative;
  width: 100%;
  display: flex;
}

.field:before, .select:before, .customer .field:before, .customer select:before, .localization-form__select:before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.newsletter-form__field-wrapper .field__input {
  padding-right: 5rem;
}

.field__input, .customer .field input {
  flex-grow: 1;
  text-align: left;
  padding: 1.5rem;
}

.field__label, .customer .field label {
  font-size: 1.6rem;
  margin-bottom: 0;
  pointer-events: none;
  position: absolute;
  letter-spacing: 0.1rem;
  line-height: 1.5;
}

.newsletter-form__button:not(:focus-visible):not(.focused) {
  box-shadow: inherit;
  background-color: inherit;
}

.newsletter-form__button {
  width: 3.4rem;
  margin: 0;
  top: 0;
  background-color: transparent !important;
  height: 100%;
  z-index: 2;
}

.ticker-wrapper {
  background: #1a1a1a;
  overflow: hidden;
  white-space: nowrap;
  color: white;
  font-size: 32px !important;
  font-weight: 900 !important;
  text-transform: uppercase;
}

.ticker {
  display: inline-block;
  padding-right: 50px;
  animation: ticker 15s linear infinite;
}

.ticker span {
  display: inline-flex;
  font-weight: 900 !important;
  align-items: center;
}

.ticker span::after {
  content: "•";
  margin: 0 15px;
  color: white;
}

.ticker span:last-child::after {
  content: "";
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ticker-wrapper:hover .ticker {
  animation-play-state: paused;
}

.border-dark {
  border: 1px solid #231F20;
}

.appointment-form input[type=radio] {
  display: none;
}

.appointment-form input[type=radio]:checked ~ .appointment-lable {
  box-shadow: 0px 0px 0px 1px var(--color-primary) !important;
  background-color: #F1EDF8 !important;
}

.appointment-form input[type=radio]:checked + .appointment-lable svg path {
  stroke: var(--color-primary);
}

.appointment-form input[type=radio]:checked + .appointment-lable span {
  color: var(--color-primary) !important;
}

.otp input {
  color: var(--color-primary) !important;
  border: 1px solid #E6E6E6 !important;
  background-color: #E6E6E6 !important;
}
.otp input:focus {
  background-color: #fff !important;
  border: 1px solid var(--color-primary) !important;
  box-shadow: none !important;
}

.otp input.filled {
  background-color: var(--color-primary) !important;
  color: #fff !important;
  border: none !important;
}

.otp input.filled:focus {
  border: none !important;
  box-shadow: none !important;
}

.toggle-password {
  float: right;
  cursor: pointer;
  margin-right: 10px;
  margin-top: -28px;
  color: #666666;
}
body.arabicVersion .toggle-password {
  float: left;
  margin-right: 0;
  margin-left: 10px;
}

.height-img-classes {
  height: 450px;
  width: 100%;
}

:root {
  --accent: #5b2227;
  --muted-bg: #EEE9EA;
}

/* Info row */
.info-row {
  display: flex;
  gap: 6mm;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 4mm;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 2mm;
  font-size: 3.7mm;
  color: #222;
}

.icon-placeholder {
  display: inline-block;
}

/* Price box */
.price-box {
  background: var(--muted-bg);
  border-radius: 2.5mm;
  padding: 1mm 4mm;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6mm;
  margin-bottom: 4mm;
}

.price-left small {
  font-size: 12px;
  display: block;
}

.price-left .price {
  font-weight: 700;
  font-size: 5mm;
}

.pill {
  padding: 1.3mm 2.5mm;
  border-radius: 6mm;
  background: var(--accent);
  color: #fff;
  font-size: 3.2mm;
  white-space: nowrap;
}

.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.quantity {
  display: flex;
  overflow: hidden;
  height: 37px;
}

.quantity button {
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 20px;
  width: 35px;
  height: 35px;
  text-align: center;
  transition: background-color 0.2s;
}

.quantity button:hover {
  background-color: var(--color-primary);
}

.input-box {
  width: 40px;
  text-align: center;
  border: none;
  font-size: 16px;
  font-weight: 600;
  outline: none;
}

.modal-dialog-scrollable .modal-body {
  -webkit-overflow-scrolling: touch;
}

.classes-img {
  height: 190px;
  width: 100%;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: white;
  background-color: var(--color-primary);
}

.nav-pills .nav-link {
  color: #333333;
}

.text-dark-new {
  color: #2A2B2F !important;
}

.bg-section {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  color: white;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 20px;
}

.bg-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

@media (max-width: 768px) {
  .bg-section {
    padding: 20px;
  }
  .bg-content {
    max-width: 100%;
  }
}
.home-img-height {
  height: 250px;
  width: 100%;
}

td {
  cursor: pointer;
  text-align: center;
  padding: 8px;
  width: 45px;
  height: 45px;
}

td.selected {
  background: var(--color-primary) !important;
  color: #fff;
  border-radius: 10px;
}

th {
  text-align: center;
}

.calendar-tabs .nav-tabs {
  border-bottom: none;
}
.calendar-tabs .nav-tabs .nav-link {
  padding: 6px 12px;
  margin-bottom: 0;
  border: none !important;
  color: #777;
  background-color: transparent !important;
}
.calendar-tabs .nav-tabs .nav-link.active {
  color: var(--color-primary) !important;
  border: none !important;
  border-bottom: 2px solid var(--color-primary) !important;
  background-color: transparent !important;
}

.has-search .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  line-height: 2.375rem;
  text-align: center;
  pointer-events: none;
  color: black !important;
}

@media (min-width: 1200px) {
  .has-search .form-control {
    width: 567px !important;
  }
}
@media (min-width: 992px) and (max-width: 1400px) {
  .navbar .nav-link,
  .navbar .nav-hover-link {
    font-size: 14px;
    white-space: nowrap;
  }
  .btn-lg-m {
    white-space: nowrap;
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .top-custom {
    right: -30px;
    top: -62px !important;
  }
  body.arabicVersion .top-custom {
    right: unset;
    left: -30px;
    transform: scaleX(-1);
  }
}
.top-custom {
  right: 0px;
  top: -82px !important;
}
body.arabicVersion .top-custom {
  right: unset;
  left: 0px;
  transform: scaleX(-1);
}

.search-input {
  border: 1px solid #E8E8E8 !important;
  border-radius: 8px;
  height: 45px;
  border: none;
  padding-left: 45px;
}
.search-input:focus {
  border: 2px solid var(--color-primary) !important;
}

.search-wrapper {
  position: relative;
}

.search-wrapper svg {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.timeline {
  position: relative;
  padding-left: 50px;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 2px;
  z-index: 0;
}

.timeline-item {
  position: relative;
  padding: 15px 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 1;
}

.timeline-item .circle {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #F2F2F2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  transition: all 0.3s;
}

.timeline-item.active .circle,
.timeline-item.completed .circle {
  background-color: #ECF8F4 !important;
  border-color: #2A6F56;
  color: #2A6F56 !important;
}

.timeline-item.locked .circle {
  border-color: #F2F2F2;
  color: #F2F2F2;
  cursor: not-allowed;
}

.timeline-item .content h6 {
  margin: 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.timeline-item .content .duration {
  color: gray;
  font-size: 0.85rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 0;
  width: 2px;
  height: 15px;
  background: #F2F2F2;
}

.text-gray {
  color: #B3B3B3 !important;
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 50px;
  width: 2px;
  height: 50px;
  background: #F2F2F2;
}

.timeline-item:first-child::before {
  display: none;
}

.timeline-item:last-child::after {
  display: none;
}

.border-primary-3 {
  border-bottom: 3px solid var(--color-primary) !important;
}

.text-yellow {
  color: #FFAE2C !important;
}

.text-orange {
  color: #AB531A !important;
}

.split-char,
.split-word {
  display: inline-block;
}

.circle-icon:hover::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.bookmark-btn.active i {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--color-primary) !important;
}

.text-Neutral-800 {
  color: #2B2A2A !important;
}

.form-cart input::placeholder {
  color: #2B2A2A !important;
}

.cart-item {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.filter-title {
  font-weight: 600;
  position: relative;
  margin-bottom: 15px;
}

.filter-title::after {
  content: "";
  width: 35px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 5px;
  display: block;
  margin-top: 6px;
}

.course-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s;
}

.course-card:hover,
.course-card.hovered {
  transform: translateY(-5px);
}

.course-card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

.course-img {
  height: 200px !important;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.course-card:hover .course-img,
.course-card.hovered .course-img {
  transform: scale(1.06);
}

.badge-category {
  background: #E8F9EF;
  color: #29BC53;
  font-size: 13px;
  border-radius: 20px;
  padding: 4px 12px;
}

.avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-overlay {
  position: absolute;
  bottom: -20px;
  right: 16px;
  z-index: 10 !important;
}

.icon-text {
  font-size: 14px;
  color: #6c757d;
}

.bg-green {
  background-color: rgba(29, 77, 59, 0.1019607843) !important;
  background-image: var(--bs-form-select-bg-img);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}

.course-col:nth-child(odd) {
  animation: fadeRight 1s ease both;
}

.course-col:nth-child(even) {
  animation: fadeLeft 1s ease both;
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Green boxes */
.green-box {
  background: #1f4f3a;
  height: 200px;
  border: 4px solid #FFD39A;
}

.first-height {
  height: 320px;
}

.second-height {
  height: 200px;
}

.pattern-box {
  background: #1f4f3a;
  height: 320px;
  position: relative;
  overflow: hidden;
}

.green-box,
.pattern-box {
  width: 100%;
}

.animated-stripe {
  height: 30px;
  background: repeating-linear-gradient(-55deg, #1f4f3a, #1f4f3a 20px, #f5c58a 20px, #f5c58a 40px);
  animation: moveStripe 4s linear infinite;
}

@keyframes moveStripe {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 200px 0;
  }
}
.card-box {
  height: 250px;
}

.object-fit-cover {
  object-fit: cover;
}

.video-wrapper {
  height: 550px;
}

.video-wrapper video {
  height: 100%;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}

.custom-box {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-35px, -52px);
  max-width: 200px;
}

.custom-box-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(-18px, 27px);
  max-width: 300px;
}

@media (max-width: 767.98px) {
  .custom-box,
  .custom-box-bottom {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: 100%;
    margin: 1rem 0;
  }
}
.text-anton {
  font-family: "Anton", sans-serif !important;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .fs-lg {
    font-size: 35px;
  }
}
.icon-wrapper {
  position: relative;
  display: inline-flex;
}

.icon-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #FFD39A;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 600;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Avatar */
.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E9E8FE;
  border: 3px solid #8683F0;
  color: var(--color-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.typing::after {
  content: "|";
  margin-left: 4px;
  animation: blink 1s infinite;
}

.typing.done::after {
  display: none;
}

@keyframes blink {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@media (min-width: 768px) {
  .center-md {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.gradient-bg {
  background: linear-gradient(to bottom, #6B3A91, #BE6AFF);
}

.img-background {
  background-size: cover;
  background-position: center;
  min-height: 450px;
  background-repeat: no-repeat;
}

.img-background-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.brochures-slider-nav {
  position: relative;
  top: -20px;
  text-align: right;
}
.brochures-slider-nav .prev, .brochures-slider-nav .next {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 41px;
  border-radius: 12px;
  color: #fff !important;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s linear;
}

.prev:hover,
.next:hover {
  border-color: #ffc600;
  background-color: #ffc600;
}

.product-img {
  width: 100%;
  height: 80px;
  object-fit: contain;
}

/* Discount Badge */
.discount-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #BE6AFF, #6B3A91);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  z-index: 2;
  border: none;
  overflow: hidden;
}

.discount-badge::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 100%;
  height: 41%;
  background-image: url("..//images/_x23_Layer_1_2_.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
}

.discount-badge-lg {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #BE6AFF, #6B3A91);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  z-index: 2;
  border: none;
  overflow: hidden;
}

.discount-badge-lg::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 100%;
  height: 41%;
  background-image: url("..//images/_x23_Layer_1_2_.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
}

.discount-badge-xl {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #BE6AFF, #6B3A91);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 32px;
  z-index: 2;
  border: none;
  overflow: hidden;
}

.discount-badge-xl::after {
  content: "";
  position: absolute;
  bottom: -9px;
  right: 0;
  width: 100%;
  height: 41%;
  background-image: url("..//images/Layer.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
}

.circle-icon-lg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-primary) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 998px) {
  .circle-icon-lg {
    width: 50px;
    height: 50px;
    font-size: 20px !important;
  }
  .discount-badge-xl {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .discount-badge-xl::after {
    height: 35%;
    bottom: -5px;
  }
}
.circle-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-primary) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-icon:hover::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.bookmark-btn.active i {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--color-primary);
}

.packages-slider .slick-slide {
  padding: 0 8px;
}

.packages-slider {
  margin: 0 -8px;
}

.upcoming-requests-slider .slick-slide {
  padding: 0 8px;
}

.upcoming-requests-slider {
  margin: 0 -8px;
}

.social-radio {
  background-color: #F0EBF4;
  border-radius: 14px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.social-radio img {
  height: 20px;
}

input[type=radio]:checked + .social-radio {
  border-color: var(--color-primary);
}

.otp input:focus {
  border: 1px solid var(--color-primary) !important;
  box-shadow: none !important;
}

.verify {
  width: 55px;
  height: 55px;
}

.appointment-form input[type=radio] {
  display: none;
}

.appointment-form input[type=radio]:checked ~ .appointment-lable {
  box-shadow: 0px 0px 0px 1px var(--color-primary) !important;
}

.appointment-form input[type=radio]:checked + .appointment-lable svg path {
  stroke: var(--color-primary);
}

.appointment-form input[type=radio]:checked + .appointment-lable span {
  color: var(--color-primary) !important;
}

a:hover .product-img {
  transform: scale(1.05) scaleX(-1);
  transition: 0.6s ease;
}

.card-blur::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.card-blur::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(107, 58, 145, 0.3019607843);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 0;
}

.card-blur > .card-body {
  position: relative;
  z-index: 1;
}

.supplier-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  padding: 4px;
  cursor: pointer;
}

.border-gradient {
  background: linear-gradient(135deg, #6B3A91, #BE6AFF);
}

.brochure-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 4px;
  cursor: pointer;
}

.suppliers-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  padding: 4px;
  cursor: pointer;
}

.suppliers-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
}

.suppliers-name {
  color: #222222;
  font-size: 24px;
}

.story-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #6B3A91, #BE6AFF);
  border-radius: 50%;
  cursor: pointer;
}

.story-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
}

.filters-wrapper {
  overflow-x: auto;
}

.filters-scroll {
  display: flex;
  gap: 10px;
  white-space: nowrap;
  scrollbar-width: none;
}

.filters-scroll::-webkit-scrollbar {
  display: none !important;
}

.filters-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
}

.filters-wrapper::-webkit-scrollbar {
  margin-top: 15px;
}

.filters-wrapper {
  padding-bottom: 0.5rem;
}

.filters-wrapper::-webkit-scrollbar {
  height: 6px;
}

.filters-wrapper::-webkit-scrollbar-track {
  background-color: var(--color-bg-light, #f0f0f0);
  border-radius: 10px;
}

.filters-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--color-primary, #888) !important;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.filter-btn {
  border: 0;
  background: #F0EBF4;
  color: #222;
  padding: 10px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.filter-btn .count {
  background: var(--color-primary);
  color: #fff;
  padding: 2px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  font-size: 13px;
}

.filter-btn.active {
  background: var(--color-primary);
  color: #fff;
}

.filter-btn.active .count {
  background: #fff;
  color: var(--color-primary);
}

.active-page {
  background-color: var(--color-primary) !important;
  color: #ffffff !important;
  border: 0 !important;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-link {
  border-radius: 100% !important;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay */
.header--overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  color: #fff;
}

/* Default */
.header--default {
  position: relative;
  background-color: #fff;
  color: var(--color-secondary) !important;
}

.nav-link.text-white {
  color: #fff;
}

.nav-link.text-dark {
  color: #000;
}

.upload-box {
  border: 2px dashed #e5e7eb;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.upload-box-supplier {
  border: 2px dashed #e5e7eb;
  border-radius: 12px;
  background-color: #fff;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  position: relative;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.upload-preview-wrapper, .upload-preview {
  position: relative;
  width: 100%;
  text-align: center;
}

.uploaded-image {
  border-radius: 12px;
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  border-radius: 0;
  border: none;
}

.remove-image-btn {
  display: none;
  position: absolute;
  top: 5px;
  right: 11px;
  background-color: transparent;
  z-index: 10;
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.upload-box.has-images {
  border: none;
  padding: 0;
}

.upload-preview {
  position: relative;
  display: none;
}

.color-box {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  cursor: pointer;
}

.color-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  overflow: hidden;
}

#colorPicker {
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  cursor: pointer;
}

.upload-preview {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.preview-item {
  position: relative;
  width: 120px;
  height: 120px;
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.remove-img {
  position: absolute;
  top: -11px;
  right: -18px;
  width: 30px;
  height: 30px;
  border: none;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.product-img-height {
  height: 220px !important;
  width: 100% !important;
}

.bagde-in-stock {
  background-color: rgba(6, 153, 18, 0.2);
  color: #069912;
  font-size: 14px;
  font-weight: 500;
}

.bagde-out-stock {
  background-color: rgba(153, 6, 6, 0.2);
  color: #990606;
  font-size: 14px;
  font-weight: 500;
}

.icon-link svg rect {
  transition: fill 0.3s ease;
}

.icon-link svg path,
.icon-link svg circle {
  transition: stroke 0.3s ease;
}

.icon-link:hover svg rect {
  fill: var(--color-primary);
}

.icon-link:hover svg path,
.icon-link:hover svg circle {
  stroke: #ffffff;
}

.icon-link.muted svg rect {
  fill: #F0F0F0;
}

.icon-link.muted svg path,
.icon-link.muted svg circle {
  stroke: #BABABA;
}

.icon-link.muted:hover svg rect {
  fill: #F0F0F0;
}

.icon-link.muted:hover svg path,
.icon-link.muted:hover svg circle {
  stroke: #BABABA;
}

.slider-main {
  border-radius: 8px;
  overflow: hidden;
}

.main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slider-thumbs {
  margin-top: 20px;
}

.thumb-img {
  padding: 5px;
}

.thumb-img img {
  width: 100%;
  height: 90px;
  object-fit: contain;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  border-color: #F0F0F0;
}

.slider-thumbs .slick-current img {
  border-color: var(--color-primary);
}

.slick-prev,
.slick-next {
  background: #3fc1c0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.slick-prev:before,
.slick-next:before {
  color: #fff;
  font-size: 18px;
}

.table td {
  border-bottom: none;
}

.table tbody tr {
  border-bottom: 1px solid #dee2e6;
}

@media (max-width: 768px) {
  .mobile-view thead {
    display: none;
  }
  .mobile-view .h-cart {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    overflow: hidden;
  }
  .mobile-view .h-cart td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1rem;
    border-bottom: 1px solid #eee;
    width: 100% !important;
    box-sizing: border-box;
  }
  .mobile-view .h-cart td::before {
    content: attr(data-label);
    font-weight: bold;
    color: #333;
    display: inline-block;
  }
  .mobile-view .h-cart td:last-child {
    border-bottom: none;
  }
}
.table thead th {
  background-color: #F9F9F9;
  color: #222;
}

@media (min-width: 769px) {
  .mobile-view .h-cart {
    display: table-row !important;
  }
  .mobile-view .h-cart td {
    display: table-cell !important;
    white-space: nowrap;
    vertical-align: middle;
  }
  .mobile-view .h-cart td::before {
    content: none !important;
  }
}
.bg {
  background-color: #F6F6F6 !important;
}

.product-img-bg {
  background-color: #F9F9F9;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
}

.product-img-cart {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
}

.address-card {
  display: block;
  cursor: pointer;
  margin-bottom: 16px;
}

.address-card input[type=radio] {
  transform: scale(1.5);
  cursor: pointer;
}

.address-inner {
  border-radius: 14px;
  border: 1px solid #eee;
  padding: 18px;
  transition: all 0.3s ease;
  background: #fff;
}

.address-card input:checked + .address-inner {
  background: #F0EBF4 !important;
  border-color: #2ec4c4 !important;
}

.location-icon {
  font-size: 20px;
  color: #2ec4c4;
}

.edit-icon {
  cursor: pointer;
  font-size: 18px;
}

.delete-icon {
  cursor: pointer;
  font-size: 18px;
  color: #ff4d4f;
}

.add-address {
  color: var(--color-primary);
  font-weight: 500;
}

.payment-inner {
  border-radius: 0px;
  border: 1px solid #eee;
  padding: 10px;
  transition: all 0.3s ease;
  background: #fff;
  border-bottom: 1px solid #E6E6E6 !important;
}

.payment-card:last-child .payment-inner {
  padding: 10px 0px 0px 0px;
  border-bottom: none !important;
}

.payment-card input[type=radio] {
  transform: scale(1.3);
  cursor: pointer;
}

.payment-card:has(input:checked) .payment-inner {
  border: 1px solid #2ec4c4;
}
.payment-card:has(input:checked) .payment-inner .text-dark {
  color: var(--color-primary) !important;
  font-weight: 600 !important;
}

.checkout-accordion .accordion-item {
  border: 1px solid #EAEAEA !important;
  border-radius: 10px !important;
  overflow: hidden;
}
.checkout-accordion .accordion-button {
  background-color: var(--color-primary) !important;
  color: #FFFFFF !important;
  font-weight: 600 !important;
  transition: border-radius 0.3s ease;
}
.checkout-accordion .accordion-button::after {
  content: "";
  background-image: url(../images/arrow-down-01-round.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  margin-left: auto;
  transform: scaleY(-1);
}
body.arabicVersion .checkout-accordion .accordion-button::after {
  margin-right: auto !important;
  margin-left: 0;
}
.checkout-accordion .accordion-button:not(.collapsed)::after {
  background-image: url(../images/arrow-down-01-round.png);
  transform: translateY(1px);
}
.checkout-accordion .accordion-body {
  background-color: white !important;
  color: #666666 !important;
}
.checkout-accordion .accordion-body {
  max-height: 270px;
  overflow-y: auto;
}
.checkout-accordion .accordion-body::-webkit-scrollbar {
  width: 6px;
}
.checkout-accordion .accordion-body {
  overflow-y: auto;
  scrollbar-color: var(--color-primary) #F0EBF4;
}
.checkout-accordion .accordion-body::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
}
.checkout-accordion .accordion-body::-webkit-scrollbar-track {
  background-color: #F0EBF4;
}

.badge-canceled {
  background-color: rgba(214, 0, 0, 0.1019607843);
  color: #D60000;
  font-weight: 600;
}

.badge-completed {
  background-color: rgba(14, 155, 49, 0.1019607843);
  color: #0E9B31;
  font-weight: 600;
}

.badge-pending {
  background-color: rgba(247, 152, 38, 0.1019607843);
  color: #F79826;
  font-weight: 600;
}

.text-ellipsis {
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.timeline-step {
  position: relative;
  width: 80px;
  text-align: center;
}

.timeline-step .icon {
  font-size: 28px;
  margin-bottom: 18px;
}

.timeline-step .circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px !important;
  font-size: 16px;
}

.timeline-step.completed .circle {
  background: var(--color-primary);
  color: #fff;
}

.timeline-step.completed .icon {
  color: #000;
}

.timeline-step.muted-completed .circle {
  background: #CFCFCF;
  color: #fff;
}

.timeline-step.muted-completed .icon {
  color: #cfcfcf;
}

/* Lines */
.line {
  flex: 1;
  height: 2px;
  margin-top: 32px;
}

.line.active {
  background: #646464;
}

.line.muted {
  background: repeating-linear-gradient(to right, #d3d3d3, #d3d3d3 6px, transparent 6px, transparent 12px);
}

.timeline-step.completed .icon svg path,
.timeline-step.completed .icon svg circle {
  stroke: #0C0C0C;
}

/* Muted Step */
.timeline-step.muted-completed .circle {
  background: #CFCFCF;
  color: #fff;
}

.timeline-step.muted-completed .icon svg path,
.timeline-step.muted-completed .icon svg circle {
  stroke: #CFCFCF;
}

.bg-primary-main {
  background: linear-gradient(to bottom, #F1EDF8, #583887) !important;
}

.bg-secondary-dark {
  background: linear-gradient(to bottom, #C8B7E1, #84E1DB) !important;
}

.bg-primary-gradient {
  background: linear-gradient(to bottom, #583887, #2BB3AA) !important;
}

.border-bottom-dashed {
  border-bottom: 1px dashed #916FC3;
  width: 80% !important;
}

.py-1-2 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.rounded-35 {
  border-radius: 0.7rem;
}

.h-lg {
  height: 450px;
}

.h-sm {
  height: calc((450px - 1rem) / 2);
}

.footer-bg {
  background-image: url("../images/icons.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.sec-bg {
  background-image: url("../images/icon-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.auth-bg {
  background-image: url("../images/auth-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.auth-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5019607843);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1;
}
.auth-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
  opacity: 0.2;
  z-index: 2;
}

.phone-img {
  max-width: 500px;
}

.key-features .circle {
  width: 12px;
  height: 12px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: inline-block;
}
.key-features .text-secondary-alt {
  color: #877157 !important;
}

@media (max-width: 992px) {
  .phone-img {
    max-width: 350px;
  }
}
@media (max-width: 576px) {
  .phone-img {
    max-width: 250px;
  }
}
.py-custom {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.service-card {
  position: relative;
}

.rounded-bl-4 {
  border-bottom-left-radius: 1.5rem;
}

.popular-services-slider .slick-slide {
  padding: 0 10px;
}

.popular-services-slider {
  margin: 0 -10px;
}
