@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
html::-webkit-scrollbar {
  width: 8px;
}
html::-webkit-scrollbar-thumb {
  background: var(--color-primary);
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  background-color: var(--color-bg-light);
  font-family: "Montserrat", sans-serif;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

:root {
  /* Primary Colors */
  --color-primary:#C6AB7D;
  --color-primary-hover: #9E8964;
  /* Secondary Colors */
  --color-secondary-hover: linear-gradient(45deg, #003145, #0079AB);
  --color-secondary:#010101;
  /* info Colors  */
  --color-info: #616161;
  --color-info-light: #FEF8CD;
  /* Neutral / Grayscale */
  --color-gray-dark: #3b3c40;
  --color-gray-medium: #454545;
  --color-gray-light: #D2BADE;
  /* Text Colors */
  --color-text-heading: #666666;
  --color-text-dark: #0D0D0D;
  --color-text-dark-alt: #1A1A1A;
  --color-text-dark-soft: #3B3B3B;
  --color-text-muted: #6D6D6D;
  --color-text-footer: #d7d7d7;
  --color-text-light: #797979;
  --color-text-lighter: #999999;
  /* Accent Colors */
  --color-accent: #E3DBF0;
  /* Background Colors */
  --color-bg-card: #F5F5F5;
  --color-bg-light: #FAF8F5;
  --color-bg-light-alt: #FEF2E9;
  --color-bg-light-soft: #F7F7FA;
  --color-bg-light-extra: #F9F9F9;
  /* Dark Backgrounds */
  --color-bg-dark: #181B20;
  --color-bg-dark-alt: #242B33;
  --color-bg-dark-soft: #11111199;
}

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

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

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

.text-primary-hover {
  color: var(--color-primary-hover) !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-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: 0.875rem !important;
}

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

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

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

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

.fs-18 {
  font-size: clamp(1rem, 1.2vw, 1.125rem) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-primary {
  color: white !important;
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  transition: all 0.5s linear !important;
  display: inline-block;
}
.btn-primary:hover {
  color: white !important;
  background-color: var(--color-primary-hover) !important;
  border-color: var(--color-primary) !important;
  transform: translateY(-0.3125rem) !important;
}
.btn-primary:hover i {
  transition: all 0.5s linear !important;
  color: var(--color-primary) !important;
}
.btn-primary:hover svg path,
.btn-primary:hover svg circle {
  stroke: var(--color-primary) !important;
}
.btn-primary.no-hover-transform:hover {
  transform: none !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: 0.375rem;
}
.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(-0.1875rem);
}
.btn-secondary:hover svg {
  transform: translateX(0.25rem);
}
.btn-secondary:hover svg path {
  stroke: white !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: 0.0625rem 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(-0.3125rem) !important;
}

.btn-outline-red {
  color: #FF3B30 !important;
  background-color: transparent !important;
  border: 0.0625rem 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: 0.0625rem 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-primary) !important;
  background-color: white !important;
  border-color: white !important;
  transition: 0.5s linear !important;
}
.btn-white:hover {
  color: white !important;
  background-color: transparent !important;
  border-color: white !important;
}
.btn-white:hover svg path {
  fill: white !important;
}

.btn-outline-white {
  color: white !important;
  background-color: transparent !important;
  border: 0.0625rem 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: 0.0625rem solid #cccccc !important;
  color: black !important;
}

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

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

.form-control-md,
.form-select-md {
  padding: 9.6px 14.4px;
  font-size: 15.2px;
  height: 3rem;
}

input {
  border: 0.0625rem solid #E6E6E6 !important;
}
input:focus {
  border: 0.0625rem solid #E6E6E6 !important;
  box-shadow: none !important;
}

select:focus {
  border: 0.0625rem solid var(--color-primary) !important;
}

.form-select {
  border: 0.0625rem solid #E6E6E6 !important;
}
.form-select:focus {
  border: 0.0625rem solid #E6E6E6 !important;
  box-shadow: none !important;
}

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

textarea {
  border: 0.0625rem solid #E6E6E6 !important;
  resize: none !important;
}
textarea:focus {
  border: 0.0625rem solid #E6E6E6 !important;
  box-shadow: none !important;
}

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

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

body:not(.arabicVersion) .iti__arrow {
  margin-right: 0.3125rem;
  margin-left: 0.375rem;
}

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: 3.125rem !important;
}

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

.iti__country-name {
  margin-right: 0.5rem;
  color: black !important;
}

.LanguageMenu {
  text-align: left;
}

.LanguageMenu span {
  font-size: 1rem;
}

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

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

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

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

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

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

body.arabicVersion .LanguageMenu span {
  font-size: 1rem;
}

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(0.3125rem) !important;
}

.social-icons {
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent !important;
  color: var(--color-primary) !important;
  transition: 0.5s all;
  border: none !important;
}
.social-icons:hover {
  background-color: transparent !important;
  color: var(--color-primary) !important;
  transform: translateY(-0.3125rem);
}
.social-icons:hover svg path {
  stroke: white;
}

@media (max-width: 36rem) {
  .social-icons {
    width: 2.375rem;
    height: 2.375rem;
  }
  .social-icons svg {
    width: 1.125rem;
    height: 1.125rem;
  }
}
.bg-white-nav {
  background-color: rgba(255, 255, 255, 0.4);
}

.social-icons-two {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(183, 233, 246, 0.2) !important;
  border: 0.0625rem 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(-0.3125rem);
}
.social-icons-two:hover svg path {
  stroke: var(--color-primary);
}

.back-to-top {
  position: fixed;
  width: 2.8125rem;
  height: 2.8125rem;
  bottom: 1.25rem;
  right: 0.625rem;
  background: var(--color-primary) !important;
  border: none !important;
  color: white !important;
  border-radius: 3.125rem;
  font-size: 1.25rem !important;
  line-height: 0rem !important;
  display: none;
  z-index: 999;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.3);
}
.back-to-top:hover {
  background-color: var(--color-primary) !important;
  border: none !important;
  box-shadow: 0 0.1875rem 0.375rem 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: 0.625rem;
  right: auto;
}

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

.whats-app {
  position: fixed;
  width: 2.8125rem;
  height: 2.8125rem;
  bottom: 4.375rem;
  background-color: #59B438 !important;
  color: #fff;
  border-radius: 50%;
  font-size: 1.4375rem;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  border: #59B438 !important;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.3);
  right: 0.625rem;
}
.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: 0.625rem;
  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: 36rem) {
  .back-to-top {
    width: 2.1875rem !important;
    height: 2.1875rem !important;
    font-size: 1rem !important;
    bottom: 0.9375rem !important;
    padding: 4px !important;
  }
  .back-to-top img {
    width: 0.875rem !important;
    height: 0.875rem !important;
  }
  .whats-app {
    width: 2.1875rem !important;
    height: 2.1875rem !important;
    font-size: 1.125rem !important;
    bottom: 3.4375rem !important;
    padding: 4px !important;
  }
  .whats-app i {
    font-size: 1rem !important;
  }
}
.cursor-pointer {
  cursor: pointer !important;
}

@media (max-width: 61.9375rem) {
  .img-small {
    width: 5.3125rem !important;
  }
  .offcanvas-body::-webkit-scrollbar {
    width: 0.5rem;
  }
  .w-sm {
    width: 4.375rem;
  }
  .flight-path {
    max-width: 18.75rem;
    margin: 0 auto;
    display: block;
  }
  .navbar-nav.bg-light-alt {
    background-color: var(--color-primary) !important;
  }
  .offcanvas-body::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
  }
  .offcanvas-body::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
  }
  .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: white;
  }
  .offcanvas-header .btn-close {
    background-repeat: no-repeat;
    background-size: contain;
    width: 0.0625rem !important;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
  }
  .offcanvas-body.profile-sidebar .nav-link:hover svg path {
    stroke: white !important;
  }
  .offcanvas-body .nav-link a {
    color: var(--color-secondary) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 100%;
  }
  .offcanvas-body .nav-link:hover {
    background-color: var(--color-bg-dark) !important;
  }
  .offcanvas-body .nav-link:hover a {
    color: white !important;
  }
  .offcanvas-body .nav-link {
    color: var(--color-secondary) !important;
    border-bottom: 0.0625rem solid rgba(143, 143, 143, 0.2);
    padding: 0.625rem 0.9375rem;
    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: white;
    color: white !important;
  }
  .offcanvas-body .text-primary {
    color: white !important;
    border-bottom: 0.0625rem solid #fff;
  }
  .offcanvas-body .btn-outline-primary {
    color: white !important;
    border: 0.0625rem solid white !important;
  }
  .offcanvas-body .btn-outline-primary:hover {
    color: var(--color-primary) !important;
  }
}
@media (min-width: 68.75rem) {
  .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(-0.75rem);
    border: none !important;
    box-shadow: 0 0.875rem 2.1875rem 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: 0.125rem;
    width: 0%;
    background-color: var(--color-primary) !important;
    transition: 0.5s;
    margin: auto;
    display: block;
  }
  .nav-hover-link:hover, .nav-hover-link.active {
    color: var(--color-primary) !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-text-dark-alt) !important;
    font-weight: 700 !important;
  }
  .header--overlay .nav-hover-link:hover::after, .header--overlay .nav-hover-link.active::after {
    width: 100%;
  }
  .header--default .nav-hover-link::after {
    background-color: var(--color-primary);
  }
  .header--default .nav-hover-link:hover, .header--default .nav-hover-link.active {
    color: var(--color-primary) !important;
  }
  .header--default .nav-hover-link:hover::after, .header--default .nav-hover-link.active::after {
    width: 100%;
  }
  .nav-hover-link-two {
    position: relative;
    display: inline-block;
    transition: color 0.5s ease, font-weight 0.5s ease;
  }
  .nav-hover-link-two::after {
    content: "";
    height: 0.125rem;
    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;
  }
  .support-card .icon-wrap svg {
    flex-shrink: 0;
    width: 3.75rem;
    height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.btn-custom {
  width: auto;
  display: inline-block;
  margin: 0 auto;
}

@media (max-width: 48rem) {
  .card-not-hover:hover {
    transform: translateY(0rem);
    box-shadow: none !important;
  }
  .position-resp {
    position: static !important;
  }
  .position-resp .para-responsive {
    font-size: 0.875rem !important;
    font-weight: 500 !important;
  }
  .position-resp .heading-responsive {
    font-size: 1rem !important;
    font-weight: 600 !important;
  }
  .position-resp .text-black-responsive {
    color: #2BB3AA !important;
  }
  .text-resp {
    font-size: 0.625rem !important;
  }
  .h6-resp {
    font-size: 0.75rem !important;
    white-space: nowrap;
    font-weight: 500;
  }
  .h1-resp {
    font-size: 1.25rem !important;
  }
}
.fs-4-sm {
  font-size: 22.4px;
}

@media (min-width: 48rem) and (max-width: 61.9375rem) {
  .text-resp .fs-4-sm {
    font-size: 16px;
  }
  .text-resp p {
    font-size: 0.75rem;
  }
  .para-responsive {
    font-size: 0.625rem !important;
  }
  .heading-responsive {
    font-size: 0.75rem !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(-0.6875rem, 0);
  }
  50% {
    transform: translate(0rem, -0.6875rem);
  }
  100% {
    transform: translate(-0.6875rem, 0);
  }
}
@media (min-width: 48rem) {
  .custom-modal-size {
    max-width: 46.875rem;
  }
  .custom-modal-size-md {
    max-width: 40.625rem;
  }
}
.cursor-pointer {
  cursor: pointer !important;
}

@media (min-width: 62.4375rem) and (max-width: 74.9375rem) {
  .fs-sm {
    font-size: 0.8125rem !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: 48rem) {
  .overlay-text {
    font-size: 0.875rem;
    padding: 0.5rem;
  }
}
.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 {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero-bg .container {
  z-index: 2;
}

.hero-title {
  font-weight: 600;
  line-height: 1.5;
}

.hero-desc {
  font-size: 1.25rem;
  line-height: 1.7;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  background: rgba(0, 0, 0, 0.3019607843);
  backdrop-filter: blur(0.5rem);
  border-radius: 1rem;
}

.badge-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.75rem;
}

.badge-icon img {
  width: 40px;
}

.hero-badge span {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111;
}

@media (min-width: 62rem) {
  .hero-badge-inline {
    margin-inline: 3.9375rem;
  }
}
@media (max-width: 61.9375rem) {
  .hero-badge {
    gap: 0.5rem;
    padding: 0.4375rem 0.6875rem;
    border-radius: 0.75rem;
  }
  .badge-icon {
    width: 2.125rem;
    height: 2.125rem;
    border-radius: 0.5625rem;
  }
  .badge-icon img {
    width: 24px;
  }
  .hero-badge span {
    font-size: 0.875rem;
  }
}
/* ===== Tablet ===== */
@media (max-width: 62rem) {
  .hero-text h1 {
    font-size: 2.25rem;
  }
  .hero-text h4 {
    font-size: 1.125rem;
  }
  .google-app img {
    width: 9.375rem;
  }
}
/* ===== Mobile ===== */
@media (max-width: 36rem) {
  .hero-bg {
    min-height: 100vh;
    padding: 3.75rem 0 2.5rem;
  }
  .hero-text img {
    width: 11.25rem;
  }
  .hero-text h1 {
    font-size: 1.625rem;
    line-height: 1.4;
  }
  .hero-text h4 {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
  .google-app {
    flex-direction: row !important;
    gap: 0.75rem;
  }
  .google-app img {
    width: 7.5rem;
  }
}
.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;
}

.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: 40.625rem;
}

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: 38rem;
  overflow: hidden;
}
.section-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(28, 28, 28, 0.2509803922);
  z-index: 1;
}
.section-background::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  z-index: 2;
}
.section-background .section-content {
  position: relative;
  z-index: 3;
}

/* ✅ Tablet */
@media (max-width: 61.9375rem) {
  .section-background {
    min-height: 26.25rem;
  }
  .section-background .section-content h1 {
    font-size: 32px;
  }
}
/* ✅ Mobile */
@media (max-width: 35.9375rem) {
  .section-background {
    min-height: 21.875rem;
  }
  .section-background .section-content {
    padding: 0 16px;
  }
  .section-background .section-content h1 {
    font-size: 25.6px;
  }
  .section-background p {
    font-size: 16px !important;
  }
}
.section-background-contact {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 31.25rem !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: 47.9375rem) {
  .section-background-contact .section-content {
    text-align: center;
    align-items: center;
  }
}
.section-background-contact .section-content h1 {
  font-size: 40px;
}

.section-background-two {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 40.625rem;
}
.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: 40px;
}

.section-background-new {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 28.125rem;
  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: 37.5rem;
}
.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: 21.875rem;
}

.height-300 {
  height: 18.75rem;
}

.height-100 {
  height: 6.25rem;
  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: white;
  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-primary-hover);
  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: #172B4D;
  animation: dotsY 2.4s linear infinite;
}

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

.dot:nth-child(4) {
  top: 0;
  bottom: 0;
  right: 0;
  background: #172B4D;
  animation: dotsY 2.4s linear infinite;
}

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

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

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

.bg-about {
  background-position: center;
  background-size: cover;
  height: 34.375rem;
}

.mt--30 {
  margin-top: -1.875rem;
}

.icon-right {
  right: 0;
  transform: translateX(-5rem);
}
body.arabicVersion .icon-right {
  transform: translateX(5rem);
  left: 0.625rem;
  right: unset;
}

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

.faq-accordion .accordion-item {
  border-radius: 0.9375rem;
  border: none !important;
  box-shadow: none !important;
}
.faq-accordion .accordion-header {
  background-color: #FAF8F5;
}
.faq-accordion .accordion-button {
  color: var(--color-secondary) !important;
  background-color: #FAF8F5 !important;
  background-image: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0.9375rem !important;
  transition: background 0.3s ease;
}
.faq-accordion .accordion-button::after {
  content: "";
  background-image: url(../images/minus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: auto;
}
body.arabicVersion .faq-accordion .accordion-button::after {
  margin-right: auto !important;
  margin-left: 0;
}
.faq-accordion .accordion-button.collapsed {
  background: #FAF8F5 !important;
}
.faq-accordion .accordion-button.collapsed::after {
  background-image: url("../images/plus.svg");
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--color-secondary) !important;
  background-color: #FAF8F5 !important;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: translateY(0.0625rem);
}
.faq-accordion .accordion-body {
  background: #FAF8F5 !important;
  color: var(--color-info) !important;
  padding-top: 16px;
  border-radius: 0.9375rem !important;
}

.faq-accordion-privacy .faq-accordion .accordion-body {
  color: var(--color-secondary) !important;
  background-color: #FAF8F5 !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: 3.4375rem !important;
}

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

.feature-box {
  background: rgba(17, 17, 17, 0.6);
  border-radius: 0.625rem;
  padding: 0.9375rem 1.875rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  margin-bottom: 0.9375rem;
}

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

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

.mb--30 {
  margin-bottom: -1.875rem;
}

body.arabicVersion .form-check-label {
  padding-right: 8px;
}

@media (max-width: 47.9375rem) {
  .service-card {
    padding: 1.25rem;
  }
}
.card-hover {
  transition: all 0.5s ease-in-out;
}

.card-hover:hover {
  transform: translateY(-1.125rem);
  box-shadow: 0 0.75rem 1.5rem rgba(140, 199, 255, 0.4);
}

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

@media only screen and (min-width: 61.9375rem) {
  .top-bottom-absolute {
    top: -4.375rem;
    bottom: -4.375rem;
    left: 0;
    right: 0;
    z-index: 1;
  }
}
.slider-img {
  width: 9.375rem;
  height: 9.375rem;
}

.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: 1.875rem;
  margin-bottom: 0.625rem;
}
body.arabicVersion .custom-list li {
  padding-left: 0rem;
  padding-right: 1.875rem;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1875rem;
  width: 1.5rem;
  height: 1.5rem;
  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: 1.5rem 1.5rem;
}
body.arabicVersion .custom-list li::before {
  left: unset;
  right: 0;
}

.project-details-img {
  height: 12.5rem;
  width: 100%;
}

.hero-sec .image-container {
  overflow: hidden;
  height: 23.125rem;
  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: 7.5rem;
}
body.arabicVersion .hero-sec .col-4:first-child .image-container {
  border-top-right-radius: 7.5rem;
  border-top-left-radius: 0rem;
}
.hero-sec .col-4:last-child .image-container {
  border-top-right-radius: 7.5rem;
}
body.arabicVersion .hero-sec .col-4:last-child .image-container {
  border-top-left-radius: 7.5rem;
  border-top-right-radius: 0rem;
}

.where-care-sec {
  overflow: visible;
}
.where-care-sec .img-hover {
  overflow: hidden;
  height: 23.125rem;
}
.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: 6.25rem;
}
.where-care-sec .rounded-right img {
  border-top-right-radius: 6.25rem;
}
.z-1000 {
  z-index: 1000;
}

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

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

@media (max-width: 47.9375rem) {
  .highlight-wrapper::before {
    top: -3.125rem;
    width: 9.375rem;
    height: 9.375rem;
  }
}
.ticker-wrapper {
  background: #1a1a1a;
  overflow: hidden;
  white-space: nowrap;
  color: white;
  font-size: 2rem !important;
  font-weight: 400 !important;
  text-transform: uppercase;
}

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

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

.ticker span::after {
  content: "•";
  margin: 0 0.9375rem;
  color: white;
}

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

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

.stats-section {
  background-color: #b22053;
  color: #fff;
  border-radius: 0.625rem;
}

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

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

.stats-number {
  font-size: 48px !important;
  font-weight: bold;
}

.stats-label {
  font-size: 16px;
}

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

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

.slick-slide {
  outline: none;
}

.slide-box {
  background: #EDF1F8;
  padding: 1.25rem 1.25rem;
}

.slide-box p {
  line-height: 1.8;
  font-size: 1rem;
}

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

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

.custom-arrows {
  display: flex;
  gap: 0.625rem;
}

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

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

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

.section-background-heading {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 21.875rem;
  border-radius: 0px;
}
.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: 40px;
}

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

.border-primary {
  border: 0.0625rem solid var(--color-primary) !important;
}

.border-gray {
  border: 0.0625rem 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(0.5rem);
  transform: scale(1.1);
  z-index: 1;
}

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

.card-overlay {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  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: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  color: #fff;
}

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

.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 16px 0;
  list-style-type: none;
  gap: 0.625rem;
}

.slick-dots button {
  display: block;
  width: 2.5rem;
  height: 0.25rem;
  margin-inline: 0;
  padding: 0;
  border: none;
  border-radius: 1.5rem;
  background-color: #7A7A80;
  opacity: 0.6;
  text-indent: -624.9375rem;
  transition: all 0.3s ease-in-out;
}

li.slick-active button {
  background-color: #FFFFFF;
  opacity: 1;
  width: 2.5rem;
  height: 0.25rem;
  border-radius: 1.5rem;
}

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

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

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

.btn-slider {
  padding: 0.625rem 2.5rem;
  border-radius: 0.5rem;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0rem;
  border-color: transparent !important;
  box-shadow: 0rem 0rem 0rem 0rem transparent !important;
}

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

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

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

.newsletter-form__field-wrapper {
  max-width: 736px;
}

.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: 80px;
}

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

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

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

.newsletter-form__button {
  width: 54.4px;
  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: 2rem !important;
  font-weight: 900 !important;
  text-transform: uppercase;
}

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

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

.ticker span::after {
  content: "•";
  margin: 0 0.9375rem;
  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: 0.0625rem solid #231F20;
}

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

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

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

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

.otp input {
  color: var(--color-primary) !important;
  border: 0.0625rem solid #E6E6E6 !important;
  background-color: #E6E6E6 !important;
}
.otp input:focus {
  background-color: #fff !important;
  border: 0.0625rem 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: 0.625rem;
  margin-top: -1.75rem;
  color: #666666;
}
body.arabicVersion .toggle-password {
  float: left;
  margin-right: 0;
  margin-left: 0.625rem;
}

.height-img-classes {
  height: 28.125rem;
  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: 0.75rem;
  display: block;
}

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

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

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

.quantity {
  display: flex;
  overflow: hidden;
  height: 2.3125rem;
}

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

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

.input-box {
  width: 2.5rem;
  text-align: center;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  outline: none;
}

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

.classes-img {
  height: 11.875rem;
  width: 100%;
}

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

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

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

.bg-section {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  color: white;
  min-height: 31.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.875rem;
}

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

.bg-content {
  position: relative;
  z-index: 2;
  max-width: 46.875rem;
}

@media (max-width: 48rem) {
  .bg-section {
    padding: 1.25rem;
  }
  .bg-content {
    max-width: 100%;
  }
}
.home-img-height {
  height: 15.625rem;
  width: 100%;
}

td {
  cursor: pointer;
  text-align: center;
  padding: 0.5rem;
  width: 2.8125rem;
  height: 2.8125rem;
}

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

th {
  text-align: center;
}

.calendar-tabs .nav-tabs {
  border-bottom: none;
}
.calendar-tabs .nav-tabs .nav-link {
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  border: none !important;
  color: #777;
  background-color: transparent !important;
}
.calendar-tabs .nav-tabs .nav-link.active {
  color: var(--color-primary) !important;
  border: none !important;
  border-bottom: 0.125rem solid var(--color-primary) !important;
  background-color: transparent !important;
}

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

@media (min-width: 75rem) {
  .has-search .form-control {
    width: 35.4375rem !important;
  }
}
@media (min-width: 62rem) and (max-width: 87.5rem) {
  .navbar .nav-link,
  .navbar .nav-hover-link {
    font-size: 0.875rem;
    white-space: nowrap;
  }
  .btn-lg-m {
    white-space: nowrap;
    font-size: 0.75rem;
  }
}
@media (max-width: 61.9375rem) {
  .top-custom {
    right: -1.875rem;
    top: -3.875rem !important;
  }
  body.arabicVersion .top-custom {
    right: unset;
    left: -1.875rem;
    transform: scaleX(-1);
  }
}
.top-custom {
  right: 0rem;
  top: -5.125rem !important;
}
body.arabicVersion .top-custom {
  right: unset;
  left: 0rem;
  transform: scaleX(-1);
}

.search-input {
  border: 0.0625rem solid #E8E8E8 !important;
  border-radius: 0.5rem;
  height: 2.8125rem;
  border: none;
  padding-left: 2.8125rem;
}
.search-input:focus {
  border: 0.125rem solid var(--color-primary) !important;
}

.search-wrapper {
  position: relative;
}

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

.border-primary-3 {
  border-bottom: 0.1875rem 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: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.filter-title {
  font-weight: 600;
  position: relative;
  margin-bottom: 0.9375rem;
}

.filter-title::after {
  content: "";
  width: 2.1875rem;
  height: 0.375rem;
  background: var(--color-primary);
  border-radius: 0.3125rem;
  display: block;
  margin-top: 0.375rem;
}

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

.course-card:hover,
.course-card.hovered {
  transform: translateY(-0.3125rem);
}

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

.course-img {
  height: 12.5rem !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: 0.8125rem;
  border-radius: 1.25rem;
  padding: 0.25rem 0.75rem;
}

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

.avatar-overlay {
  position: absolute;
  bottom: -1.25rem;
  right: 1rem;
  z-index: 10 !important;
}

.icon-text {
  font-size: 0.875rem;
  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 12px center;
  background-size: 1rem 0.75rem;
}

.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(-2.5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(2.5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Green boxes */
.green-box {
  background: #1f4f3a;
  height: 12.5rem;
  border: 0.25rem solid #FFD39A;
}

.first-height {
  height: 20rem;
}

.second-height {
  height: 12.5rem;
}

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

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

.animated-stripe {
  height: 1.875rem;
  background: repeating-linear-gradient(-55deg, #1f4f3a, #1f4f3a 1.25rem, #f5c58a 1.25rem, #f5c58a 2.5rem);
  animation: moveStripe 4s linear infinite;
}

@keyframes moveStripe {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 12.5rem 0;
  }
}
.card-box {
  height: 15.625rem;
}

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

.video-wrapper {
  height: 34.375rem;
}

.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(-2.1875rem, -3.25rem);
  max-width: 12.5rem;
}

.custom-box-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(-1.125rem, 1.6875rem);
  max-width: 18.75rem;
}

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

@media (min-width: 62rem) and (max-width: 74.9988rem) {
  .fs-lg {
    font-size: 2.1875rem;
  }
}
.icon-wrapper {
  position: relative;
  display: inline-flex;
}

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

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

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

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

@keyframes blink {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@media (min-width: 48rem) {
  .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: 28.125rem;
  background-repeat: no-repeat;
}

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

.brochures-slider-nav {
  position: relative;
  top: -1.25rem;
  text-align: right;
}
.brochures-slider-nav .prev, .brochures-slider-nav .next {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5625rem;
  border-radius: 0.75rem;
  color: #fff !important;
  font-size: 1.125rem;
  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: 5rem;
  object-fit: contain;
}

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

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

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

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

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

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

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

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

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

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

.packages-slider .slick-slide {
  padding: 0 0.5rem;
}

.packages-slider {
  margin: 0 -0.5rem;
}

.testimonial-slider .slick-slide {
  margin: 0 0.9375rem;
}

.social-radio {
  background-color: #F0EBF4;
  border-radius: 0.875rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 0.125rem solid transparent;
  transition: all 0.3s ease;
}

.social-radio img {
  height: 1.25rem;
}

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

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

.verify {
  width: 3.4375rem;
  height: 3.4375rem;
}

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

.appointment-form input[type=radio]:checked ~ .appointment-lable {
  box-shadow: 0rem 0rem 0rem 0.0625rem 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(0.1875rem);
  -webkit-backdrop-filter: blur(0.1875rem);
  z-index: 0;
}

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

.supplier-img {
  width: 5.625rem;
  height: 5.625rem;
  border-radius: 50%;
  padding: 0.25rem;
  cursor: pointer;
}

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

.brochure-img {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  padding: 0.25rem;
  cursor: pointer;
}

.suppliers-circle {
  width: 8.75rem;
  height: 8.75rem;
  border-radius: 50%;
  padding: 0.25rem;
  cursor: pointer;
}

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

.suppliers-name {
  color: #222222;
  font-size: 1.5rem;
}

.story-circle {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  padding: 0.25rem;
  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: 0.625rem;
  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: 0.9375rem;
}

.filters-wrapper {
  padding-bottom: 8px;
}

.filters-wrapper::-webkit-scrollbar {
  height: 0.375rem;
}

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

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

.filter-btn {
  border: 0;
  background: #F0EBF4;
  color: #222;
  padding: 0.625rem 1rem;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.filter-btn .count {
  background: var(--color-primary);
  color: #fff;
  padding: 0.125rem 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 62.4375rem;
  font-size: 0.8125rem;
}

.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: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-link {
  border-radius: 100% !important;
  width: 2.5rem;
  height: 2.5rem;
  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: 0.125rem dashed #e5e7eb;
  border-radius: 0.75rem;
  padding: 2.5rem;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.upload-box-supplier {
  border: 0.125rem dashed #e5e7eb;
  border-radius: 0.75rem;
  background-color: #fff;
  padding: 1.875rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  height: 9.375rem;
  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: 0.75rem;
  width: 100%;
  max-height: 9.375rem;
  object-fit: cover;
  border-radius: 0;
  border: none;
}

.remove-image-btn {
  display: none;
  position: absolute;
  top: 0.3125rem;
  right: 0.6875rem;
  background-color: transparent;
  z-index: 10;
  border: none;
  border-radius: 50%;
  width: 1.5625rem;
  height: 1.5625rem;
  cursor: pointer;
}

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

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

.color-box {
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

.color-wrapper {
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

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

.upload-preview {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.preview-item {
  position: relative;
  width: 7.5rem;
  height: 7.5rem;
}

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

.remove-img {
  position: absolute;
  top: -0.6875rem;
  right: -1.125rem;
  width: 1.875rem;
  height: 1.875rem;
  border: none;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.product-img-height {
  height: 13.75rem !important;
  width: 100% !important;
}

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

.bagde-out-stock {
  background-color: rgba(153, 6, 6, 0.2);
  color: #990606;
  font-size: 0.875rem;
  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: 0.5rem;
  overflow: hidden;
}

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

.slider-thumbs {
  margin-top: 1.25rem;
}

.thumb-img {
  padding: 0.3125rem;
}

.thumb-img img {
  width: 100%;
  height: 5.625rem;
  object-fit: contain;
  border: 0.125rem solid transparent;
  border-radius: 0.5rem;
  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: 2.5rem;
  height: 2.5rem;
}

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

.table td {
  border-bottom: none;
}

.table tbody tr {
  border-bottom: 0.0625rem solid #dee2e6;
}

@media (max-width: 48rem) {
  .mobile-view thead {
    display: none;
  }
  .mobile-view .h-cart {
    display: block;
    width: 100%;
    margin-bottom: 16px;
    background-color: #fff;
    border: 0.0625rem solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
  }
  .mobile-view .h-cart td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 16px;
    border-bottom: 0.0625rem 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: 48.0625rem) {
  .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: 0.75rem;
  border-radius: 0.5rem;
  text-align: center;
}

.product-img-cart {
  width: 5.625rem;
  height: 5.625rem;
  object-fit: cover;
  border-radius: 0.625rem;
}

.address-card {
  display: block;
  cursor: pointer;
  margin-bottom: 1rem;
}

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

.address-inner {
  border-radius: 0.875rem;
  border: 0.0625rem solid #eee;
  padding: 1.125rem;
  transition: all 0.3s ease;
  background: #fff;
}

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

.location-icon {
  font-size: 1.25rem;
  color: #2ec4c4;
}

.edit-icon {
  cursor: pointer;
  font-size: 1.125rem;
}

.delete-icon {
  cursor: pointer;
  font-size: 1.125rem;
  color: #ff4d4f;
}

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

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

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

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

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

.checkout-accordion .accordion-item {
  border: 0.0625rem solid #EAEAEA !important;
  border-radius: 0.625rem !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: 1.875rem;
  height: 1.875rem;
  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(0.0625rem);
}
.checkout-accordion .accordion-body {
  background-color: white !important;
  color: #666666 !important;
}
.checkout-accordion .accordion-body {
  max-height: 16.875rem;
  overflow-y: auto;
}
.checkout-accordion .accordion-body::-webkit-scrollbar {
  width: 0.375rem;
}
.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: 18.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.timeline-step {
  position: relative;
  width: 5rem;
  text-align: center;
}

.timeline-step .icon {
  font-size: 1.75rem;
  margin-bottom: 1.125rem;
}

.timeline-step .circle {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.875rem !important;
  font-size: 1rem;
}

.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: 0.125rem;
  margin-top: 2rem;
}

.line.active {
  background: #646464;
}

.line.muted {
  background: repeating-linear-gradient(to right, #d3d3d3, #d3d3d3 0.375rem, transparent 0.375rem, transparent 0.75rem);
}

.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: 0.0625rem dashed #916FC3;
  width: 80% !important;
}

.py-1-2 {
  padding-top: 6px;
  padding-bottom: 6px;
}

.rounded-35 {
  border-radius: 11.2px;
}

.h-lg {
  height: 28.125rem;
}

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

.section-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  min-height: 640px;
}
.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5019607843);
  z-index: 1;
}

.footer-bg {
  background-image: url("../images/Footer-bg.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: 0.0625rem solid #C7C7C7;
  backdrop-filter: blur(0.3125rem);
}

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

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

@media (max-width: 62rem) {
  .phone-img {
    max-width: 21.875rem;
  }
}
@media (max-width: 36rem) {
  .phone-img {
    max-width: 15.625rem;
  }
}
.py-custom {
  padding-top: 6px;
  padding-bottom: 6px;
}

.service-card {
  position: relative;
}

.rounded-bl-4 {
  border-bottom-left-radius: 24px;
}

.popular-services-slider .slick-slide {
  padding: 0 0.625rem;
}

.popular-services-slider {
  margin: 0 -0.625rem;
}

.bg-white-05 {
  background-color: rgba(233, 235, 248, 0.3019607843);
}

.dropdown-item:focus, .dropdown-item:active, .dropdown-item:hover {
  background-color: #1f1f1f !important;
  box-shadow: none !important;
  color: var(--primary-color);
  border-right: 0.25rem solid var(--color-primary);
}

.rounded-4 {
  border-radius: 0.75rem !important;
}

.icon-left {
  transform: translateY(-18.75rem);
}

.icon-left-about {
  transform: translateY(-12.5rem);
}

.icon-left-why {
  transform: translateY(-9.375rem);
}

.icon-left-bottom {
  transform: translateY(18.75rem);
}

.icon-left-bottom-why {
  transform: translateY(12.5rem);
}

.protection-slider .card {
  border: 0.125rem solid #C7C7C7;
  overflow: visible !important;
  margin: 0 0.9375rem;
  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: 3.75rem;
  width: 3.75rem;
}

.protection-slider-sec .card {
  border: 0.125rem 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: 3.75rem;
  width: 3.75rem;
}

.why-cyber-slider .slick-list,
.why-cyber-slider .slick-track,
.why-cyber-slider .slick-slide {
  overflow: visible !important;
}

.why-cyber-slider .card {
  border: 0.125rem solid #C7C7C7;
  overflow: visible !important;
  margin: 0 1.5625rem;
  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: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #171717;
  border: 0.0625rem solid var(--color-primary);
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.why-cyber-slider .card .circle img {
  width: 3rem;
  height: 3rem;
  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: none;
  background: var(--color-primary);
  font-size: 19.2px;
  line-height: 40px;
  cursor: pointer;
  color: var(--color-bg-light);
}

.testimonials-slider-nav button.prev:hover,
.testimonials-slider-nav button.next:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: white;
}

.mt-n15 {
  margin-top: -2.4px !important;
}

.mt-n5 {
  margin-top: -5.6px !important;
}

.new-rocker-font {
  font-family: "New Rocker", system-ui;
}

.text-security {
  color: rgba(255, 255, 255, 0.1019607843);
  font-size: 4.375rem;
  position: absolute;
  bottom: -0.625rem;
  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: 0rem;
}

.video-title {
  font-size: 1.25rem;
  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: 0.625rem;
  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 0.375rem #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: 0.0625rem solid #C7C7C7;
  border-radius: 0.875rem;
  color: white;
  padding: 1.75rem;
  position: relative;
  transition: 0.3s ease;
  z-index: 3 !important;
}

.timeline-card:hover,
.timeline-card.hovered {
  transform: translateY(-0.375rem);
  border-color: #00c6ff;
}

.timeline-card h5 {
  margin-top: 0.9375rem;
  font-size: 1.125rem;
}

.timeline-card p {
  font-size: 0.875rem;
  opacity: 0.85;
  margin-bottom: 0;
}

.icon-box {
  width: 3.75rem;
  height: 3.75rem;
  background: #0d6efd;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
}

/* mobile */
@media (max-width: 47.9375rem) {
  .timeline-line,
  .timeline-dot,
  .timeline-connector {
    display: none !important;
  }
  .timeline-item {
    margin-bottom: 2.5rem;
  }
}
.top-30 {
  top: 35%;
}

@media (min-width: 75rem) {
  .display-6 {
    font-size: 2.8125rem;
  }
}
.gallery-slider .image-container-slider {
  height: 21.875rem;
  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 1.5625rem;
  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;
}

.services-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-img {
  position: relative;
  overflow: hidden;
  border-radius: 624.9375rem 624.9375rem 0 0;
}

@media (min-width: 62rem) {
  .faq-scroll-wrapper {
    height: 38.125rem;
  }
  .faq-scroll {
    max-height: 100%;
    overflow-y: auto;
    padding-right: 0.625rem;
  }
}
.faq-scroll {
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) #f1f1f1;
}

.faq-scroll::-webkit-scrollbar {
  width: 0.375rem;
}

.faq-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.faq-scroll::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 0.625rem;
}

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

.testimonial-card {
  border-radius: 16px;
  overflow: hidden;
  background-color: #fff;
  flex-direction: row;
}

.testimonial-card .profile-img {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-text {
  line-height: 1.5;
}

.testimonial-name {
  font-weight: 600;
  margin-right: 8px;
}

@media (max-width: 47.9375rem) {
  h5 {
    font-size: 1rem;
  }
}
.bg-gray-50 {
  background-color: rgba(255, 255, 255, 0.1490196078);
}

.timeline-container {
  position: relative;
}

.timeline-bar {
  height: 0.25rem;
  background-color: #76350F;
  border-radius: 0rem;
  position: relative;
  top: 1.125rem;
}

.timeline-point {
  width: 1.375rem;
  height: 1.375rem;
  background-color: #76350F;
  border: 0.375rem solid white;
  border-radius: 50%;
  position: absolute;
  top: 0.625rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-label {
  background-color: var(--primary-color-two);
  padding: 0.25rem 1.25rem;
  border-radius: 3.125rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  z-index: 3;
  font-weight: 600;
}

.top .timeline-label {
  top: -2.1875rem;
}

.bottom .timeline-label {
  top: 2.0625rem;
}

.bottom .timeline-label::after {
  content: "";
}

.mission-img {
  width: 12.5rem;
  height: 12.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-title {
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.mission-text {
  color: #6D6D6D;
  line-height: 1.8;
}

.why-choose-section {
  background-image: url("../images/bg-why-choose.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

.why-choose-us-slider .slick-slide {
  padding: 0 0.625rem;
}

.why-choose-us-slider .slick-list {
  margin: 0 -0.625rem;
}

.contact-bg {
  background-image: url("../images/contact-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: 560px;
}
.contact-bg::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.7490196078);
  position: absolute;
  inset: 0;
}
.contact-bg > * {
  position: relative;
  z-index: 1;
}

.iphone-img {
  width: 100%;
}

@media (min-width: 62rem) {
  .iphone-img {
    max-width: 18.75rem;
  }
}
.about-section {
  background: var(--bg-dark);
  padding: 5rem 1.25rem;
}

.arch-wrap {
  position: relative;
  width: 100%;
  max-width: 23.75rem;
  height: 28.75rem;
  margin: 0 auto;
}

.arch-bg {
  position: absolute;
  inset: 0;
  background: #242B33;
}

.arch-bg.man {
  border-top-left-radius: 15.625rem;
}

.arch-bg.woman {
  border-top-right-radius: 15.625rem;
}

.arch-wrap img {
  position: absolute;
  bottom: -3.125rem;
  left: 50%;
  transform: translateX(-50%);
  height: 120%;
  max-width: none;
  width: auto;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 0.625rem 1.25rem rgba(0, 0, 0, 0.4));
}

.arch-wrap-faq {
  position: relative;
  width: 100%;
  max-width: 23.75rem;
  height: 28.75rem;
  margin: 0 auto;
}

.arch-bg-faq {
  position: absolute;
  inset: 0;
  background: #242B33;
  border-top-right-radius: 15.625rem;
  border-top-left-radius: 15.625rem;
}

.arch-wrap-faq img {
  position: absolute;
  bottom: 0rem;
  left: 50%;
  transform: translateX(-50%);
  height: 115%;
  max-width: none;
  width: auto;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 0.625rem 1.25rem rgba(0, 0, 0, 0.4));
}

/* Text content */
@media (max-width: 61.9988rem) {
  .arch-wrap {
    height: 23.75rem;
    max-width: 18.75rem;
  }
  .about-heading {
    font-size: 28.8px;
  }
}
@media (max-width: 47.9988rem) {
  .about-section {
    padding: 3.125rem 0.9375rem;
  }
  .arch-wrap {
    height: 21.25rem;
    max-width: 16.25rem;
    margin-bottom: 2.5rem;
  }
  .about-content {
    order: -1;
    margin-bottom: 2.5rem;
  }
}
.site-footer {
  overflow: hidden;
}

.footer-bottom {
  background: #172B4D;
  padding: 17.6px 0;
}

.social-rail {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.social-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 0.0938rem solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social-icon:hover {
  background: #fff;
  color: var(--footer-dark);
  border-color: #fff;
}

/* =========================================
   CONTACT SECTION
========================================= */
.contact-section {
  overflow: hidden;
}

/* =========================================
   CONTACT HEADING
========================================= */
.contact-heading .contact-label {
  font-weight: 500;
}
.contact-heading h2 {
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.contact-heading p {
  line-height: 1.7;
}

/* =========================================
   INFO CARDS
========================================= */
.info-card {
  border-bottom: 0.0625rem solid #CCCCCC !important;
}

/* =========================================
   INFO ICON
========================================= */
.info-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-bg-light-alt);
  flex-shrink: 0;
}

/* =========================================
   INFO CONTENT
========================================= */
.info-content {
  min-width: 0;
}
.info-content h3 {
  font-size: 1.25rem;
}
.info-content p {
  color: #aeb2b8;
  font-size: 0.875rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

/* =========================================
   FORM CARD
========================================= */
.contact-form-card {
  position: relative;
  border-radius: 0.5rem;
  z-index: 1;
}

/* =========================================
   FORM TITLE
========================================= */
.contact-form-title {
  line-height: 1.3;
  margin-bottom: 1.375rem;
}

/* =========================================
   FORM LABEL
========================================= */
.contact-form-card .form-label {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 61.9988rem) {
  .contact-section {
    padding: 4.375rem 1.5625rem;
  }
}
@media (max-width: 47.9988rem) {
  .contact-section {
    padding: 3.4375rem 0.9375rem;
  }
  .contact-heading h2 {
    font-size: 1.8125rem;
  }
  .contact-heading p {
    font-size: 0.875rem;
  }
  .contact-form-title {
    font-size: 1.3125rem;
  }
  .info-card .card-body {
    padding: 1.0625rem;
  }
}
@media (max-width: 30rem) {
  .contact-section {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .contact-form-card .card-body {
    padding: 1.375rem 1.125rem;
  }
  .contact-form-title {
    font-size: 1.1875rem;
  }
  .info-icon {
    width: 3rem;
    height: 3rem;
  }
  .info-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .info-content h3 {
    font-size: 0.9375rem;
  }
  .info-content p {
    font-size: 0.75rem;
  }
}
/* =========================
   CARD
========================= */
.feature-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 28.75rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-0.5rem);
  z-index: 2;
}

/* =========================
   TITLE
========================= */
.feature-title {
  font-size: 24.8px;
  font-weight: 600;
  letter-spacing: 0.0313rem;
}

/* =========================
   PHONE
========================= */
.phone-slot {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.phone-slot img {
  display: block;
  width: 90%;
  max-width: 80%;
  height: auto;
  margin-top: auto;
  filter: drop-shadow(0 1.25rem 1.875rem rgba(0, 0, 0, 0.5));
  transition: transform 0.35s ease;
}

/* =========================
   TABLET
========================= */
@media (max-width: 61.9988rem) {
  .feature-card {
    min-height: 25rem;
    padding: 2.5rem 1.875rem 0;
  }
  .feature-title {
    font-size: 20.8px;
  }
  .feature-text {
    margin-left: 4rem;
    font-size: 15.2px;
  }
  .phone-slot img {
    max-width: 13.75rem;
  }
}
@media (max-width: 47.9988rem) {
  .showcase-wrap {
    padding: 1.5625rem 0.75rem;
  }
  .feature-title {
    font-size: 19.2px;
  }
  .feature-text {
    margin-left: 0;
    max-width: 100%;
    font-size: 15.2px;
  }
  .phone-slot img {
    width: 65%;
    max-width: 14.375rem;
  }
  .card-tl {
    border-radius: 5rem 0 0 0;
  }
  .card-tr {
    border-radius: 0 5rem 0 0;
  }
  .card-bl {
    border-radius: 0 0 0 5rem;
  }
  .card-br {
    border-radius: 0 0 5rem 0;
  }
}
.top-bar {
  height: 0.875rem;
  background: var(--color-primary);
  border-radius: 0.75rem;
  margin: 0 auto 1.875rem auto;
}

.support-card {
  border-radius: 1.125rem;
  margin: 0 auto;
}

.support-card .icon-wrap svg {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-card h3 {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 25.6px;
  margin-bottom: 0.5rem;
}

.support-card p {
  color: var(--text-muted);
  font-size: 16.8px;
  margin-bottom: 0;
  line-height: 1.5;
}

.divider {
  width: 0.0625rem;
  background: var(--color-primary);
  align-self: stretch;
  opacity: 0.6;
}

@media (max-width: 47.9988rem) {
  .support-card {
    padding: 1.875rem 1.5625rem;
  }
  .divider {
    display: none;
  }
  .support-card .row > div {
    margin-bottom: 1.5625rem;
  }
  .support-card .row > div:last-child {
    margin-bottom: 0;
  }
}
.vehicle-slider {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  height: 100%;
  min-height: 28.75rem;
}

.vehicle-slide {
  position: relative;
  height: 28.75rem;
}

.vehicle-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.vehicle-slider .slick-list,
.vehicle-slider .slick-track {
  height: 100%;
}

.vehicle-slider .slick-slide {
  height: 100%;
}

.vehicle-slider .slick-slide > div {
  height: 100%;
}

/* Slick Dots */
.vehicle-slider .slick-dots {
  position: absolute;
  bottom: 0.9375rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vehicle-slider .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}

.vehicle-slider .slick-dots button {
  width: 2.5rem;
  height: 0.25rem;
  padding: 0;
  border: 0;
  border-radius: 1.5rem;
  background: var(--color-bg-light-alt);
  font-size: 0;
}

.vehicle-slider .slick-dots .slick-active button {
  opacity: 1;
  background-color: var(--color-primary);
}

.step-icon-wrap {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: transparent;
}

.step-icon-wrap svg {
  width: 5rem;
  height: 5rem;
  stroke: var(--color-primary);
}

.step-number {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 25.6px;
  margin-top: 1.375rem;
  letter-spacing: 0.0313rem;
}

.step-title {
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 18.4px;
  margin-top: 0.375rem;
}

.step-desc {
  color: var(--text-muted);
  font-size: 15.2px;
  margin: 0.5rem auto 0;
  line-height: 1.5;
}

.step-col {
  position: relative;
}

.step-connector {
  position: absolute;
  top: 3.125rem;
  left: calc(50% + 4.375rem);
  width: calc(100% - 8.75rem);
  height: 0.1875rem;
  background-image: linear-gradient(to right, var(--color-primary) 0%, var(--color-primary) 50%, transparent 50%, transparent 100%);
  background-size: 1.25rem 0.1875rem;
  background-repeat: repeat-x;
}

@media (max-width: 47.9988rem) {
  .step-connector {
    display: none;
  }
  .step-col {
    margin-bottom: 2.5rem;
  }
}
.hr-custom {
  border-color: var(--color-primary);
  opacity: 1;
}

.sponsor-sec {
  direction: ltr;
}

.animate-scroll-left {
  width: max-content;
  animation: scroll-left 25s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.animate-scroll-right {
  width: max-content;
  animation: scroll-right 25s linear infinite;
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.sponsors-section .overflow-hidden::before,
.sponsors-section .overflow-hidden::after {
  content: "";
  position: absolute;
  top: 0;
  width: 5rem;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.sponsors-section .overflow-hidden::before {
  left: 0;
  background: linear-gradient(to right, var(--dark-custom-bg), transparent);
}

.sponsors-section .overflow-hidden::after {
  right: 0;
  background: linear-gradient(to left, var(--dark-custom-bg), transparent);
}

.sponsor-box {
  background-color: white;
  width: 112px;
  height: 64px;
  padding: 8px;
  transition: background-color 0.3s ease;
  box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.15);
  margin-inline: 16px;
}

/* ---- Tabs ---- */
.gallery-tabs {
  gap: 0.5rem;
  background: #F6F2EC;
  flex-wrap: wrap;
  padding: 1rem;
}

.gallery-tabs .nav-link {
  border: 0;
  border-radius: 1.875rem;
  padding: 0.3125rem 1.375rem;
  font-weight: 500;
  font-size: 15.2px;
  color: #616161;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.gallery-tabs .nav-link.active {
  background: var(--color-primary);
  color: #fff;
}

/* ---- Gallery grid ---- */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.375rem;
  height: 18.75rem;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.row-top .gallery-item,
.row-bottom .gallery-item {
  height: 18.75rem;
}

@media (max-width: 61.9988rem) {
  .row-top .gallery-item,
  .row-bottom .gallery-item {
    height: 12.5rem;
  }
}
.custom-card {
  border: 0.0625rem solid rgba(255, 255, 255, 0.1019607843);
  background-color: rgba(255, 255, 255, 0.1019607843);
  backdrop-filter: blur(0.4375rem);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.custom-card:hover {
  transform: translateY(-0.375rem);
  background-color: rgba(255, 255, 255, 0.2);
}

.services-boxes {
  transition: all 0.3s ease;
  cursor: pointer;
}

.services-boxes:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.12);
}

.services-boxes-icon {
  width: 2.1875rem;
}

.services-boxes-icon-two {
  width: 30px;
}

.services-boxes-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== Custom Slick Arrows ===== */
/* ===== Card ===== */
.testimonial-slider {
  margin: 0 -0.75rem;
}

.testimonial-slider .slick-slide > div {
  padding: 0 0.75rem;
}

.testimonial-slider .slick-track {
  display: flex !important;
}

.testimonial-slider .slick-slide {
  height: auto;
}

.testimonial-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 21.875rem;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}

.testimonial-card > * {
  position: relative;
  z-index: 1;
}

.testimonial-text {
  color: #f2ece3;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.375rem;
  color: #FFCC00;
  font-size: 1.25rem;
  margin-bottom: 1.375rem;
}

.testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.testimonial-avatar svg {
  width: 1.625rem;
  height: 1.625rem;
  color: #fff;
}

.testimonial-name {
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 0.25rem;
}

.testimonial-role {
  color: #cdbfae;
  font-size: 0.875rem;
  text-align: center;
}

/* Slick dots (optional, hidden by default since we use arrows) */
.testimonial-slider .slick-dots {
  bottom: -2.8125rem;
}

.testimonial-slider .slick-dots li button:before {
  color: var(--primary);
  opacity: 0.4;
}

.testimonial-slider .slick-dots li.slick-active button:before {
  opacity: 1;
}

@media (max-width: 61.9375rem) {
  .testimonials-nav {
    margin-top: 1.25rem;
  }
}
.modal-dark .btn-close {
  filter: invert(1);
  opacity: 0.5;
}
.modal-dark .form-label {
  color: #A5A39E;
}
.modal-dark .form-control,
.modal-dark .form-select {
  background-color: #2A2824;
  border: 1px solid #444442 !important;
  color: #fff;
}
.modal-dark .form-control::placeholder,
.modal-dark .form-select::placeholder {
  color: #FFFFFF !important;
}
.modal-dark .form-select option {
  background-color: #2A2824;
  color: #fff;
}
.modal-dark .form-select option:disabled {
  color: #fff;
}

.modal-dark .form-control,
.modal-dark .form-select {
  color-scheme: dark;
}

.modal-dark .btn-close {
  filter: invert(1);
}

.header--home {
  position: absolute;
  z-index: 10;
  background: transparent;
}

.header--inner {
  position: relative;
  z-index: 10;
  background-color: #fff;
}

.header--home .nav-link {
  color: #fff;
}

.header--inner .nav-link {
  color: #222;
}

.header--home .LanguageText {
  color: #fff;
}

.header--inner .LanguageText {
  color: #222;
}

.header--home .navbar {
  background: transparent;
}

.header--inner .navbar {
  background: #fff;
}

@media (min-width: 992px) {
  .faq-sticky {
    position: sticky;
    top: 5rem;
    align-self: flex-start;
  }
}
/* =========================================
   ROOM GALLERY
========================================= */
.gallery-main {
  position: relative;
  height: 460px;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

/* =========================================
   MAIN IMAGE
========================================= */
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.gallery-main img.changing {
  opacity: 0;
}

/* =========================================
   NAVIGATION BUTTONS
========================================= */
.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(28, 26, 23, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 2;
}

.gallery-nav-btn:hover {
  background: rgba(28, 26, 23, 0.85);
}

.gallery-nav-btn.prev {
  right: 16px;
}

.gallery-nav-btn.next {
  left: 16px;
}

.gallery-nav-btn svg {
  width: 18px;
  height: 18px;
}

/* =========================================
   COUNTER
========================================= */
.gallery-counter {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(28, 26, 23, 0.6);
  color: #fff;
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  z-index: 2;
}

/* =========================================
   THUMBNAILS
========================================= */
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.gallery-thumb {
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: #000;
  transition: border-color 0.2s ease, opacity 0.2s ease;
  appearance: none;
}

.gallery-thumb img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.gallery-thumb:hover img {
  opacity: 1;
}

.gallery-thumb.active {
  border-color: var(--vm-gold);
}

.gallery-thumb.active img {
  opacity: 1;
}

/* =========================================
   ROOM INFO
========================================= */
.room-info {
  margin-top: 36px;
}

.room-rating {
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
}

.room-rating .stars {
  letter-spacing: 2px;
}

.room-rating .brand {
  color: var(--vm-gold);
}

.room-title {
  font-weight: 700;
  font-size: 2rem;
  margin-top: 10px;
  display: inline-block;
  padding-bottom: 14px;
  position: relative;
}

.room-title::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -1rem;
  width: 70%;
  height: 2px;
  background-color: var(--color-primary);
  margin-bottom: 10px;
}

.room-tax {
  color: var(--vm-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 18px;
}

.room-desc {
  color: #4d473d;
  line-height: 2;
  font-size: 0.95rem;
  margin-top: 10px;
  max-width: 100%;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 768px) {
  .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .gallery-main {
    height: 280px;
  }
  .gallery-nav-btn {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 480px) {
  .gallery-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }
}
.box-info {
  background: #F6F2EC;
  border-right: 4px solid var(--color-primary);
}

.num-heading {
  color: #E5DEC9;
  font-size: 120px;
}

.feature-header {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-header .line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background-color: var(--color-primary);
  opacity: 0.6;
}

.feature-title {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-primary);
  white-space: nowrap;
  margin: 0;
}

.feature-title .num {
  color: var(--gold);
  font-weight: 800;
}

.feature-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 2.1;
  max-width: 320px;
}

@media (max-width: 991.98px) {
  .feature-header .line {
    display: none;
  }
  .feature-col:last-child {
    margin-bottom: 0;
  }
}
