@charset "UTF-8";
html {
  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: "Montserrat", sans-serif;
  background: white;
  transition: background-color 0.35s ease, color 0.35s ease;
}

.navbar-toggler-icon {
  background-image: none !important;
  width: 26px;
  height: 22px;
  position: relative;
  display: inline-block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon {
  background-repeat: no-repeat;
}

.navbar-toggler-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-secondary);
  border-radius: 10px;
}

.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 70%;
  height: 2px;
  background: var(--color-secondary);
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}

.navbar-toggler-icon span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-secondary);
  border-radius: 10px;
}

.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:#9D3D3D;
  --color-primary-hover:#9D3D3D1A;
  /* Secondary Colors */
  --color-secondary:#1F1E1C;
  --color-secondary-hover: linear-gradient(45deg, #003145, #0079AB);
  /* info Colors */
  --color-info: #737373;
  --color-info-light: #FEF8CD;
  /* Neutral / Grayscale */
  --color-gray-dark: #3b3c40;
  --color-gray-medium: #454545;
  --color-gray-light: #D2BADE;
  --wave-color: #1F75F7;
  /* Text Colors */
  --color-text-heading: #666666;
  --color-text-dark: #0C0C0C;
  --color-text-dark-alt: #333333;
  --color-text-dark-soft: #222222;
  --color-text-muted: #737373;
  --color-text-footer: #d7d7d7;
  --color-text-light: #F9F3F0;
  --color-text-lighter: #8F8F8F;
  /* Accent Colors */
  --color-accent: #919191;
  --star: #FFCC00;
  /* Background Colors */
  --color-bg-card: #F5F5F5;
  --color-bg-light: #E9F1FE;
  --color-bg-lighter: #EDF8F9;
  --color-bg-light-alt: #EDEDED;
  --color-bg-light-soft: #F9F9F9;
  --color-bg-light-body: white;
  --color-bg-light-extra: #F7EDE9;
  /* Dark Backgrounds */
  --color-bg-dark: #1A1A1A;
  --color-bg-dark-body: #222222;
  --color-bg-dark-alt: #101010;
  --color-bg-dark-soft: #11111199;
  --footer-bg:#222222;
  --body-bg: var(--color-bg-light-body);
  --body-text: var(--color-text-dark);
  --toggle-bg: var(--color-primary);
  --toggle-icon-color: #ffffff;
  --toggle-text-color: #ffffff;
  --icon-color: #222222;
  --address-icon-color: #222222;
  --dropdown-icon: #47BDC6;
}

body[data-theme=dark] {
  --address-icon-color: #47BDC6;
  --color-secondary:#FFFFFF;
  --footer-bg:#0C0C0C;
  --icon-color: #ffffff;
  --color-text-dark:#FFFFFF;
  --color-text-dark-soft: #ffffff;
  --dropdown-icon: #47BDC6;
  --color-info: #CCCCCC;
  --color-bg-light-soft: transparent;
  --color-bg-lighter: #1A1A1A;
  --color-text-dark-alt: #FFFFFF;
  --body-bg: var(--color-bg-dark-body);
  --body-text: var(--color-text-light);
  --toggle-bg: var(--color-bg-dark-alt);
  --toggle-icon-color: var(--star);
  --toggle-text-color: var(--color-text-light);
}

.body-bg {
  background-color: var(--body-bg) !important;
}

.footer-bg {
  background-color: var(--footer-bg);
}

.nav-icon {
  color: var(--icon-color);
}

.address-icon {
  color: var(--address-icon-color);
}

.nav-icon svg * {
  stroke: currentColor;
}

.address-icon svg * {
  stroke: currentColor;
}

.share-icon {
  color: var(--icon-color);
}

.share-icon svg * {
  stroke: currentColor;
}

.mode-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 21px;
  border: none;
  border-radius: 15px;
  background: var(--toggle-bg);
  color: var(--toggle-text-color);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.35s ease, transform 0.15s ease, box-shadow 0.35s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.mode-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.mode-toggle:active {
  transform: translateY(0);
}

.mode-toggle .icon-wrap {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mode-toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--toggle-icon-color);
  transition: transform 0.4s ease, stroke 0.35s ease;
}

body[data-theme=dark] .mode-toggle svg {
  transform: rotate(-20deg);
}

.mode-toggle .label {
  min-width: 46px;
  text-align: start;
}

.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 {
  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: 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-lighter {
  background-color: var(--color-bg-lighter) !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;
}

.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-38 {
  font-size: clamp(28px, 4vw, 38px) !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: #fff !important;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}
.btn-primary:hover {
  background-color: var(--color-primary-hover) !important;
  border-color: var(--color-primary) !important;
  color: var(--color-primary) !important;
  transform: translateY(-4px);
}
.btn-primary i {
  color: inherit;
  transition: color 0.3s ease;
}
.btn-primary svg {
  transition: transform 0.3s ease;
}
.btn-primary svg path,
.btn-primary svg circle {
  transition: stroke 0.3s ease, fill 0.3s ease;
}
.btn-primary:hover i {
  color: var(--color-primary);
}
.btn-primary:hover svg path, .btn-primary:hover svg circle {
  stroke: var(--color-primary) !important;
}
.btn-primary.no-hover-transform:hover {
  transform: none;
}

.btn-gray {
  color: #fff !important;
  background-color: #B0B1B1 !important;
  border: 1px solid #B0B1B1 !important;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}
.btn-gray:hover {
  color: #B0B1B1 !important;
  background-color: transparent !important;
  border-color: #B0B1B1 !important;
  transform: translateY(-4px);
}
.btn-gray svg {
  transition: transform 0.3s ease;
}
.btn-gray svg path,
.btn-gray svg circle {
  transition: stroke 0.3s ease, fill 0.3s ease;
}
.btn-gray:hover svg path, .btn-gray:hover svg circle {
  stroke: #B0B1B1 !important;
  fill: #B0B1B1 !important;
}

.btn-secondary {
  color: white !important;
  background: var(--color-secondary) !important;
  border: none !important;
  transition: all 0.8s ease !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-secondary svg {
  transition: transform 0.3s ease, stroke 0.3s ease;
}
.btn-secondary:hover {
  color: white !important;
  background: var(--color-secondary-hover) !important;
  transform: translateY(-3px);
}
.btn-secondary:hover svg {
  transform: translateX(4px);
}
.btn-secondary:hover svg path {
  stroke: white !important;
}

.btn-black {
  color: white !important;
  background: black !important;
  border: none !important;
  transition: all 0.8s ease !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-black svg {
  transition: transform 0.3s ease, stroke 0.3s ease;
}
.btn-black:hover {
  color: black !important;
  background: var(--color-bg-light) !important;
}
.btn-black:hover svg path {
  stroke: black !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: 2px 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-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-text-dark) !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 {
  stroke: white !important;
}

.btn-outline-white {
  color: white !important;
  background-color: transparent !important;
  border: 1px solid white !important;
  transition: 0.5s linear !important;
}
.btn-outline-white:hover {
  color: var(--color-primary) !important;
  background-color: white !important;
  border-color: 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: #737373 !important;
}

.form-control-md {
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
  height: 48px;
}

.form-select-md {
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
  height: 48px;
}

input:not([type=checkbox]):not(.btn-check) {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  transition: all 0.3s ease;
  font-size: 14px;
}
input:not([type=checkbox]):not(.btn-check):hover {
  border-color: #d0d0d0;
}
input:not([type=checkbox]):not(.btn-check):focus {
  border: 1px solid var(--color-primary) !important;
  box-shadow: 0 0 0 3px rgba(157, 61, 61, 0.15) !important;
  outline: none;
}

select {
  color: var(--color-info) !important;
}
select:focus {
  border: 1px solid var(--color-primary) !important;
}

.form-select {
  border: 1px solid #E6E6E6 !important;
}
.form-select:hover {
  border-color: #d0d0d0;
}
.form-select:focus {
  border: 1px solid var(--color-primary) !important;
  box-shadow: 0 0 0 3px rgba(157, 61, 61, 0.15) !important;
  outline: none;
}

.intl-tel-input {
  width: -webkit-fill-available !important;
}

textarea {
  border: 1px solid #E6E6E6 !important;
  resize: none !important;
}
textarea:hover {
  border-color: #d0d0d0;
}
textarea:focus {
  border: 1px solid var(--color-primary) !important;
  box-shadow: 0 0 0 3px rgba(157, 61, 61, 0.15) !important;
  outline: none;
}

.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: black !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 !important;
}

.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: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent !important;
  color: white !important;
  transition: 0.5s all;
  border: 1.5px solid #FFFFFF !important;
}
.social-icons svg path {
  stroke: white;
}
.social-icons:hover {
  background-color: white !important;
  color: var(--color-primary) !important;
  transform: translateY(-5px);
}
.social-icons:hover svg path {
  stroke: var(--color-primary) !important;
}

@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: var(--color-primary) !important;
  border: none !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-secondary) !important;
  border: none !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;
    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;
    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 {
    padding: 0;
  }
  .offcanvas-body {
    padding: 0;
  }
  .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: var(--body-bg) !important;
  }
  .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: var(--color-secondary) !important;
  }
  .offcanvas-body .nav-link a {
    color: var(--color-secondary) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 100%;
  }
  .offcanvas-body .nav-link:hover {
    background-color: white !important;
  }
  .offcanvas-body .nav-link:hover a {
    color: white !important;
  }
  .offcanvas-body .nav-link {
    color: var(--color-secondary) !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-secondary);
  }
  .offcanvas-body {
    background-color: var(--body-bg);
    color: var(--color-secondary) !important;
  }
  .offcanvas-body .text-primary {
    color: white !important;
    border-bottom: 1px solid #fff;
  }
}
.offcanvas-body {
  background-color: var(--body-bg);
  color: var(--color-secondary) !important;
}

#orderDetailsOffcanvas {
  background-color: var(--body-bg);
  color: var(--color-secondary) !important;
}

.nav-link {
  color: var(--color-secondary);
}

@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-secondary) !important;
    transition: 0.5s;
    margin: auto;
    display: block;
  }
  .nav-hover-link:hover, .nav-hover-link.active {
    font-weight: 700 !important;
    color: white !important;
  }
  .nav-hover-link:hover::after, .nav-hover-link.active::after {
    width: 100%;
  }
  .header--overlay .nav-hover-link::after {
    background-color: ar(--color-primary) !important;
  }
  .header--overlay .nav-hover-link:hover, .header--overlay .nav-hover-link.active {
    color: ar(--color-secondary) !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-secondary);
  }
  .header--default .nav-hover-link:hover, .header--default .nav-hover-link.active {
    color: var(--color-secondary) !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: 1399px) {
  .fs-sm {
    font-size: 13px !important;
  }
  .fs-9 {
    font-size: 32px !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: linear-gradient(to bottom, rgba(107, 79, 59, 0.3019607843), #000000);
  z-index: 0;
}

.hero-bg .container {
  position: relative;
  z-index: 1;
}

/* ===== Desktop ===== */
/* ===== 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-content {
  position: absolute;
  bottom: 0;
  z-index: 2;
  color: #fff;
}

.dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0A0D17, rgba(10, 13, 23, 0));
  z-index: 1;
  border-radius: 10px;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.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: 450px;
  overflow: hidden;
}
.section-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(19, 19, 19, 0.6);
  z-index: 1;
}
.section-background::after {
  content: "";
  position: absolute;
  inset: 0;
  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: 500px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-background-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.502);
}
.section-background-contact .section-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}
@media (max-width: 767px) {
  .section-background-contact .section-content {
    text-align: center;
    align-items: center;
  }
}
.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: black;
  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: var(--color-bg-dark);
  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(135deg, var(--color-primary), var(--body-bg));
  animation: dotsY 2.4s linear infinite;
}

.dot:nth-child(3) {
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(135deg, var(--color-primary), var(--body-bg));
  animation: dotsX 2.4s linear infinite;
}

.dot:nth-child(4) {
  top: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-primary), var(--body-bg));
  animation: dotsY 2.4s linear infinite;
}

.dot:nth-child(5) {
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-primary), var(--body-bg));
  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 {
  --bs-accordion-bg: transparent !important;
  --bs-accordion-border-color: transparent !important;
}
.faq-accordion .accordion-item {
  border-radius: 0px !important;
  overflow: hidden;
  box-shadow: none !important;
  background-color: transparent !important;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.2509803922) !important;
}
.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-image: none !important;
}
.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) .accordion-button {
  border-image: none !important;
}
.faq-accordion .accordion-collapse {
  background-color: transparent !important;
}
.faq-accordion .accordion-button {
  background: transparent !important;
  background-color: transparent !important;
  color: white;
  box-shadow: none !important;
  border-radius: 0 !important;
  transition: border-radius 0.3s ease;
}
.faq-accordion .accordion-button::after {
  content: "";
  background-image: url(../images/Chevron\ down.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  margin-left: auto;
}
body.arabicVersion .faq-accordion .accordion-button::after {
  margin-right: auto !important;
  margin-left: 0;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: #fff !important;
  background: transparent !important;
  background-color: transparent !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url(../images/Chevron-up.png);
  transform: translateY(1px);
}
.faq-accordion .accordion-body {
  background: transparent !important;
  background-color: transparent !important;
  color: white !important;
}
.faq-accordion-privacy .faq-accordion .accordion-button {
  box-shadow: none !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%;
}

.text-gray {
  color: #888888;
}

.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) {
  .fs-18 {
    font-size: 16px !important;
  }
  .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 {
  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.3019607843);
  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.3019607843);
}

.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 #F6F6F6 !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: 2px solid #A6A6A6;
  border-radius: 100%;
  background-color: white;
  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);
  border: 1px solid 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 {
  border-color: var(--color-primary) !important;
  background-color: rgba(var(--color-primary-rgb), 0.8);
}

.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: 12px;
  margin-top: -35px;
  color: #B3B3B3;
}
body.arabicVersion .toggle-password {
  float: left;
  margin-right: 0;
  margin-left: 12px;
}

.toggle-password .icon {
  width: 22px;
  height: 22px;
  display: none;
}

.toggle-password .icon-eye-slash {
  display: block;
}

.toggle-password.show .icon-eye {
  display: block;
}

.toggle-password.show .icon-eye-slash {
  display: none;
}

.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);
}

.payment-summary .form-check-input {
  padding: 0 !important;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.payment-summary .form-check-input:focus {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

.payment-summary img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.payment-methods .form-check-input {
  cursor: pointer;
}
.payment-methods .form-check-input:checked {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  accent-color: var(--color-primary);
}
.payment-methods label {
  padding: 5px 8px;
  border: 1px solid #DCDCDC;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.payment-methods label:has(input[type=radio]:checked) {
  border-color: var(--color-primary);
}
.payment-methods label:not(:last-child) {
  border-bottom: 1px solid #DEDEDE;
}

.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%;
}

.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;
}

.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;
}

.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;
}

.packages-slider .slick-slide {
  padding: 0 8px;
}

.packages-slider {
  margin: 0 -8px;
}

.reviews-slider .slick-slide {
  margin: 0 6px;
}

.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: clamp(42px, 12vw, 65px);
  height: clamp(42px, 12vw, 65px);
  padding: 0;
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 600;
  text-align: center;
  border: 1px solid #E8E8E8 !important;
}

.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;
}

body[data-theme=dark] .address-inner {
  border: 1px solid #737373;
}

.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;
}

.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);
}

.bg-card-img {
  background-image: url("../images/bg-icons.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.rounded-l-t-r {
  border-radius: 20px 0 20px 0;
}

.rounded-r-t-l {
  border-radius: 0 20px 0 20px;
  background-image: url("../images/seamless-pattern-with-coffee-beans-on-beige-background-in-retro-style-free-vector 2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.sec-bg {
  background: linear-gradient(to bottom, rgba(90, 90, 90, 0.2) 100%, rgba(50, 51, 53, 0.3) 50%, rgba(23, 23, 23, 0.5) 100%), url("../images/faq.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 1px solid #C7C7C7;
  backdrop-filter: blur(5px);
}

.auth-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.auth-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3019607843);
  z-index: 1;
}

.auth-bg .wave-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.auth-bg .wave-svg path {
  fill: var(--wave-color);
}

.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;
}

.bg-white-05 {
  background-color: rgba(233, 235, 248, 0.3019607843);
}

.dropdown-item:focus, .dropdown-item:active, .dropdown-item:hover {
  background-color: var(--color-primary-hover) !important;
  box-shadow: none !important;
  color: var(--primary-color);
  border-right: 4px solid var(--color-primary);
}

.rounded-contact {
  border-radius: 10px 100px 10px 10px;
}
body.arabicVersion .rounded-contact {
  border-radius: 100px 10px 10px 10px;
}

.rounded-contact-card {
  border-radius: 10px 10px 100px 10px;
}
body.arabicVersion .rounded-contact-card {
  border-radius: 10px 10px 10px 100px;
}

.protection-slider .card {
  border: 2px solid #C7C7C7;
  overflow: visible !important;
  margin: 0 15px;
  transition: 0.4s ease;
  background-image: url("../images/Card-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: transparent;
}
.protection-slider .card .icon-img {
  height: 60px;
  width: 60px;
}

.protection-slider-sec .card {
  border: 2px solid #C7C7C7;
  overflow: visible !important;
  transition: 0.4s ease;
  background-image: url("../images/why-it-card.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: transparent;
}
.protection-slider-sec .card .icon-img {
  height: 60px;
  width: 60px;
}

.why-cyber-slider .slick-list,
.why-cyber-slider .slick-track,
.why-cyber-slider .slick-slide {
  overflow: visible !important;
}

.why-cyber-slider .card {
  border: 2px solid #C7C7C7;
  overflow: visible !important;
  margin: 0 25px;
  transition: 0.4s ease;
  background-image: url("../images/Card-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: transparent;
}
.why-cyber-slider .card .circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #171717;
  border: 1px solid var(--color-primary);
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.why-cyber-slider .card .circle img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.why-cyber-slider .slick-center.card {
  transform: scale(1.05);
  border-color: var(--color-primary);
  transition: 0.4s ease;
}
.why-cyber-slider .slick-center.card .circle {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.why-cyber-slider .slick-center.card .circle img {
  filter: brightness(0) invert(1);
}

.testimonials-slider-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #E9F1FE;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: var(--color-secondary);
}

.testimonials-slider-nav button.prev:hover,
.testimonials-slider-nav button.next:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: white;
}

.testimonial-nav button {
  background-color: var(--color-primary);
  color: white;
  border: none;
}

.testimonial-nav button.prev {
  background-color: #BABABA;
  color: white;
  border: none;
}

.mt-n15 {
  margin-top: -0.15rem !important;
}

.mt-n5 {
  margin-top: -0.35rem !important;
}

.new-rocker-font {
  font-family: "New Rocker", system-ui;
}

.text-security {
  color: rgba(255, 255, 255, 0.1019607843);
  font-size: 70px;
  position: absolute;
  bottom: -10px;
  right: 0;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.bg-white-500 {
  background-color: rgba(255, 255, 255, 0.1019607843);
}

.cyber-video video {
  border-radius: 0px;
}

.video-title {
  font-size: 20px;
  font-weight: 500;
}

.video-overlay {
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
  transition: 0.3s;
}

.play-button {
  z-index: 2;
  cursor: pointer;
}

.card-custom {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background-image: url("../images/contact-card.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: transparent;
  border: none;
  color: white;
}

.bg-about-card {
  background-image: url("../images/Card-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: transparent;
  box-shadow: 0 0 6px #0174A4;
}

/* card */
.timeline-card {
  background-image: url("../images/Card-bg.png") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #1a1a1a;
  transition: transform 0.3s, border-color 0.3s;
  border: 1px solid #C7C7C7;
  border-radius: 14px;
  color: white;
  padding: 28px;
  position: relative;
  transition: 0.3s ease;
  z-index: 3 !important;
}

.timeline-card:hover,
.timeline-card.hovered {
  transform: translateY(-6px);
  border-color: #00c6ff;
}

.timeline-card h5 {
  margin-top: 15px;
  font-size: 18px;
}

.timeline-card p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 0;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #0d6efd;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* mobile */
@media (max-width: 767px) {
  .timeline-line,
  .timeline-dot,
  .timeline-connector {
    display: none !important;
  }
  .timeline-item {
    margin-bottom: 40px;
  }
}
.top-30 {
  top: 35%;
}

@media (min-width: 1200px) {
  .display-6 {
    font-size: 45px;
  }
}
.gallery-slider .image-container-slider {
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-slider .image-container-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.gallery-slider .slick-slide {
  margin: 0 25px;
  transition: 0.4s ease;
}

.gallery-slider .slick-center.image-container-slider {
  transform: scale(1.1);
  z-index: 2;
}

.contact-sec {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 600px;
}
.contact-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: rgba(4, 7, 7, 0.2509803922);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 0;
}
.contact-sec .card-body {
  position: relative;
}

.services-img {
  height: 300px;
  width: 100%;
}

.faq-scroll-wrapper {
  height: 470px;
  scrollbar-width: thin;
}

.accordion-scroll {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-gutter: stable;
}
@media (min-width: 992px) {
  .accordion-scroll {
    padding: 6px 14px 6px 6px;
  }
  body.arabicVersion .accordion-scroll {
    padding: 6px 6px 6px 14px;
  }
  .faq-scroll {
    max-height: 100%;
    overflow-y: auto;
    padding-right: 16px;
    scrollbar-gutter: stable;
  }
  body.arabicVersion .faq-scroll {
    padding-right: 0;
    padding-left: 16px;
  }
}
.faq-scroll {
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) #f1f1f1;
}

.faq-scroll::-webkit-scrollbar {
  width: 6px;
}

.faq-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 20px;
}

.faq-scroll::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 10px;
}

.overlay-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

.testimonial-card {
  border-radius: 1rem;
  overflow: hidden;
  background-color: #fff;
  flex-direction: row;
}

.testimonial-card .profile-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-text {
  line-height: 1.5;
  color: var(--color-text-dark-alt);
}

.testimonial-name {
  font-weight: 600;
  margin-right: 0.5rem;
}

.bg-gray-50 {
  background-color: rgba(255, 255, 255, 0.1490196078);
}

.timeline-container {
  position: relative;
}

.timeline-bar {
  height: 4px;
  background-color: #76350F;
  border-radius: 0px;
  position: relative;
  top: 18px;
}

.timeline-point {
  width: 22px;
  height: 22px;
  background-color: #76350F;
  border: 6px solid white;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-label {
  background-color: var(--primary-color-two);
  padding: 4px 20px;
  border-radius: 50px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  z-index: 3;
  font-weight: 600;
}

.top .timeline-label {
  top: -35px;
}

.bottom .timeline-label {
  top: 33px;
}

.bottom .timeline-label::after {
  content: "";
}

.mission-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
}

.mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-title {
  font-weight: 600;
  margin-bottom: 20px;
}

.mission-text {
  color: #6D6D6D;
  line-height: 1.8;
}

.rounded-l-t-r-b {
  border-radius: 50px 0 50px 0;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2509803922));
}

.rounded-r-t-l-b {
  border-radius: 0 50px 0 50px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2509803922));
}

.download-sec .row {
  min-height: 600px;
  position: relative;
  z-index: 4;
  display: flex;
}

.download-sec {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 600px;
  padding: 0;
}

.download-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 0;
}

.download-sec::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.download-sec {
  border-radius: 0;
}

.download-sec::before,
.download-sec::after {
  border-radius: 0;
}

@media (min-width: 992px) {
  .text-lg-start {
    text-align: left !important;
  }
}
@media (min-width: 992px) {
  body.arabicVersion .text-lg-start {
    text-align: right !important;
  }
}
.download-sec .row {
  position: relative;
  z-index: 4;
}

.download-sec h2 {
  font-size: 38px;
}

.download-sec .col-md-6 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.bg-card-img-contact {
  background-image: url("../images/contact.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 12px;
}
.bg-card-img-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5019607843);
  z-index: 1;
  border-radius: 12px;
}
.bg-card-img-contact .card-body {
  position: relative;
  z-index: 3;
}

.bottom-51 {
  bottom: -51px !important;
}

.steps-line {
  position: relative;
  cursor: pointer;
}

.steps-line::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  width: 100%;
  border-top: 2px dashed #B1B2B2;
  z-index: 0;
}

.step {
  position: relative;
  text-align: right;
  z-index: 1;
}

.circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ccc;
  position: absolute;
  top: 3px;
  right: 0;
  transition: 0.3s;
  border: 0;
  box-shadow: none;
}

/* hover */
.step:hover .circle {
  background: var(--color-primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--color-primary);
}

.step.is-active .circle {
  background: var(--color-primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--color-primary);
}

.step:hover .title,
.step.is-active .title {
  color: var(--color-primary);
}

.title {
  font-weight: 700;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .steps-line {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .steps-line::before {
    display: none;
  }
  .step {
    padding-right: 30px;
  }
  .step::before {
    content: "";
    position: absolute;
    right: 7px;
    top: 0;
    bottom: -40px;
    border-right: 2px dashed #B1B2B2;
    z-index: 0;
  }
  .step:last-child::before {
    display: none;
  }
  .circle {
    right: 0;
    top: 0;
  }
}
.accordion-scroll::-webkit-scrollbar-thumb {
  background: #A97456;
  border-radius: 10px;
}

.icon-coffee {
  right: 0px;
  top: 0px;
  transform: translateY(-48px);
}
body.arabicVersion .icon-coffee {
  left: 0px;
  right: unset;
}

.contact-second-col > div:first-child {
  position: relative;
  height: 700px;
}
.contact-second-col .card-notch {
  clip-path: url(#topLeftNotch);
  overflow: hidden;
  position: relative;
}
body.arabicVersion .contact-second-col .card-notch {
  clip-path: url(#topRightNotch);
}
.contact-second-col .contact-badge {
  position: absolute;
  top: 22px;
  left: 18px;
  font-size: calc(1rem + 0.9vw);
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 2;
  pointer-events: none;
}
body.arabicVersion .contact-second-col .contact-badge {
  left: unset;
  right: 55px;
}

.faq-section {
  background: var(--color-bg-light-extra);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-item {
  background: #EEDBD2;
  padding: 15px 20px;
  border-radius: 10px 120px 10px 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-weight: 500;
  flex: 0 0 50%;
}
body.arabicVersion .faq-item {
  border-radius: 120px 10px 10px 10px;
}

.faq-item:hover {
  background: #e0c6ba;
}

.faq-item.active {
  background: linear-gradient(90deg, #C78A6D, #FFE7D4, #C78A6D, #F1B99E);
  color: var(--color-secondary);
  font-weight: 600;
}

.arrow {
  font-size: 18px;
  -webkit-text-stroke: 0.6px;
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(90deg);
}

.faq-answer {
  flex: 1;
  background: #fff;
  padding: 20px 20px;
  border-radius: 0px 20px 20px 20px;
  font-size: 15px;
  color: var(--color-text-dark);
  border: 2px solid #EEDBD2;
  font-weight: 500;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
body.arabicVersion .faq-answer {
  border-radius: 20px 0px 20px 20px;
}

.faq-answer.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

@media (max-width: 768px) {
  .faq-row {
    flex-direction: column;
    align-items: stretch;
  }
  .faq-item {
    flex: 1 1 100%;
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    border-radius: 0px 20px 20px 20px;
    transform: none;
    opacity: 1;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  .faq-answer.active {
    max-height: 200px;
    padding: 15px 20px;
    transform: none;
  }
}
@keyframes wordDrop {
  0% {
    opacity: 0;
    transform: translateY(-28px) rotateX(90deg);
  }
  60% {
    transform: translateY(4px) rotateX(-6deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}
@keyframes subtitleIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shimmerBg {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.hero-sec .word-span {
  display: inline-block;
  opacity: 0;
  animation: wordDrop 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-sec .text-primary-wrap {
  color: var(--color-primary);
  animation: wordDrop 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards, shimmerBg 4s ease infinite;
}
.hero-sec #sub {
  opacity: 0;
}

.logos-slider img {
  max-height: 60px;
  margin: auto;
  transition: 0.3s;
  opacity: 1;
}

.logos-slider img:hover {
  opacity: 0.7;
}

.logos-slider .slick-slide {
  padding: 0 22px;
}

.logos-slider {
  margin: 0 -10px;
}

.img-about {
  border-radius: 300px 10px 10px 10px;
}
body.arabicVersion .img-about {
  border-radius: 10px 300px 10px 10px;
}

.cards-sec .col-lg-4 .card {
  border-radius: 10px;
}
.cards-sec .col-lg-4:nth-child(3n+1) .card {
  border-radius: 200px 10px 10px 10px;
}
body.arabicVersion .cards-sec .col-lg-4:nth-child(3n+1) .card {
  border-radius: 10px 200px 10px 10px;
}
.cards-sec .col-lg-4:nth-child(3n+2) .card {
  border-radius: 10px;
}
.cards-sec .col-lg-4:nth-child(3n+3) .card {
  border-radius: 10px 200px 10px 10px;
}
body.arabicVersion .cards-sec .col-lg-4:nth-child(3n+3) .card {
  border-radius: 200px 10px 10px 10px;
}

.title-underline-center {
  position: relative;
  display: inline-block;
}

.title-underline-center::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}

.step-card.step-1 {
  border-radius: 140px 20px 20px 20px;
}
.step-card.step-2 {
  border-radius: 20px 140px 20px 20px;
}
.step-card.step-3 {
  border-radius: 20px 20px 20px 140px;
}
.step-card.step-4 {
  border-radius: 20px 20px 140px 20px;
}
body.arabicVersion .step-card.step-1 {
  border-radius: 20px 140px 20px 20px;
}
body.arabicVersion .step-card.step-2 {
  border-radius: 140px 20px 20px 20px;
}
body.arabicVersion .step-card.step-3 {
  border-radius: 20px 20px 140px 20px;
}
body.arabicVersion .step-card.step-4 {
  border-radius: 20px 20px 20px 140px;
}

/* ============================================================
       SASS-style variables compiled to CSS custom properties
    ============================================================ */
:root {
  --clr-bg: #f5f2ee;
  --clr-card-dark: rgba(30, 22, 18, 0.72);
  --clr-accent: #c2856a;
  --clr-accent-2: #d4a088;
  --clr-text: #ffffff;
  --clr-num: rgba(194, 133, 106, 0.55);
  --radius-card: 28px;
  --radius-card-lg: 48px;
  --transition: 0.45s cubic-bezier(.23,1,.32,1);
}

/* ============================================================
   Base
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ============================================================
   Section heading (optional, hidden in screenshot but added)
============================================================ */
.hiw-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 8px;
}

.hiw-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #1e1612;
  line-height: 1.15;
  margin-bottom: 48px;
}

/* ============================================================
   Grid layout
============================================================ */
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 767.98px) {
  .hiw-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   Card base
============================================================ */
.hiw-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  cursor: default;
  transition: transform var(--transition), box-shadow var(--transition);
}

/* Border-radius — exact values from SCSS */
.hiw-card.step-1 {
  border-radius: 140px 20px 20px 20px;
}

.hiw-card.step-2 {
  border-radius: 20px 140px 20px 20px;
}

.hiw-card.step-3 {
  border-radius: 20px 20px 20px 140px;
}

.hiw-card.step-4 {
  border-radius: 20px 20px 140px 20px;
}

.hiw-card {
  transition: all 0.4s ease-in-out;
}

.hiw-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 35px 80px rgba(30, 22, 18, 0.18);
}

/* Background image */
.hiw-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hiw-card:hover .hiw-card__bg {
  transform: scale(1.06);
}

/* Dark overlay */
.hiw-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 10, 0.52);
  transition: background var(--transition);
}

.hiw-card:hover .hiw-card__overlay {
  background: rgba(20, 14, 10, 0.62);
}

/* ============================================================
   Number watermark — position differs per card
============================================================ */
.hiw-card__num {
  position: absolute;
  font-family: "Cairo", sans-serif !important;
  font-size: clamp(7rem, 15vw, 250px);
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(to bottom, #C78A6D, rgba(139, 86, 61, 0.0392156863));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  user-select: none;
  pointer-events: none;
  transition: color var(--transition), transform var(--transition);
}

.hiw-card:hover .hiw-card__num {
  color: rgba(194, 133, 106, 0.68);
}

/* 01 — number bottom-left (mirrors card 04) */
.hiw-card.step-1 .hiw-card__num {
  bottom: -18px;
  left: 20px;
}

/* 02 — number bottom-right */
.hiw-card.step-2 .hiw-card__num {
  bottom: -18px;
  right: 16px;
}

/* 03 — number bottom-right */
.hiw-card.step-3 .hiw-card__num {
  bottom: -18px;
  right: 16px;
}

/* 04 — number bottom-left */
.hiw-card.step-4 .hiw-card__num {
  bottom: -18px;
  left: 20px;
}

body.arabicVersion .hiw-card.step-1 .hiw-card__num,
body.arabicVersion .hiw-card.step-4 .hiw-card__num {
  bottom: -18px;
  right: 20px;
  left: auto;
}

body.arabicVersion .hiw-card.step-2 .hiw-card__num,
body.arabicVersion .hiw-card.step-3 .hiw-card__num {
  bottom: -18px;
  left: 16px;
  right: auto;
}

/* ============================================================
   Text body — position differs per card
============================================================ */
.hiw-card__body {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

/* 01 — text top-right (mirrors card 04) */
.hiw-card.step-1 .hiw-card__body {
  top: 28px;
  right: 32px;
  left: auto;
}

/* 02 — text top-left */
.hiw-card.step-2 .hiw-card__body {
  top: 28px;
  left: 32px;
  right: auto;
}

/* 03 — text top-left */
.hiw-card.step-3 .hiw-card__body {
  top: 28px;
  left: 32px;
  right: auto;
}

/* 04 — text top-right */
.hiw-card.step-4 .hiw-card__body {
  top: 28px;
  right: 32px;
  left: auto;
}

body.arabicVersion .hiw-card.step-1 .hiw-card__body,
body.arabicVersion .hiw-card.step-4 .hiw-card__body {
  top: 28px;
  left: 32px;
  right: auto;
}

body.arabicVersion .hiw-card.step-2 .hiw-card__body,
body.arabicVersion .hiw-card.step-3 .hiw-card__body {
  top: 28px;
  right: 32px;
  left: auto;
}

.hiw-card__title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.2;
  margin-bottom: 10px;
}

.hiw-card__desc {
  font-size: clamp(16px, 1.2vw, 22px);
  font-weight: 500;
  color: white;
  line-height: 1.65;
  max-width: 260px;
}

/* ============================================================
   Responsive tweaks
============================================================ */
@media (max-width: 991.98px) {
  .hiw-card {
    min-height: 270px;
  }
}
@media (max-width: 575.98px) {
  .hiw-card {
    min-height: 240px;
  }
  .hiw-card__body {
    padding: 24px 22px;
  }
  .hiw-card__num {
    /* font-size: 5.5rem; */
  }
}
/* =========================
   HERO BASE
========================= */
.hero-sec {
  position: relative;
  overflow: hidden;
}

/* =========================
   IMAGE (desktop only)
========================= */
.hero-image {
  display: block;
}

/* =========================
   OVERLAY (mobile background mode)
========================= */
.hero-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

/* content above overlay */
.hero-sec .row {
  position: relative;
  z-index: 2;
}

.card-notch {
  clip-path: url(#blNotch);
  overflow: hidden;
}
body.arabicVersion .card-notch {
  clip-path: url(#brNotch);
}

.hero-image-col {
  padding: 0;
  min-height: 500px;
}

.number-section.card {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  margin-top: 90px !important;
  padding: 1.5rem 0rem;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.number-section.card {
  width: 100%;
}

/* lg and up */
@media (min-width: 992px) {
  .number-section.card {
    width: 140%;
  }
}
@media (max-width: 767px) {
  .number-section.card {
    width: 100%;
  }
  /* .hero-image-col {
    min-height: 320px;
    margin-top: 2rem;
  } */
}
/* =========================
   MOBILE MODE
========================= */
@media (max-width: 992px) {
  /* hide right image */
  .hero-image {
    display: none;
  }
  .hero-sec {
    background: url("../images/hero.png") center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
  }
  /* dark overlay */
  .hero-sec::before {
    background: rgba(0, 0, 0, 0.5);
  }
  /* center text */
  .hero-content {
    text-align: center;
    align-items: center;
  }
  .hero-content .text-secondary {
    color: white !important;
  }
  .hero-content h5 {
    color: rgba(255, 255, 255, 0.8) !important;
  }
  .hero-sec .d-flex {
    justify-content: center;
  }
  /* numbers smaller */
  .number-item span.purecounter,
  .number-item span.text-primary {
    font-size: 20px !important;
  }
  .number-item p {
    font-size: 10px !important;
  }
}
.bg-card-primary {
  background-color: rgba(3, 142, 161, 0.6980392157);
}

.why-choose-us {
  padding: 100px 0 140px;
  position: relative;
  overflow: hidden;
  /* =========================
      SECTION CONTENT
  ========================= */
  /* =========================
      TIMELINE WRAPPER
  ========================= */
  /* =========================
      SVG LINE
  ========================= */
  /* =========================
      TIMELINE ITEM
  ========================= */
  /* =========================
      DESKTOP POSITIONS
  ========================= */
  /* =========================
      TABLET
  ========================= */
  /* =========================
      MOBILE
  ========================= */
}
.why-choose-us .container {
  position: relative;
  z-index: 2;
}
.why-choose-us .section-content {
  position: relative;
  z-index: 5;
}
body.arabicVersion .why-choose-us .section-content .section-header {
  text-align: right;
}
body.arabicVersion .why-choose-us .section-content .section-header svg {
  transform: scaleX(-1);
}
.why-choose-us .section-content .section-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.why-choose-us .section-content .section-badge .plus-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #038ea1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.why-choose-us .section-content .section-badge h2 {
  font-size: 56px;
  font-weight: 700;
  color: #222;
  margin: 0;
  line-height: 1.1;
}
.why-choose-us .section-content p {
  font-size: 20px;
  line-height: 1.8;
  color: #6f6f6f;
  margin: 0;
  font-weight: 400;
}
body.arabicVersion .why-choose-us .section-content p {
  text-align: right;
}
.why-choose-us .timeline-wrapper {
  position: relative;
  margin-top: 90px;
  min-height: 360px;
}
.why-choose-us .timeline-line {
  position: absolute;
  left: 0;
  top: -260px;
  width: 90%;
  z-index: 1;
}
.why-choose-us .timeline-line svg {
  width: 100%;
  height: auto;
  display: block;
}
body.arabicVersion .why-choose-us .timeline-line {
  left: unset;
  right: 0;
  transform: scaleX(-1);
  transform-origin: center;
}
.why-choose-us .timeline-item {
  position: absolute;
  z-index: 5;
}
body.arabicVersion .why-choose-us .timeline-item {
  text-align: right;
}
.why-choose-us .timeline-item .timeline-content {
  position: relative;
  z-index: 5;
  margin-top: 10px;
}
.why-choose-us .timeline-item .bg-number {
  position: absolute;
  font-size: 204px;
  font-weight: 700;
  color: rgba(2, 114, 129, 0.05);
  font-family: "Poppins", sans-serif;
  z-index: -1;
  line-height: 1;
  user-select: none;
}
.why-choose-us .timeline-item .dot-why {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(55, 52, 169, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
body.arabicVersion .why-choose-us .timeline-item .dot-why {
  margin-left: auto;
  margin-right: 0;
}
.why-choose-us .timeline-item .dot-why::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #bfe7ee;
}
.why-choose-us .timeline-item p {
  line-height: 1.7;
  margin: 0;
  max-width: 360px;
}
body.arabicVersion .why-choose-us .timeline-item p {
  margin-left: auto;
}
.why-choose-us .item-1 {
  left: 15%;
  top: 137px;
}
.why-choose-us .item-1 .bg-number {
  right: 50px;
  top: -40px;
}
body.arabicVersion .why-choose-us .item-1 {
  left: unset;
  right: 15%;
}
body.arabicVersion .why-choose-us .item-1 .bg-number {
  right: unset;
  left: 50px;
}
.why-choose-us .item-2 {
  left: 63%;
  top: -19px;
  transform: translateX(-50%);
}
.why-choose-us .item-2 .bg-number {
  right: 11px;
  top: -25px;
}
body.arabicVersion .why-choose-us .item-2 {
  left: unset;
  right: 63%;
  transform: translateX(50%);
}
body.arabicVersion .why-choose-us .item-2 .bg-number {
  right: unset;
  left: 11px;
}
.why-choose-us .item-3 {
  right: -62px;
  top: -275px;
}
.why-choose-us .item-3 .bg-number {
  right: 20px;
  top: -80px;
}
body.arabicVersion .why-choose-us .item-3 {
  right: unset;
  left: -62px;
}
body.arabicVersion .why-choose-us .item-3 .bg-number {
  right: unset;
  left: 20px;
}
@media (max-width: 1400px) {
  .why-choose-us {
    padding: 80px 0;
  }
  .why-choose-us .timeline-wrapper {
    min-height: auto;
  }
  .why-choose-us .timeline-line {
    display: none;
  }
  .why-choose-us .timeline-item {
    position: relative !important;
    inset: unset !important;
    transform: none !important;
    margin-bottom: 70px;
    width: 100%;
  }
  .why-choose-us .timeline-item .timeline-content {
    margin-top: 15px;
  }
  .why-choose-us .timeline-item .bg-number {
    font-size: 120px;
    top: -20px;
    right: 0 !important;
  }
  body.arabicVersion .why-choose-us .timeline-item .bg-number {
    left: 0 !important;
    right: unset !important;
  }
  .why-choose-us .timeline-item p {
    max-width: 100%;
    font-size: 17px;
  }
}
@media (max-width: 575px) {
  .why-choose-us {
    padding: 70px 0;
  }
  .why-choose-us .section-content h2 {
    font-size: 32px;
  }
  .why-choose-us .section-content p {
    font-size: 16px;
  }
  .why-choose-us .dot-why {
    width: 52px;
    height: 52px;
  }
  .why-choose-us .dot-why::before {
    width: 18px;
    height: 18px;
  }
  .why-choose-us .timeline-item {
    margin-bottom: 60px;
  }
  .why-choose-us .timeline-item .bg-number {
    font-size: 90px;
  }
  .why-choose-us .timeline-item h5 {
    font-size: 20px;
  }
  .why-choose-us .timeline-item p {
    font-size: 16px;
  }
}

/* ─── BASE CARD ─── */
.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-primary);
  color: #fff;
  min-height: 270px;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover + Auto Active */
.service-card:hover,
.service-card.active-hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* ─── BG IMAGE ─── */
.card-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

/* Overlay */
.card-bg-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 110, 120, 0.2) 0%, rgba(0, 90, 100, 0.42) 100%);
}

/* Show image on hover OR JS active */
.service-card:hover .card-bg-img,
.service-card.active-hover .card-bg-img {
  opacity: 1;
}

/* ─── DECORATIVE ICON ─── */
.card-deco-icon {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 110px;
  color: rgba(255, 255, 255, 0.12);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* Hide decorative icon */
.service-card:hover .card-deco-icon,
.service-card.active-hover .card-deco-icon {
  opacity: 0;
}

/* ─── CONTENT ─── */
.card-content {
  position: relative;
  z-index: 2;
  padding: 28px 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ─── ICON BUBBLE ─── */
.icon-bubble {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
  flex-shrink: 0;
}

.icon-bubble i {
  font-size: 22px;
  color: #fff;
  transition: color 0.35s ease;
}

/* White bubble + teal icon */
.service-card:hover .icon-bubble,
.service-card.active-hover .icon-bubble {
  background: #fff;
}

.service-card:hover .icon-bubble i,
.service-card.active-hover .icon-bubble i {
  color: #0a9fa5;
}

/* ─── TEXT ─── */
.card-title {
  font-weight: 600;
  margin: 0;
}

.card-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.about-sec {
  position: relative;
  overflow: hidden;
  background: transparent !important;
}
.about-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/about-sec.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.about-sec > * {
  position: relative;
  z-index: 2;
}

/* Arabic */
body.arabicVersion .about-sec::before {
  transform: scaleX(-1);
}

body.arabicVersion .faq-sec::before {
  transform: scaleX(-1);
}

.faq-sec {
  position: relative;
  overflow: hidden;
}
.faq-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/faq-sec.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.faq-sec > * {
  position: relative;
  z-index: 2;
}

body.arabicVersion .faq-sec::before {
  transform: scaleX(-1);
}

.loader-bg {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: var(--body-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-bg.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.letters-row {
  display: flex;
  align-items: flex-end;
  height: 90px;
}

.letter {
  font-size: 72px;
  font-weight: 600;
  color: var(--color-primary);
  opacity: 0;
  transform: translateY(40px);
}

.solution-row {
  margin-top: 10px;
  display: flex;
  gap: 6px;
}

.sol-letter {
  font-size: 12px;
  color: var(--color-secondary);
  font-weight: 500;
  opacity: 0;
  transform: translateY(14px);
  letter-spacing: 4px;
}

.accent-line {
  width: 0;
  height: 1px;
  background: var(--color-primary);
  margin-top: 14px;
}

.replay-btn {
  margin-top: 30px;
  padding: 6px 16px;
  font-size: 11px;
  border: 1px solid #aaa;
  background: transparent;
  color: #aaa;
  border-radius: 8px;
  opacity: 0;
  cursor: pointer;
}

.replay-btn.visible {
  opacity: 1;
}

@media (max-width: 576px) {
  .btn-sm-resp {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
  }
}
.hero {
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(220, 100, 100, 0.22) 0%, rgba(200, 60, 60, 0.1) 35%, rgba(255, 255, 255, 0) 70%);
}

.stats-section {
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-number {
  font-size: 3.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
}

.divider {
  width: 1px;
  height: 70px;
  background: rgba(255, 255, 255, 0.25);
  align-self: center;
}

/* Tablet */
@media (max-width: 991.98px) {
  .stats-section {
    padding: 40px 20px;
  }
  .stat-number {
    font-size: 3rem;
  }
}
/* Mobile */
@media (max-width: 767.98px) {
  .stats-section {
    padding: 30px 15px;
  }
  .stats-section .d-flex {
    justify-content: center !important;
    gap: 2rem 1rem !important;
  }
  .stat-item {
    width: calc(50% - 0.5rem);
    align-items: center;
    text-align: center;
  }
  .stat-number {
    font-size: 2.2rem;
  }
  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }
}
.border-bottom-primary {
  border: 0;
  border-bottom: 3px solid var(--color-primary);
}

.services-sec .custom-img {
  height: 280px;
  object-fit: cover;
}
.services-sec .card {
  border-radius: 20px;
  overflow: hidden;
}
.services-sec .card-title {
  font-weight: 600;
}
.services-sec .card-text {
  color: #6c757d;
}
.services-sec .card-body {
  padding: 1.5rem;
}
.services-sec .arrow-icon {
  margin-left: 15px;
}
.services-sec .custom-img {
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.services-sec .card {
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.services-sec .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12) !important;
}
.services-sec .card:hover .custom-img {
  transform: scale(1.08);
}
.services-sec .arrow-icon svg {
  transition: transform 0.3s ease;
}
.services-sec .card:hover .arrow-icon svg {
  transform: translate(5px, -5px);
}

/*================ Navbar ================*/
.navbar {
  background: #edf3ff;
}

.menu-btn,
.circle-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.menu-btn i {
  color: #0d6efd;
  font-size: 22px;
}

.search-form {
  width: 40%;
}

.form-control {
  border: none;
  border-radius: 30px;
}

.form-control:focus {
  box-shadow: none;
}

.search-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
}

/*================ Sidebar ================*/
.offcanvas {
  width: 370px;
}

.restaurant-logo {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #0d6efd;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.sidebar-link {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  text-decoration: none;
  color: #555;
  border-radius: 10px;
  margin-bottom: 6px;
  transition: 0.3s;
}

.sidebar-link:hover {
  background: #edf3ff;
  color: #0d6efd;
}

.sidebar-link.active {
  background: #edf3ff;
  color: #0d6efd;
  font-weight: 600;
}

.sidebar-link i:first-child {
  width: 22px;
}

/*================ Responsive ================*/
@media (max-width: 991.98px) {
  .navbar-brand {
    font-size: 28px;
  }
  .navbar-actions {
    gap: 0.5rem !important;
  }
}
:root {
  --primary: #2f6bff;
  --primary-dark: #1f4fd6;
  --text-muted: #8a8f9a;
}

/* ================= NAVBAR ================= */
.main-navbar {
  padding: 14px 0;
}

.btn-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.btn-icon-circle i {
  font-size: 1.15rem;
  color: var(--color-primary);
}

.btn-icon-circle svg path {
  font-size: 1.15rem;
  stroke: var(--color-primary);
}

.navbar-brand.logo-text {
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--primary);
  letter-spacing: 1px;
}

.search-wrapper {
  max-width: 600px;
  display: flex;
  align-items: center;
}

.search-input {
  border-radius: 50px 0 0 50px;
  border: none;
  padding: 0.65rem 1.25rem;
  background: #fff;
}

.search-input:focus {
  box-shadow: none;
  outline: none;
}

.btn-search {
  border-radius: 0 50px 50px 0;
  background: white;
  color: #fff;
  border: none;
  padding: 0.65rem 1.15rem;
}

.btn-search:hover {
  background: white;
  color: #fff;
}

.lang-toggle i {
  color: #333;
}

@media (max-width: 767.98px) {
  .search-wrapper {
    display: none !important;
  }
}
/* ================= OFFCANVAS / SIDE MENU ================= */
#sideMenu {
  width: 320px;
  background: linear-gradient(to bottom, #9D3D3D, #371515);
}
#sideMenu .offcanvas-body {
  background: linear-gradient(to bottom, #9D3D3D, #371515);
  color: var(--color-secondary) !important;
}

.offcanvas-header-custom {
  display: flex;
  justify-content: flex-end;
  padding: 10px 14px 0;
}

.btn-collapse-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 20px 18px;
}

.profile-icon {
  width: 75px;
  height: 75px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.profile-icon .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.profile-icon .dot.d1 {
  background: var(--primary);
  margin-inline-end: -8px;
}

.profile-icon .dot.d2 {
  background: var(--primary-dark);
}

.menu-profile h6 {
  margin: 0;
  font-weight: 700;
  color: white;
  font-size: 1rem;
}

.menu-profile small {
  color: white;
}

.menu-list {
  padding: 6px 0;
}

.menu-list {
  padding: 8px 12px;
}

.menu-item {
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 16px;
  margin-bottom: 4px;
  cursor: pointer;
  font-weight: 500;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
}

.menu-item .item-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  flex: 1;
}

.menu-item svg {
  color: inherit;
}

.menu-item svg path,
.menu-item svg circle {
  stroke: currentColor;
}

.menu-item i.chevron {
  color: inherit;
  font-size: 0.85rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.menu-item:hover,
.menu-item.active {
  background: #eef1fd;
  color: var(--color-primary);
  border-radius: 50px;
}

.menu-item[aria-expanded=true] i.chevron {
  transform: rotate(180deg);
}

.sub-menu {
  padding-left: 16px;
  margin: 4px 0 8px 0;
}

.sub-menu-item {
  display: flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
}

.branch-list {
  list-style: none;
  margin: 0;
  padding: 4px 20px 10px 52px;
}

.branch-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #222;
  font-size: 0.95rem;
}

.branch-list li a:hover {
  color: var(---color-primary);
}

.branch-list .selected-tag {
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
}

.menu-footer {
  margin-top: auto;
  text-align: center;
  padding: 18px 0 22px;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
}

.menu-footer img {
  display: block;
}

.offcanvas-body {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.search-wrapper {
  max-width: 500px;
}

.search-input {
  height: 50px;
  border-radius: 5px 0 0 5px;
  border-right: none;
  box-shadow: none;
}

.btn-search {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid white;
  border-radius: 50%;
  background: white;
  flex-shrink: 0;
}

.btn-search svg {
  width: 24px;
  height: 24px;
}

.btn-search svg path {
  stroke: #9D3D3D;
}

.search-input:focus {
  box-shadow: none;
  border-color: #ced4da;
}

.btn-search:focus {
  box-shadow: none;
}

@media (max-width: 767.98px) {
  .main-navbar .d-flex.align-items-center {
    position: relative;
  }
  .logo-mobile {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
  .search-wrapper {
    display: none !important;
  }
  .btn-icon-circle {
    position: relative;
    z-index: 2;
  }
}
.auth-tabs {
  display: flex;
  border: 1px solid var(--wave-color);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.auth-tabs button {
  flex: 1;
  border: none;
  background: #fff;
  color: var(--wave-color);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 0;
  transition: 0.2s;
}

.auth-tabs button.active {
  background: var(--color-primary) !important;
  color: #fff;
}

.auth-tabs .nav-item {
  flex: 1;
}

.auth-tabs .nav-link {
  width: 100%;
  border-radius: 0;
  margin: 0;
}

.card-body-bg {
  background-color: rgba(233, 241, 254, 0.5019607843);
}

.cart-item-card .item-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
}

.cart-item-card .item-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-secondary);
}

.cart-item-card .item-size {
  color: #9aa3b2;
  font-size: 1rem;
}

.cart-item-card .item-price {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
}

.cart-item-card .item-qty {
  color: var(--color-secondary);
  font-weight: 600;
}

.payment-card {
  top: 20px;
}

.hero-slide-col,
.offer-cards-col-wrap {
  display: flex;
}

.hero-slide {
  position: relative;
  width: 100%;
  min-height: 560px;
}
.hero-slide .btn-primary {
  font-weight: 600;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
}

.hero-content h1 {
  line-height: 1.2;
}

.hero-content p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.85) !important;
}

/*==================
 Offer Cards
==================*/
.offer-cards-col {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1.5rem;
}

.offer-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}

.offer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}

.offer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s;
}

.offer-overlay .btn {
  transform: translateY(20px);
  transition: 0.4s;
  padding: 14px 60px;
  border-radius: 14px;
}

.offer-card:hover img {
  transform: scale(1.08);
}

.offer-card:hover .offer-overlay {
  opacity: 1;
}

.offer-card:hover .btn {
  transform: translateY(0);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}
/*==================
 Tablet
==================*/
@media (max-width: 991px) {
  .hero-slide {
    min-height: 300px;
    text-align: center;
  }
  .hero-content {
    padding: 60px 30px 20px;
  }
  .hero-content p {
    margin-inline: auto;
  }
  .hero-image {
    height: auto;
    padding-bottom: 40px;
  }
  .hero-image img {
    width: 90%;
    margin-right: 0;
  }
}
/*==================
 Mobile
==================*/
@media (max-width: 767px) {
  .hero-slide {
    border-radius: 20px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 16px !important;
  }
  .hero-content .btn {
    width: 100%;
  }
  .hero-image img {
    width: 100%;
  }
}
/*--- Category Tabs --- */
.category-tabs {
  flex-wrap: nowrap;
  overflow-x: auto;
  margin-bottom: 22px;
  scrollbar-width: thin;
}

.category-tabs::-webkit-scrollbar {
  height: 4px;
}

.category-tabs::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}

.category-tabs .nav-link {
  white-space: nowrap;
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 500;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  padding: 0 0 5px;
  margin-inline-end: 36px;
  background: none;
  transition: color 0.2s ease;
}

.category-tabs .nav-item:last-child .nav-link {
  margin-inline-end: 0;
}

.category-tabs .nav-link .count {
  color: #9aa0a8;
  font-weight: 400;
  font-size: 0.95rem;
}

.category-tabs .nav-link:hover {
  color: var(--text-dark);
  border-color: transparent;
}

.category-tabs .nav-link.active {
  color: var(--text-dark);
  font-weight: 700;
  background: none;
  border-color: var(--primary);
}

.category-tabs .nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  background: transparent;
}

.category-tabs .nav-link img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}

.category-tabs .nav-link span {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.category-tabs .nav-link.active {
  background: transparent;
}

.category-tabs .nav-link.active span {
  color: var(--color-primary);
}

.empty-category {
  color: var(--text-muted);
  padding: 60px 0;
  text-align: center;
  font-size: 1.05rem;
}

/* ============================================
   Product Card 
============================================ */
.product-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: none;
  border-radius: 24px;
  aspect-ratio: 3/3.7;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.product-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.product-card-badge {
  position: absolute;
  top: 20px;
  inset-inline-end: 20px;
  background: var(--color-primary, #8b2635);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 5px 25px;
  border-radius: 30px;
  z-index: 2;
}

.product-card-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 22px 22px 20px;
}

.product-card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 10px;
}

.product-card-desc {
  color: #595959;
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card-price {
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.product-card-cart-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--color-primary, #8b2635);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-card-cart-btn:hover {
  opacity: 0.9;
}

/* ============================================
   Offcanvas shell
============================================ */
.product-offcanvas {
  --gallery-w: 140px;
  --info-w: 420px;
  --bs-offcanvas-width: min(1200px, 96vw);
  width: var(--bs-offcanvas-width);
  border: none;
}

.product-offcanvas .offcanvas-close {
  position: absolute;
  top: 24px;
  inset-inline-end: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e2e2e2;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  z-index: 5;
}

.product-detail-wrapper {
  display: grid;
  grid-template-columns: var(--gallery-w) 1fr var(--info-w);
  grid-template-areas: "thumbs main info" "accordion accordion info";
  gap: 0 32px;
}

/* ---- Thumbnails column ---- */
.gallery-col {
  grid-area: thumbs;
  padding: 30px 0 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.gallery-arrow {
  border: none;
  background: none;
  color: #888;
  padding: 4px;
}

.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 360px;
  overflow-y: auto;
  scrollbar-width: thin;
  padding: 2px;
}

.gallery-thumbs::-webkit-scrollbar {
  width: 4px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}

.gallery-thumb {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb.active {
  border-color: var(--color-primary, #8b2635);
}

/* ---- Main image ---- */
.main-image-col {
  grid-area: main;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image-col img {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px;
}

/* ---- Accordion ---- */
.product-accordion {
  grid-area: accordion;
  padding: 0 0 32px 40px;
}

.accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f7f7;
  border: 1px solid #ececec;
  border-radius: 12px 12px 0 0;
  padding: 16px 20px;
  font-weight: 700;
  color: var(--text-dark, #222);
}

.accordion-toggle .toggle-icon {
  color: var(--color-primary, #8b2635);
  display: flex;
}

.accordion-toggle .icon-minus {
  display: none;
}

.accordion-toggle[aria-expanded=true] .icon-plus,
.accordion-toggle.is-open .icon-plus {
  display: none;
}

.accordion-toggle[aria-expanded=true] .icon-minus,
.accordion-toggle.is-open .icon-minus {
  display: block;
}

.accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
  background: #fafafa;
  border-radius: 0 0 12px 12px !important;
}

.accordion-panel.show {
  max-height: 400px;
}

.accordion-panel-inner {
  padding: 18px 20px;
}

.accordion-panel-inner h6 {
  color: var(--color-primary, #8b2635);
  font-weight: 700;
  margin-bottom: 10px;
}

.accordion-panel-inner p {
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* ---- Info column ---- */
.info-col {
  grid-area: info;
  background: #f5f5f5;
  padding: 56px 40px 32px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  height: 100%;
  min-height: 100%;
}

.product-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark, #222);
  margin-bottom: 18px;
}

.product-desc {
  color: #555;
  line-height: 1.8;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group .form-label {
  font-weight: 600;
  color: var(--text-dark, #222);
  margin-bottom: 8px;
}

.form-group .form-select,
.form-group .form-control {
  border-radius: 10px;
  border: 1px solid #e2e2e2;
  padding: 12px 16px;
}

.form-group .form-control {
  resize: none;
}

/* ---- Footer ---- */
.offcanvas-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #eee;
  margin-top: auto;
  position: sticky;
  bottom: 0;
  background: #f5f5f5;
}

.qty-stepper {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-primary, #8b2635);
  color: #fff;
  border-radius: 10px;
  padding: 10px 18px;
}

.qty-btn {
  border: none;
  background: none;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
}

.qty-value {
  min-width: 16px;
  text-align: center;
  font-weight: 700;
}

.btn-add-cart {
  flex: 1;
  border: none;
  background: var(--color-primary, #8b2635);
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: 14px 24px;
}

.btn-add-cart:hover {
  opacity: 0.92;
}

/* ============================================
   Responsive
============================================ */
@media (max-width: 991.98px) {
  .product-detail-wrapper {
    grid-template-columns: 1fr;
    grid-template-areas: "main" "thumbs" "accordion" "info";
  }
  .gallery-col {
    padding: 0 24px;
    flex-direction: row;
    order: 2;
  }
  .gallery-thumbs {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .gallery-arrow {
    display: none;
  }
  .main-image-col {
    padding: 24px;
    order: 1;
  }
  .product-accordion {
    padding: 24px;
    order: 3;
  }
  .info-col {
    padding: 24px;
    order: 4;
  }
}
.cart-offcanvas {
  --info-w: 420px;
  --bs-offcanvas-width: min(1200px, 96vw);
  width: var(--bs-offcanvas-width);
  border: none;
}

.cart-offcanvas .offcanvas-body {
  height: 100%;
}

.cart-wrapper {
  display: flex;
  align-items: stretch;
  min-height: 100%;
}

/* ---- Left: products ---- */
.cart-main {
  flex: 1;
  min-width: 0;
  padding: 40px 40px 24px;
  overflow-y: auto;
}

.cart-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark, #222);
  margin-bottom: 24px;
}

/* Fulfillment segmented control */
.fulfillment-toggle {
  display: flex;
  list-style: none;
  gap: 0;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 6px;
  margin: 0 0 28px;
}

.fulfillment-btn {
  border: none;
  background: transparent;
  color: #666;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.fulfillment-btn.active {
  background: var(--primary, #8b2635);
  color: #fff;
}

.cart-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  color: var(--text-dark, #222);
  margin-bottom: 16px;
}

.cart-list-head .cart-count {
  color: #999;
  font-weight: 500;
}

.remove-all-link {
  color: #e33b3b;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: underline;
  cursor: pointer;
}

.cart-table-head {
  display: grid;
  grid-template-columns: 1fr 140px 260px;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 14px 18px;
  color: #888;
  font-weight: 600;
  margin-bottom: 8px;
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr 140px 260px;
  align-items: center;
  padding: 20px 18px;
  border-bottom: 1px solid #eee;
}

.cart-row-product {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-row-product img {
  width: 88px;
  height: 88px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-row-title {
  font-weight: 700;
  color: var(--text-dark, #222);
}

.cart-row-variant {
  color: #888;
  font-size: 0.9rem;
  margin: 2px 0;
}

.cart-row-size {
  color: #888;
  font-size: 0.9rem;
}

.cart-row-size b {
  color: var(--text-dark, #222);
  font-weight: 700;
}

.cart-row-price {
  font-weight: 700;
  color: var(--text-dark, #222);
}

.cart-row-qty {
  display: flex;
  align-items: center;
  gap: 20px;
}

.qty-box {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 10px 16px;
}

.qty-box button {
  border: none;
  background: none;
  font-size: 1rem;
  color: var(--text-dark, #222);
  line-height: 1;
}

.qty-box .qty-value {
  font-weight: 700;
  min-width: 16px;
  text-align: center;
}

.cart-row-trash {
  border: none;
  background: none;
  display: flex;
}

/* ---- Right: summary panel — يستخدم .info-col من البروداكت سايدبار ---- */
.cart-summary-col {
  width: var(--info-w);
  flex-shrink: 0;
  padding: 40px 32px 0;
}

.summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.summary-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark, #222);
  margin: 0;
}

.summary-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2e2e2;
  background: #fff;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}

.summary-box {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 24px;
}

.summary-box .summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.summary-box .summary-row:last-child {
  margin-bottom: 0;
}

.summary-row .summary-label {
  color: #888;
  font-weight: 500;
}

.summary-row .summary-value {
  color: var(--text-dark, #222);
  font-weight: 700;
}

.coupon-block .form-label {
  font-weight: 700;
  color: var(--text-dark, #222);
  margin-bottom: 10px;
  display: block;
}

.coupon-box {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 16px;
}

.coupon-input {
  width: 100%;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 12px;
}

.btn-apply {
  width: 100%;
  border: none;
  background: var(--primary, #8b2635);
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: 13px;
}

.btn-apply:hover {
  opacity: 0.92;
}

/* Total + Proceed to Checkout — ثابت تحت */
.cart-footer-total {
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  border-top: none;
  padding: 24px 0 32px;
}

.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark, #222);
}

.cart-footer-total .btn-add-cart {
  width: 100%;
}

/* ============================================
   Responsive
============================================ */
@media (max-width: 991.98px) {
  .product-detail-wrapper {
    grid-template-columns: 1fr;
    grid-template-areas: "main" "thumbs" "accordion" "info";
  }
  .gallery-col {
    padding: 0 24px;
    flex-direction: row;
    order: 2;
  }
  .gallery-thumbs {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .gallery-arrow {
    display: none;
  }
  .main-image-col {
    padding: 24px;
    order: 1;
  }
  .product-accordion {
    padding: 24px;
    order: 3;
  }
  .info-col {
    padding: 24px;
    order: 4;
  }
  .offcanvas-footer {
    padding: 20px 24px;
  }
  .cart-wrapper {
    flex-direction: column;
    min-height: auto;
  }
  .cart-main {
    padding: 16px 24px;
  }
  .cart-summary-col {
    width: 100%;
    padding: 16px 24px 24px;
    height: auto;
    min-height: auto;
    overflow-y: visible;
  }
  .cart-summary-col .offcanvas-footer {
    position: static;
    margin-top: 20px;
  }
  .cart-table-head,
  .cart-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cart-row-qty {
    justify-content: space-between;
  }
  .cart-table-head span:not(:first-child) {
    display: none;
  }
}
/*--- Product Card--- */
.product-card {
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(20, 20, 30, 0.12);
  border-color: transparent;
}

.product-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-img-wrap img {
  transform: scale(1.08);
}

.badge-tag {
  position: absolute;
  top: 0px;
  inset-inline-end: 0;
  padding: 4px 25px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  border-radius: 0 16px 0 16px;
}

.badge-tag.best-seller {
  background: #4AB256;
}

.badge-tag.new {
  background: var(--primary);
}

.product-card-body {
  padding: 18px 18px 20px;
}

.product-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text-dark-soft);
}

.product-card-desc {
  color: var(--color-info);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 42px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.add-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.add-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.08);
}

/*--- Pagination--- */
.menu-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.menu-pagination .page-btn {
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.menu-pagination .page-btn:hover {
  background: #f1f3f9;
}

.menu-pagination .page-btn.active {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
}

.menu-pagination .dots {
  color: var(--text-muted);
}

.menu-pagination .next-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.menu-pagination .next-btn:hover {
  background: #f1f3f9;
}

.offcanvas.product-sidebar {
  width: 460px;
  max-width: 92vw;
  border: none;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.15);
}

.offcanvas.product-sidebar #productForm {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.product-sidebar-img-wrap {
  position: relative;
  flex-shrink: 0;
}

.product-sidebar-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
}

.sidebar-close {
  position: absolute;
  top: 0px;
  inset-inline-end: -1px;
  width: 40px;
  height: 40px;
  border-radius: 0 0 0 15px;
  border: none;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.sidebar-close:hover {
  background: #fff;
  transform: rotate(90deg);
}

.product-sidebar-body {
  padding: 24px 28px 28px;
  overflow-y: auto;
  flex: 1 1 auto;
}

.product-sidebar-title {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--color-text-dark-soft);
}

.product-sidebar-desc {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.product-sidebar-price {
  font-weight: 700;
  font-size: 1.15rem;
}

.sidebar-divider {
  border-top: 1px solid #CCCCCC;
  margin: 18px 0;
}

.sidebar-heading {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.ingredient-pill {
  background-color: #F2F4F5;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: #4b5563;
  text-align: center;
}

.size-btn {
  border: 1px solid #CCCCCC;
  background: #fff;
  color: #999999;
  border-radius: 10px;
  padding: 10px 0;
  width: 100%;
  font-weight: 500;
  transition: all 0.2s ease;
}

.size-btn:hover {
  border-color: var(--color-primary);
}

.size-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  font-weight: 700;
}

.extra-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 2px;
}

.extra-row label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.96rem;
  margin: 0;
}

.extra-row .form-check-input {
  width: 1.15em;
  height: 1.15em;
  cursor: pointer;
  border-radius: 5px;
}

.extra-row .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.extra-row .price {
  color: #222222;
  font-size: 0.92rem;
  font-weight: 600;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.qty-control button {
  width: 42px;
  height: 46px;
  border: none;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.1rem;
  transition: background 0.2s ease;
}

.qty-control button:hover {
  background: var(--primary-dark);
}

.qty-control span {
  width: 40px;
  text-align: center;
  font-weight: 700;
  background-color: var(--color-primary);
  color: white;
}

.add-to-cart-btn {
  flex: 1;
  height: 46px;
  border: none;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  transition: background 0.2s ease;
}

.add-to-cart-btn:hover {
  background: var(--primary-dark);
}

@media (max-width: 991.98px) {
  .offcanvas.product-sidebar {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  .category-tabs .nav-link {
    margin-inline-end: 22px;
  }
  .product-card-desc {
    min-height: auto;
  }
}
.demo-navbar {
  background: #dfe3e8;
  padding: 14px 24px;
}

.btn-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

/* --- offcanvas --- */
/* delivery/pickup toggle */
.fulfillment-toggle {
  display: flex;
  background: #F1F2F4;
  border-radius: 10px;
  padding: 4px;
  margin: 20px 0 28px;
}

.fulfillment-toggle button {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  transition: 0.15s;
}

.fulfillment-toggle button.active {
  background: var(--color-primary);
  color: #fff;
}

.products-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.products-head h6 {
  font-weight: 700;
  margin: 0;
  font-size: 17px;
}

.remove-all-link {
  color: #FF3B30;
  text-decoration: underline;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.cart-item img {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  object-fit: cover;
}

.cart-item .item-info {
  flex: 1;
}

.cart-item .item-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.cart-item .item-size {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.qty-control-two {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-control-two button {
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 6px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-control-two span {
  min-width: 14px;
  text-align: center;
  font-weight: 600;
}

.item-price {
  font-weight: 700;
  color: var(--text-dark);
  align-self: flex-start;
  margin-inline-start: auto;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  color: var(--text-dark);
}

.summary-row.muted {
  color: var(--text-muted);
}

.summary-row.total {
  font-weight: 700;
  font-size: 17px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  margin-top: 6px;
}

.fulfillment-toggle.nav-pills .nav-link.active {
  color: white !important;
  background-color: var(--color-primary) !important;
}

#cartOffcanvas .offcanvas-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#cartOffcanvas .offcanvas-body .tab-content {
  flex: 1;
  overflow-y: auto;
}

.cart-footer {
  margin-top: auto;
  background: #fff;
}

.home-popup .modal-dialog {
  max-width: 700px;
}

.home-popup .logo {
  display: inline-block;
  width: 150px;
  margin-bottom: 20px;
}

.home-popup .logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.home-popup .btn-check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.order-box:has(.order-radio:checked) {
  border: none;
  background: rgba(157, 61, 61, 0.1019607843);
  color: var(--color-secondary);
}
.order-box:has(.order-radio:checked) svg path {
  fill: var(--color-primary);
}

.home-popup .order-box {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 12px 24px;
  border: 2px solid #ddd;
  color: #999999;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

.home-popup .order-radio {
  position: absolute;
  opacity: 0;
}

.home-popup .btn-primary {
  border-radius: 10px;
}

.auth-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1019607843);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid white;
  border-radius: 24px;
}

.auth-card > * {
  position: relative;
  z-index: 1;
}

.auth-card .form-control {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.auth-card .form-control::placeholder {
  color: #fff !important;
}

.auth-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.auth-img {
  position: relative;
  min-height: 480px;
  border-radius: 1rem;
  overflow: hidden;
}
.auth-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(157, 61, 61, 0.3);
  z-index: 1;
}
.auth-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}
.auth-img .auth-img-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.auth-img .auth-img-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  text-align: center;
  row-gap: 10px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.55) 100%);
}
.auth-img .auth-logo {
  width: 120px;
}
.auth-img .auth-title {
  margin-top: 2rem;
  font-size: 2rem;
  font-weight: 600;
}
