@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");

.submenu {
  direction: rtl !important;
  text-align: right !important;
}

:root {
  --arabicFont: "Tajawal", sans-serif;
  --englishFont: "IBM Plex Sans", sans-serif;
}

:root {.nav-or-search .search-box
  --arabicFont: "Tajawal", sans-serif;
  --englishFont: "IBM Plex Sans", sans-serif;
  --bg-light: #fafafa;
  --text-light: #222;
  --bg-dark: #0a0a25;
  --text-dark: #fff;
  --circle-bg-dark: #111322;
  --fill-after-dark: rgb(89, 63, 36);
}

* {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

body {
  min-width: 1900px;
  font-family: var(--arabicFont);
  color: var(--text-dark);
  background: #222;
  transition: background 0.4s, color 0.4s;
}

.dark-mode body {
  background: #111322;
  color: var(--text-dark);
}

:root:not(.dark-mode) body {
  background: #fafafa;
  color: var(--text-light);
}

html {
  scroll-behavior: smooth;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
}

button {
  font-family: var(--arabicFont);
  background: transparent;
  border: none;
  cursor: pointer;
}

input {
  font-family: var(--arabicFont);
}

.theme_mode {
  display: flex;
  align-items: center;
}

.theme-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 200, 200, 0.15);
  /* subtle background, adjust as needed */
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  transition: background 0.15s;
}

.theme-toggle-icon {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: transform 0.4s, opacity 0.4s;
}

.nav-or-search {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.show-search {
  margin-top: 1.5%;
  margin-bottom: -1.5%;
}

/* Hide search-box by default */
.nav-or-search .search-box {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28%;
  margin: auto;
  padding: 13px 20px;
  background: #3a3a50;
  color: white;
  height: 25px;
  border-radius: 15px;
  box-shadow: 0 2px 16px 0 rgba(239, 141, 101, 0.09);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  text-align: right;
  z-index: 10;
  margin-right: 0px;
  margin-left: 0px;
}

.nav-or-search .search-icon-in-box {
  margin-left: 0;
  margin-right: 0;
  margin-inline-start: 0;
  margin-inline-end: 12px;
  display: flex;
  align-items: center;
  order: 2;
}

.nav-or-search .search-icon-in-box img {
  width: 24px;
  height: 24px;
  filter: none;
  color: #111;
  fill: #111;
  margin-left: 8px;
  margin-right: 0;
  display: block;
}

.nav-or-search .search-input {
  border: none;
  outline: none;
  font-size: 1.1rem;
  flex: 1;
  background: transparent;
  color: white;
  font-family: inherit;
  padding: 0 10px;
  direction: rtl;
  text-align: center;
}

.search-input::placeholder {
    opacity: 0.8;
}


/* Hide ul when search active */
.show-search .head_bar {
  opacity: 0;
  pointer-events: none;
}

/* Show search box when active */
.show-search .search-box {
  opacity: 1;
  pointer-events: auto;
  transform: scaleX(1) scaleY(1) translateY(0);
}

/* Search button active style */
.search .serchBtn.active {
  transition: background 0.25s, box-shadow 0.25s;
}

/* Connect button and box visually */
.search .serchBtn.active {
  z-index: 11;
}

header {
  background: #0a0a25;
  color: white;
  display: flex;
  justify-content: center;
}

.top_bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 0;
}

.logo a img {
  width: 50px;
  margin: 0 15px;
}

.head_bar {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  border-radius: 15px;
  background: rgba(248, 248, 248, 0.2);
  align-items: center;
  padding: 15px 50px;
}

.search {
  margin: 0 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.head_bar li {
  display: flex;
  text-align: center;
  justify-content: center;
}

.head_bar li a {
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s ease;

  &:hover {
    color: white;
  }
}

.head_bar li.active_bar {
  color: white !important;
}

.head_bar li.active_bar a {
  color: white !important;
}

.serchBtn {
  background: rgba(248, 248, 248, 0.2);
  border-radius: 15px;
  height: 50px;
  width: 50px;
  position: relative;
  overflow: hidden;
  padding: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.serchBtn .cup-fill {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: #ef8d65;
  z-index: 1;
  transition: height 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  pointer-events: none;
}

.cup-icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.cup-icon svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  display: block;
}

.serchBtn:hover .cup-fill {
  height: 100%;
  transition: height 0.3s;
}

.serchBtn {
  background: rgba(248, 248, 248, 0.2);
  border-radius: 15px;
  height: 50px;
  width: 50px;
  position: relative;
  overflow: hidden;
  padding: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.serchBtn img {
  width: 25px !important;
  height: 25px !important;
  display: block;
}

.download_app {
  border-radius: 15px;
  display: flex;
  align-items: center;
  &:hover {
    box-shadow: 0 0 25px rgba(239, 141, 101, 0.6);
  }
}

.download_app a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  background: rgba(248, 248, 248, 0.2);
  color: #fff;
  border-radius: 15px;
  padding: 15px 22px;
  font-size: 0.9rem;
  text-decoration: none;
  align-items: center;
  transition: background 0.3s, color 0.3s;
  z-index: 1;
}

.download_app .cup-text {
  position: relative;
  z-index: 2;
}

.download_app .cup-fill {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: #ef8d65;
  z-index: 1;
  transition: height 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  pointer-events: none;
}

.download_app a:hover .cup-fill {
  height: 100%;
  transition: height 0.3s;
}

.download_app a {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.download_app .cup-text {
  white-space: nowrap;
  display: inline-block;
  position: relative;
  z-index: 2;
}

/* Fly up animation */
.fly-up {
  animation: flyUp 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: 2;
}

@keyframes flyUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  60% {
    transform: translateY(-30px) scale(1.2);
    opacity: 0.6;
  }

  100% {
    transform: translateY(-40px) scale(0.7);
    opacity: 0;
  }
}

/* Fly down animation for new icon */
.fly-down {
  animation: flyDown 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: 2;
}

@keyframes flyDown {
  0% {
    transform: translateY(40px) scale(0.7);
    opacity: 0;
  }

  60% {
    transform: translateY(-8px) scale(1.15);
    opacity: 0.7;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.download_app a:hover .cup-fill.fly-down {
  animation: flyDown 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.download_app a:hover .cup-text {
  color: #fff;
}

.download_app a {
  box-shadow: 0 2px 12px 0 rgba(239, 141, 101, 0.12);
}

.download_app a:active {
  transform: scale(0.97);
}

/* navbar */

.btn-toggle-sidebar {
  display: none;
}

nav.navbar ul {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  padding: 8px;
  background: #fff;
}

.dark-mode nav.navbar ul {
  background: #0b0b2d;
}

nav.navbar ul li {
  position: relative;
  margin: 5px;
  padding: 6px 6px;
  border: 1px solid rgba(239, 141, 101, 0.2);
  border-radius: 10px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navbar-li-color, #fff);
  transition: background 0.3s, color 0.3s;

  &:hover {
    border-radius: 10px;
  }
}

/* Dropdown menu styles */
nav.navbar ul li.has-dropdown {
  position: relative;
}

nav.navbar ul li .dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  /* مسافة أكبر بين العنصر والقائمة */
  right: 1;
  transform: translateY(10px) scaleY(0.95);
  /* تقليل الحركة للسرعة */
  min-width: 190px;
  max-width: 100vw;
  width: max-content;
  background-color: #ffffff !important;
  color: #222a57 !important;
  box-shadow: 0 8px 24px 0 rgba(34, 42, 87, 0.09);
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  padding: 0 0 4px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: opacity 0s, transform 0s;
  /* إزالة أي تأخير */
  overflow: visible;
  z-index: 1003;
  border: 1px solid rgba(239, 141, 101, 0.1);
  /* إضافة حدود خفيفة */
}

.dark-mode nav.navbar ul li .dropdown-menu {
  background-color: #1e1a35 !important;
  color: #fff !important;
}

/* مساحة انتقالية بين العنصر والقائمة */
nav.navbar ul li.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 10px;
  width: 75%;
  height: 14px;
  background: transparent;
  z-index: 1004;
  border-radius: 0 0 15px 15px;
  cursor: pointer;
}

header,
.top_bar {
  overflow: visible !important;
  z-index: 1001;
}

nav.navbar {
  overflow: visible;
  z-index: 1002;
}

/* Dropdown menu items - RTL style */
nav.navbar ul li .dropdown-menu > li {
  margin: 0 auto 0px auto;
  border-radius: 8px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: rtl;
  padding: 0;
  border: none;
  position: relative;
  transition: background 0s, color 0s,
    transform 0s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform: translateY(22px);
  opacity: 0;
}

nav.navbar ul li .dropdown-menu li .dropdown-menu-item-content {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  width: 100%;
  gap: 10px;
  padding: 10px 14px;
}

nav.navbar ul li .dropdown-menu li .dropdown-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  font-size: 12 px;
  margin-left: -30px;
}

nav.navbar ul li .dropdown-menu li .dropdown-menu-text {
  flex: 1;
  text-align: right;
  font-size: 1rem;
  color: inherit;
  font-weight: 500;
}

nav.navbar ul li .dropdown-menu li .dropdown-arrow {
  width: 24px;
  height: 24px;
  margin-left: -30px;
}

/* Submenu styles - appear on the RIGHT side */
nav.navbar ul li .dropdown-menu .submenu {
  position: absolute;
  top: 0;
  right: calc(100% + 8px);
  /* زيادة المسافة بين القوائم */
  width: 90%;
  /* جعل العرض 90% من القائمة الرئيسية */
  min-width: 190px;
  /* حد أدنى للعرض */
  max-width: 100vw;
  background-color: #fff;
  color: #222a57;
  box-shadow: 0 8px 24px 0 rgba(34, 42, 87, 0.09);
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  z-index: 1004;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 4px 0 4px 0;
  transition: opacity 0s, transform 0s;
  /* إزالة أي تأخير */
  transform: translateY(0) scaleY(0.95);
  /* تقليل الحركة للسرعة */
  overflow: visible;
  border: 1px solid rgba(239, 141, 101, 0.1);
}

.dark-mode .dropdown-menu .submenu {
  background-color: #1e1a35 !important;
  color: #fff !important;
}

/* مساحة انتقالية بين القائمة الرئيسية والفرعية */
nav.navbar ul li .dropdown-menu > li.has-submenu::after {
  content: "";
  position: absolute;
  top: 0;
  left: -12px;
  /* نفس المسافة بين القوائم */
  width: 12px;
  height: 120%;
  background: transparent;
  z-index: 1005;
  border-radius: 15px 0 0 15px;
}

/* تحسينات لعدم اختفاء القوائم عند المرور بين الحدود */
nav.navbar ul li.has-dropdown:hover > .dropdown-menu,
nav.navbar ul li.has-dropdown:focus-within > .dropdown-menu,
nav.navbar ul li.has-dropdown.open > .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scaleY(1);
  transition: opacity 0s, transform 0s;
  /* ظهور فوري تماماً */
}

nav.navbar ul li .dropdown-menu > li.has-submenu:hover > .submenu,
nav.navbar ul li .dropdown-menu > li.has-submenu:focus-within > .submenu,
nav.navbar ul li .dropdown-menu > li.has-submenu.open > .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scaleY(1);
  transition: opacity 0s, transform 0s;
  /* ظهور فوري تماماً */
}

/* إزالة أي تأخير في الاختفاء - فوري تماماً */
nav.navbar ul li.has-dropdown > .dropdown-menu,
nav.navbar ul li .dropdown-menu > li.has-submenu > .submenu {
  transition: opacity 0s, transform 0s;
}

/* تحسينات لمحاذاة النص في القوائم الفرعية */
nav.navbar ul li .dropdown-menu .submenu li {
  margin: 0 6px 4px 6px;
  border-radius: 8px;
  background: transparent;
  display: flex;
  direction: rtl;
  justify-content: flex-end;
  padding: 10px 14px;
  border: none;
  text-align: right;
  font-size: 0.95rem;
  color: #222a57;
  font-weight: 500;
  transform: translateY(0);
  opacity: 1;
}

.dark-mode .dropdown-menu .submenu li {
  color: #fff !important;
}

/* تحسينات للعناصر الفرعية عند hover */
nav.navbar ul li .dropdown-menu .submenu li:hover {
  background: rgba(217, 217, 217, 0.5);
  color: #222a57;
  transform: translateY(0);
  transition: all 0s;
  /* استجابة فورية للهوفر */
}

nav.navbar ul li.has-dropdown:hover .dropdown-menu li,
nav.navbar ul li.has-dropdown:focus-within .dropdown-menu li,
nav.navbar ul li.has-dropdown.open .dropdown-menu li {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0s, transform 0s;
}

nav.navbar ul li .dropdown-menu > li.has-submenu:hover > .submenu li,
nav.navbar ul li .dropdown-menu > li.has-submenu:focus-within > .submenu li,
nav.navbar ul li .dropdown-menu > li.has-submenu.open > .submenu li {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0s, transform 0s;
}

nav.navbar ul li .dropdown-menu li {
  padding: 1px 18px;
  color: inherit;
  background: transparent;
  border-radius: 8px;
  margin: 5px 5px 3px;
  font-size: 1rem;
  border: none;
  text-align: right;
  cursor: pointer;
  opacity: 0;
  transition: background 0s, color 0s,
    transform 0s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform: translateY(22px);
}

nav.navbar ul li .dropdown-menu li:hover {
  background: rgba(217, 217, 217, 0.5);
  color: #222a57;
  transition: background 0s, color 0s;
}

.dark-mode .dropdown-menu li:hover {
  background: #231e41 !important;
  color: #fff !important;
}

/* Staggered animation for dropdown items - إزالة التأخير */
nav.navbar ul li .dropdown-menu li:nth-child(1) {
  transition-delay: 0s;
}

nav.navbar ul li .dropdown-menu li:nth-child(2) {
  transition-delay: 0s;
}

nav.navbar ul li .dropdown-menu li:nth-child(3) {
  transition-delay: 0s;
}

/* cup-fill for navbar li */
.navbar .cup-fill-li {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: rgba(239, 141, 101, 0.2);
  z-index: 1;
  transition: height 0.1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  pointer-events: none;
  border-radius: 10px;
}

nav.navbar ul li:hover .cup-fill-li {
  height: 100%;
  transition: height 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

nav.navbar ul li a {
  display: flex;
  flex-direction: row;
  gap: 7px;
  align-items: center;
  position: relative;
  z-index: 2;
  color: inherit;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 500;
}

nav.navbar ul li img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  transition: filter 0.5s;
  color: #0a0a25 !important;
}

:root.dark-mode nav.navbar ul li img {
  filter: brightness(0) invert(1);
}

/* Light/Dark mode for navbar li */
:root:not(.dark-mode) nav.navbar ul li {
  --navbar-li-bg: #fff;
  --navbar-li-color: rgba(34, 42, 87, 1);
}

:root.dark-mode nav.navbar ul li {
  --navbar-li-bg: rgba(34, 42, 87, 1);
  --navbar-li-color: #fff;
}

.dropdown-arrow {
  color: rgba(34, 42, 87, 1);
  opacity: 0.9;
  font-size: 12px;
}

.dark-mode .dropdown-arrow {
  color: #fff;
}

.text-center {
  display: flex !important;
  justify-content: flex-start !important;
}

/* Footer */

footer {
  position: relative;
  height: 100%;
}

.line_org1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 46.79%;
  height: 30px;
  border-radius: 26px 0 0 0;
  background: #ef8d65;
}

.line_org2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 46.79%;
  height: 30px;
  border-radius: 0 26px 0 0;
  background: #ef8d65;
}

.circle_white {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: #f4f4f4;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
}

.dark-mode .circle_white {
  background: var(--circle-bg-dark);
}

.up_page {
  display: flex;
  justify-content: center;
  align-items: center;
}

.up_page img {
  cursor: pointer;
  width: 80px;
  z-index: 1002;
  transition: transform 0.2s;
}

@keyframes fanSpin {
  0% {
    transform: rotate(0deg);
    animation-timing-function: ease-in;
  }

  30% {
    transform: rotate(180deg);
    animation-timing-function: ease-out;
  }

  60% {
    transform: rotate(540deg);
    animation-timing-function: ease-in;
  }

  100% {
    transform: rotate(1080deg);
    animation-timing-function: ease-out;
  }
}

.up_page img.horse-anim {
  animation: fanSpin 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

.footer {
  position: absolute;
  top: 30px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: rgba(10, 10, 37, 1);
}

.aboutFooter {
  background: rgba(10, 10, 37, 1);
  color: white !important;
}

.aboutFooter .logo {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  margin: 30px 500px;
  flex-direction: row-reverse;
}

.aboutFooter .logo p {
  font-size: 3rem;
}

.aboutFooter .logo a img {
  width: 118px;
  height: 118px;
  animation: slow-heartbeat 18s ease-in-out infinite;
}

@keyframes slow-heartbeat {
  0% {
    transform: scale(1);
  }

  20% {
    transform: scale(1.08);
  }

  40% {
    transform: scale(0.93);
  }

  60% {
    transform: scale(1.08);
  }

  80% {
    transform: scale(0.97);
  }

  100% {
    transform: scale(1);
  }
}

.textFooter {
  display: flex;
  align-items: center;
  justify-content: end;
  margin: 0px 360px;
  text-align: center;
}

.textFooter p {
  color: #536bcc;
  width: 420px;
  font-size: 1.1rem;
  margin-bottom: 5px;
  line-height: 25px;
}

.socialMedia {
  display: flex;
  align-items: center;
  justify-content: end;
  margin: 20px 385px;
  gap: 20px;
  flex-direction: row-reverse;
  padding: 0 0 25px;
}

.socialMedia a {
  width: 50px;
  height: 50px;
  border-radius: 20px;
  border: 1.5px solid #536bcc;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;

  &:hover {
    border: 1.5px solid #ef8d65;
  }
}

.socialMedia a img {
  width: 25px;
  height: 25px;
  padding: 100%;

  &:hover {
    filter: brightness(0) invert(1);
  }
}

.socialMedia a img.youtube {
  width: 33px;
  height: 33px;
}

.socialMedia a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: #ef8d65;
  border-radius: 25px;
  z-index: 0;
  transition: height 0.3s ease;
}

.socialMedia a:hover::before {
  height: 100%;
}

.socialMedia a > * {
  position: relative;
  z-index: 1;
}

.upper_footer {
  background: #f4f4f4;
}

.dark-mode .upper_footer {
  background: #111322;
}

.line_white1 {
  position: absolute;
  top: 484px;
  right: 0;
  width: 100%;
  height: 1px;
  border-top: 1px solid #d9d9d966;
}

.reverse {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 360px 0 300px;
  gap: 20px;
  flex-direction: row-reverse;
  padding: 7px 0;
}

.linksFooter {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  position: absolute;
  top: 250%;
  left: 46%;
  transform: translate(-50%, -50%);
  z-index: 1002;
  flex-direction: row-reverse;
  text-align: right;
  gap: 60px;
}

.speed_links {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.speed_links span {
  font-size: 1.4rem;
  color: #ef8d65;
  font-weight: 500;
}

.speed_links ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.speed_links ul li a {
  position: relative;
  /* لازم */
  color: #9c9cab;
  transition: color 0.3s ease;
  text-decoration: none;
}

.speed_links ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 100%;
  width: 0;
  height: 1px;
  background-color: white;
  transition: all 0.5s ease;
}

.speed_links ul li a:hover {
  color: white;
}

.speed_links ul li a:hover::after {
  left: 0;
  /* يرجع لبداية الكلمة */
  width: 100%;
  /* يكبر لحد ما يغطي الكلمة */
}

.contact_us {
  margin-top: -15px;
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.contact_us span {
  font-size: 1.4rem;
  color: #ef8d65;
  font-weight: 500;
}

.contact_us ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact_us ul li a {
  position: relative;
  color: #9c9cab;
  transition: color 0.3s ease;
  text-decoration: none;
}

.contact_us ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 100%;
  width: 0;
  height: 1px;
  background-color: white;
  transition: all 0.5s ease;
}

.contact_us ul li a:hover {
  color: white;
}

.contact_us ul li a:hover::after {
  left: 0;
  width: 100%;
}

.subscripe {
  position: absolute;
  top: 250px;
  display: flex;
  gap: 15px;
  flex-direction: column;
  width: 380px;
  align-items: center;
}

.subscripe span {
  font-size: 0.6rem;
  width: 100%;
  text-align: center;
  font-weight: 500;
}

.form_subs {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscripe input {
  width: 222px;
  height: 45px;
  border-radius: 8px;
  text-align: center;
  margin: auto;
  margin-right: 0;
  padding: 0 32px 0 10px;
  background: #231e41;
  border: none;
  color: #fff !important;

  &:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
  }
}

.subscripe input::placeholder {
  color: #a1a6d3 !important;
  opacity: 1;
}

.subscripe button {
  font-size: 1rem;
  font-weight: 500;
  margin-left: -23.5px;
  width: 90px;
  border-radius: 0 8px 8px 0;
  height: 45px;
  background: #ef8d65;
  color: white;
  transition: 0.3s ease;

  &:hover {
    scale: 1.05;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }

  &:active {
    scale: 1;
    box-shadow: none;
  }
}

.appFooter {
  position: absolute;
  top: 43px;
  left: 300px;
  color: white;
  gap: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.down_app {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin-left: 0;
}

.down_app button {
  font-size: 1rem;
  background: transparent;
  color: #ef8d65;
  border: 2px solid #ef8d65;
  width: 160px;
  height: 60px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;

  &:hover {
    background: #ef8d65;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(239, 141, 101, 0.6);
  }

  &:active {
    transform: scale(1);
    box-shadow: none;
  }
}

.img_app img {
  height: 310px;
}

li {
  position: relative;
}

.fill_ {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  pointer-events: none;
  z-index: 1;
  transition: border 0.15s;
  border-radius: 10px;
}

.fill_::after {
  content: "";
  position: absolute;
  left: -1px;
  bottom: 1px;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: #fce8e0;
  border-radius: 10px;
  z-index: 1;
  transition: opacity 0.15s;
  pointer-events: none;
}

.dark-mode .fill_::after {
  background: var(--fill-after-dark);
}

li:hover .fill_ {
  border: 1px solid transparent;
  border-radius: 10px;
}

li:hover .fill_::after {
  opacity: 1;
}

.menu-toggle {
  display: none;
}

a.youtbe_color {
  position: relative;
}

a.youtbe_color::before {
  content: "";
  position: absolute;
  background: #fe0032 !important;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  border-radius: 16px;
  z-index: 0;
  transition: height 0.3s ease;
}

/* النص فوق العنصر */
a.youtbe_color::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fe0032;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 2px;
  white-space: nowrap;
  z-index: 1;
  font-family: Arial, sans-serif;
}

.whatsapp_color img,
.x_color img,
.linkedin_color img {
  filter: brightness(0) invert(0.85) sepia(0) saturate(0) hue-rotate(0deg);
  transition: 0.3s ease;
}

.dark-mode .whatsapp_color img,
.dark-mode .x_color img,
.dark-mode .linkedin_color img {
  filter: brightness(0) invert(1);
  transition: 0.3s ease;
}

a.whatsapp_color::before {
  background: #25d366 !important; /* لون واتساب الرسمي */
}

a.x_color::before {
  background: #000000 !important; /* X (تويتر سابقاً) لونه الأسود */
}

a.linkedin_color::before {
  background: #0a66c2 !important; /* لون لينكد إن الرسمي */
}

a.tiktok_color::before {
  border-radius: 16px;
  background: #6230bd !important;
}

a.google_play_color::before {
  border-radius: 16px;
  background: linear-gradient(45deg, #4285f4, #34a853, #fbbc05, #ea4335);
}

a.instagram_color::before {
  border-radius: 16px;
  background: linear-gradient(
    45deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
}

a.facebook_color::before {
  border-radius: 16px;
  background: linear-gradient(45deg, #1877f2, #3b5998);
}

a.youtbe_color:hover {
  border: 1.5px solid #fe0032 !important;
}

a.tiktok_color:hover {
  border: 1.5px solid #6230bd !important;
}

a.google_play_color:hover {
  border: 1.5px solid #4285f4 !important;
}

a.instagram_color:hover {
  border: 1.5px solid #962fbf !important;
}

a.facebook_color:hover {
  border: 1.5px solid #1877f2 !important;
}

/* =================== Responsive Design =================== */
/* Footer */
@media (max-width: 1770px) {
  body {
    min-width: 1770px;
  }

  .line_org1,
  .line_org2 {
    max-width: 46.45%;
    min-width: 46%;
  }

  .footer {
    top: 30px;
    height: 91%;
  }

  .aboutFooter .logo {
    margin: 3% 7%;
  }

  .aboutFooter .logo a img {
    width: 75%;
    align-items: center;
    justify-content: center;
  }

  .textFooter {
    /* margin-right: 7%; */
    margin-top: -35px;
  }

  .textFooter p {
    min-width: 30%;
    font-size: 15px;
    text-align: center;
    margin-bottom: 0px;
  }

  .socialMedia {
    margin-right: 8%;
    gap: 15px;
  }

  .socialMedia a {
    width: 50px;
    height: 50px;
  }

  .socialMedia a img {
    width: 25px;
    height: 25px;
  }

  .line_white1 {
    top: 605%;
  }

  .reverse {
    margin: -8px 5%;
  }

  .linksFooter {
    top: 225%;
    left: 50%;
    gap: 85px;
  }

  .speed_links ul {
    gap: 12px;
  }

  .contact_us {
    gap: 12px;
  }

  .contact_us ul {
    gap: 10px;
  }

  .subscripe {
    top: 250px;
  }

  .subscripe input {
    width: 250px;
    padding: 0 32px 0 10px;
  }

  .subscripe button {
    font-size: 0.9rem;
  }

  .appFooter {
    top: 25px;
    left: 180px;
    gap: 19px;
  }

  .down_app {
    gap: 15px;
  }

  .down_app span {
    font-size: 16px;
    width: 100%;
  }

  .down_app button {
    width: 150px;
    height: 50px;
    font-size: 16px;
  }

  .img_app img {
    display: block;
  }
}

@media (max-width: 1366px) {
  body {
    min-width: 1366px;
  }

  .line_org1,
  .line_org2 {
    max-width: 45.52%;
    min-width: 45.52%;
  }

  .footer {
    top: 30px;
    height: 91%;
  }

  .aboutFooter .logo {
    margin: 2% 5%;
  }

  .aboutFooter .logo p {
    font-size: 1.8rem;
    font-weight: 500;
  }

  .aboutFooter .logo a img {
    width: 75%;
    align-items: center;
    justify-items: center;
  }

  .textFooter {
    margin-right: 7%;
    margin-top: -35px;
  }

  .textFooter p {
    max-width: 40%;
    font-size: 15px;
    margin-bottom: 0px;
  }

  .socialMedia {
    margin-right: 8%;
    gap: 15px;
  }

  .socialMedia a {
    width: 40px;
    height: 40px;
  }

  .socialMedia a img {
    width: 20px;
    height: 20px;
  }

  .socialMedia a img.youtube {
    width: 28px;
    height: 28px;
  }

  .line_white1 {
    top: 565%;
  }

  .reverse {
    margin: -8px 5%;
  }

  .linksFooter {
    top: 225%;
    left: 50%;
    gap: 85px;
  }

  .speed_links ul {
    gap: 12px;
  }

  .contact_us {
    gap: 12px;
  }

  .contact_us ul {
    gap: 10px;
  }

  .subscripe {
    top: 230px;
  }

  .subscripe input {
    width: 250px;
    padding: 0 32px 0 10px;
  }

  .subscripe button {
    font-size: 0.9rem;
  }

  .appFooter {
    top: 25px;
    left: 85px;
    gap: 19px;
  }

  .down_app {
    gap: 15px;
  }

  .down_app span {
    font-size: 15px;
    width: 100%;
  }

  .down_app button {
    width: 150px;
    height: 50px;
    font-size: 16px;
  }

  .img_app img {
    display: block;
    width: 246px;
  }
}

@media (max-width: 1148px) {
  body {
    min-width: 1148px;
  }

  .line_org1,
  .line_org2 {
    max-width: 44.7%;
    min-width: 44.7%;
  }

  .footer {
    top: 30px;
    height: 91%;
  }

  .aboutFooter .logo {
    margin: 1% 1%;
  }

  .aboutFooter .logo p {
    font-size: 1.8rem;
    font-weight: 500;
  }

  .aboutFooter .logo a img {
    width: 75%;
  }

  .textFooter {
    margin-right: 3.5%;
    margin-top: -15px;
  }

  .textFooter p {
    max-width: 45%;
    font-size: 15px;
    margin-bottom: 10px;
  }

  .socialMedia {
    margin-right: 5%;
    gap: 15px;
  }

  .socialMedia a {
    width: 40px;
    height: 40px;
  }

  .socialMedia a img {
    width: 20px;
    height: 20px;
  }

  .socialMedia a img.youtube {
    width: 28px;
    height: 28px;
  }

  .line_white1 {
    top: 565%;
  }

  .reverse {
    margin: -8px 5%;
  }

  .linksFooter {
    top: 225%;
    left: 50%;
    gap: 85px;
  }

  .speed_links ul {
    gap: 12px;
  }

  .contact_us {
    gap: 12px;
  }

  .contact_us ul {
    gap: 10px;
  }

  .subscripe {
    top: 230px;
  }

  .subscripe input {
    width: 250px;
    padding: 0 32px 0 10px;
  }

  .subscripe button {
    font-size: 0.9rem;
  }

  .appFooter {
    top: 25px;
    left: 45px;
    gap: 19px;
  }

  .down_app {
    gap: 15px;
  }

  .down_app span {
    font-size: 15px;
    width: 100%;
  }

  .down_app button {
    width: 150px;
    height: 50px;
    font-size: 16px;
  }

  .img_app img {
    display: block;
    width: 246px;
  }
}

@media (max-width: 1024px) {
  body {
    min-width: 1024px;
  }

  .line_org1,
  .line_org2 {
    max-width: 44%;
    min-width: 44%;
  }

  .footer {
    top: 30px;
    height: 91%;
  }

  .aboutFooter .logo {
    margin: 1% 1%;
  }

  .aboutFooter .logo p {
    font-size: 1.8rem;
    font-weight: 500;
  }

  .aboutFooter .logo a img {
    width: 75%;
  }

  .textFooter {
    margin-right: 3.5%;
    margin-top: 0px;
  }

  .textFooter p {
    max-width: 45%;
    width: 100%;
    min-width: 45%;
    font-size: 14px;
    margin-bottom: 8px;
  }

  .socialMedia {
    margin-right: 5%;
    gap: 15px;
  }

  .socialMedia a {
    width: 40px;
    height: 40px;
  }

  .socialMedia a img {
    width: 20px;
    height: 20px;
  }

  .socialMedia a img.youtube {
    width: 28px;
    height: 28px;
  }

  .line_white1 {
    top: 586%;
  }

  .reverse {
    margin: -25px 5%;
  }

  .linksFooter {
    top: 225%;
    left: 50%;
    gap: 25px;
  }

  .speed_links ul {
    gap: 12px;
  }

  .contact_us {
    gap: 12px;
  }

  .contact_us ul {
    gap: 10px;
  }

  .subscripe {
    top: 245px;
    right: -30px;
  }

  .subscripe span {
    font-size: 0.6rem;
    width: 80%;
    text-align: center;
    font-weight: 500;
  }

  .subscripe input {
    width: 185px;
    padding: 0 32px 0 10px;
  }

  .subscripe button {
    font-size: 0.9rem;
  }

  .appFooter {
    top: 41px;
    left: 25px;
    gap: 19px;
  }

  .down_app {
    gap: 15px;
  }

  .down_app span {
    font-size: 15px;
    width: 100%;
  }

  .down_app button {
    width: 150px;
    height: 50px;
    font-size: 16px;
  }

  .img_app img {
    display: block;
    width: 246px;
  }
}

@media (max-width: 820px) {
  body {
    min-width: 800px;
  }

  .line_org1,
  .line_org2 {
    max-width: 42.4%;
    min-width: 42.4%;
  }

  .footer {
    top: 30px;
    height: 91%;
  }

  .aboutFooter .logo {
    margin: 1% 22%;
  }

  .aboutFooter .logo p {
    font-size: 1.4rem;
    font-weight: 500;
    display: none;
  }

  .aboutFooter .logo a img {
    width: 55%;
  }

  .textFooter {
    margin-right: 2.5%;
    margin-top: -25px;
  }

  .textFooter p {
    min-width: 25%;
    font-size: 14px;
    margin-bottom: 8px;
    margin-right: 38%;
  }

  .socialMedia {
    margin: -43% 21.5% 5%;
    margin-right: 25%;
    gap: 15px;
    flex-direction: column;
  }

  .socialMedia a {
    width: 40px;
    height: 40px;
  }

  .socialMedia a img {
    width: 20px;
    height: 20px;
  }

  .socialMedia a img.youtube {
    width: 28px;
    height: 28px;
  }

  .line_white1 {
    top: 570%;
  }

  .reverse {
    margin: -19px 13%;
  }

  .linksFooter {
    top: 275%;
    left: 23%;
    gap: 25px;
  }

  .speed_links ul {
    gap: 12px;
  }

  .contact_us {
    gap: 12px;
  }

  .contact_us ul {
    gap: 10px;
  }

  .subscripe {
    top: 190px;
    right: -30px;
  }

  .subscripe span {
    font-size: 0.6rem;
    width: 70%;
    text-align: center;
    font-weight: 500;
  }

  .subscripe input {
    width: 165px;
    padding: 0 32px 0 10px;
  }

  .subscripe button {
    font-size: 0.9rem;
  }

  .subscripe input::placeholder {
    color: #a1a6d3 !important;
    opacity: 1;
    font-size: 10px;
  }

  .appFooter {
    top: 25%;
    left: 5%;
    gap: 19px;
  }

  .down_app {
    gap: 15px;
  }

  .down_app span {
    font-size: 15px;
    width: 50%;
  }

  .down_app button {
    width: 110px;
    height: 40px;
    font-size: 12px;
  }

  .img_app img {
    display: none;
  }
}

@media (max-width: 440px) {
  body {
    min-width: 440px;
    max-width: 440px;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .head_bar li {
    font-size: 11px;
    width: 100%;
  }

  .title_bot_us {
    margin-right: 28px;
  }

  .nav-or-search {
    width: 98%;
    min-width: -148px;
    max-width: -30px;
  }

  .line_org1,
  .line_org2 {
    max-width: 35.9%;
    min-width: 35.9%;
  }

  .aboutFooter .logo {
    visibility: hidden;
  }

  .aboutFooter .logo p {
    display: none;
  }

  .aboutFooter .logo a img {
    width: 65%;
    display: block;
  }

  .textFooter {
    margin-right: 3.5%;
    margin-top: -25px;
  }

  .textFooter p {
    min-width: 306%;
    font-size: 14px;
    margin-bottom: 230px;
    margin-right: 40%;
  }

  .socialMedia {
    margin: 10% 21.5% -24% !important;
    margin-right: 25%;
    gap: 10px;
    flex-direction: row-reverse;
    padding-bottom: 130px;
  }

  .socialMedia a {
    width: 40px;
    height: 40px;
  }

  .socialMedia a img {
    width: 20px;
    height: 20px;
  }

  .socialMedia a img.youtube {
    width: 28px;
    height: 28px;
  }

  .line_white1 {
    top: 988%;
  }

  .reverse {
    margin: -18px 4%;
    padding-bottom: 76px;
  }

  .linksFooter {
    top: 274%;
    left: 20%;
    gap: 3 5px;
    flex-direction: column;
  }

  .speed_links ul {
    gap: 12px;
  }

  .contact_us {
    gap: 12px;
  }

  .contact_us ul {
    gap: 10px;
  }

  .subscripe {
    top: 380px;
    right: -245px;
  }

  .subscripe span {
    font-size: 0.6rem;
    width: 70%;
    text-align: center;
    font-weight: 500;
  }

  .subscripe input {
    width: 165px;
    padding: 0 32px 0 10px;
  }

  .subscripe button {
    font-size: 0.9rem;
  }

  .subscripe input::placeholder {
    color: #a1a6d3 !important;
    opacity: 1;
    font-size: 10px;
  }

  .appFooter {
    top: 765%;
    left: 18%;
  }

  .down_app {
    gap: 15px;
  }

  .down_app span {
    font-size: 15px;
    width: 100%;
  }

  .down_app button {
    width: 110px;
    height: 40px;
    font-size: 12px;
  }

  .img_app img {
    display: none;
  }

  /* header */

  .top_bar {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 0;
    margin: auto;
  }

  .logo a img {
    width: 75px;
    margin: 0 10px;
    display: none;
  }

  .head_bar {
    gap: 20px;
    padding: 11px 27px;
    margin-left: 0;
    margin-right: 3px;
  }

  .search {
    position: absolute;
    top: 77px;
    right: -429px;
    margin: 0 506px;
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
    align-items: center;
  }

  .show-search {
    margin: 1.5% 10% -1.5% 1.5%;
  }

  .serchBtn {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    height: 45px;
    width: 45px;
    position: relative;
    overflow: hidden;
    padding: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dark-mode .serchBtn {
    background: rgba(248, 248, 248, 0.2);
  }

  .nav-or-search .search-box {
    padding: 11px 27px !important;
    margin-right: -31px !important;
    margin-left: -7px !important;
    margin-bottom: -6px !important;
  }

.ser input {
    font-size: 10px;
}

.ser input:placeholder {
    font-size: 10px;
}

  .serchBtn .cup-fill {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    z-index: 1;
    transition: height 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    pointer-events: none;
  }

  .serchBtn:hover .cup-fill {
    height: 100%;
    transition: height 0.4s;
  }

  .cup-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .serchBtn img {
    width: 25px !important;
    height: 25px !important;
    display: block;
  }

  .download_app {
    display: none;
  }

  /*Sidebar */
  .btn-toggle-sidebar {
    display: block;
  }

  nav.navbar ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1002;
    transition: transform 0.15s ease-in-out;
    padding: 120px 0 100vh;
    width: 100%;
    transform: translateX(100%);
    overflow: scroll;
  }

  nav.navbar ul.active {
    transform: translateX(0);
    display: block;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    top: 0px;
    right: 26px;
    z-index: 1003;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    border-radius: 50%;
    height: 45px;
    width: 45px;
  }

  .menu-toggle:hover {
    background: #ef8d65;
    color: white;
  }

  .dark-mode .menu-toggle {
    background: rgba(248, 248, 248, 0.2);
    color: white;
  }

  nav.navbar ul li a {
    width: 100%;
    justify-content: center;
  }

  .close-menu {
    display: none;
    position: absolute;
    top: 4px;
    left: 19px;
    z-index: 1004;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ef8d65;
    background: #ef8d65;
    color: white;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
  }

  .close-menu:hover {
    background: #e07d55;
  }

  .dark-mode nav.navbar ul {
    background: #0b0b2d;
  }

  nav.navbar ul li {
    margin-right: 35px !important;
    position: relative;
    margin: 5px;
    padding: 6px 6px;
    border: 1px solid rgba(239, 141, 101, 0.2);
    border-radius: 10px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navbar-li-bg, rgba(34, 42, 87, 1));
    color: var(--navbar-li-color, #fff);
    transition: background 0.3s, color 0.3s;

    &:hover {
      border-radius: 10px;
    }
  }

  /* Dropdown menu styles */
  nav.navbar ul li.has-dropdown {
    position: relative;
  }

  nav.navbar ul li .dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    /* مسافة أكبر بين العنصر والقائمة */
    right: 1;
    transform: translateY(20px) scaleY(0.8);
    min-width: 190px;
    max-width: 100vw;
    width: max-content;
    background-color: #ffffff !important;
    color: #222a57 !important;
    box-shadow: 0 8px 24px 0 rgba(34, 42, 87, 0.09);
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
    padding: 0 0 4px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: opacity 0.1s,
      transform 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    overflow: visible;
    z-index: 1003;
    border: 1px solid rgba(239, 141, 101, 0.1);
    /* إضافة حدود خفيفة */
  }

  /* مساحة انتقالية بين العنصر والقائمة */
  nav.navbar ul li.has-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 8px;
    width: 96%;
    height: 14px;
    background: transparent;
    z-index: 1004;
    border-radius: 0 0 15px 15px;
    cursor: pointer;
  }

  /* مساحة انتقالية بين القائمة الرئيسية والفرعية */
  nav.navbar ul li .dropdown-menu > li.has-submenu::after {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    /* نفس المسافة بين القوائم */
    width: 12px;
    height: 120%;
    background: transparent;
    z-index: 1005;
    border-radius: 0 15px 15px 0;
  }
}
