@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700&display=swap");
:root {
  --light: #f5f5f5;
  --dark: #212121;
  --primary: #1b5e20;
  --secondary: #593b32;
  --accent: #ffb300;
}
body {
  font-family: "Tajawal", sans-serif !important;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden !important;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

h1,
h2 {
  font-family: inherit !important;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: bold;
}

.heading_container h2 span {
  color: var(--primary);
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.navbar {
  z-index: 9999 !important;
}

.hero_area::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1;
  /* gradient above image, below content */
  pointer-events: none;
  /* let clicks pass through */
}

.bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero_area .bg-box {
  /* ensure the background image is the bottom layer */
  z-index: 0;
}

/* place hero content above the gradient overlay */
.hero_area > *:not(.bg-box) {
  position: relative;
  z-index: 2;
}

.bg-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sub_page .hero_area {
  min-height: auto;
}

.sub_page .hero_area .bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sub_page .hero_area .bg-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: right top;
  object-position: right top;
}

.header_section {
  padding: 15px 0;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}
.navbar-dark .navbar-nav .nav-link {
  position: relative;
  margin-left: 25px;
  padding: 35px 0;
  font-size: 15px;
  color: var(--light) !important;
  text-transform: uppercase;
  font-weight: 500;
  outline: none;
  transition: 0.5s;
}

/* حالة Sticky */
.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
}

/* تأثيرات hover */
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

/* الشعار */
.navbar-dark .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top.navbar-dark .navbar-brand img {
  max-height: 45px;
}

/* منع توسع الـ collapse */
.navbar-collapse {
  flex-grow: 0 !important;
}

.navbar-brand {
  font-family: inherit !important;
  justify-items: center;
  display: grid;
  justify-content: center;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 20px;
  color: var(--light);
}

.custom_nav-container {
  padding: 10px;
  background: var(--secondary);
  opacity: 0.7;
  border-radius: 50px;
}

.custom_nav-container .navbar-nav {
  padding-left: 18%;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 20px;
  color: var(--light);
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: var(--primary);
}

.custom_nav-container .nav_search-btn {
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  color: var(--light);
  margin: 0 10px;
}

.custom_nav-container .nav_search-btn:hover {
  color: var(--primary);
}

.user_option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 15px;
}

.user_option a {
  margin: 0 10px;
}

.user_option .user_link {
  color: var(--light);
}

.user_option .user_link:hover {
  color: var(--primary);
}

.user_option .cart_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.user_option .cart_link svg {
  width: 17px;
  height: auto;
  fill: var(--light);
  margin-bottom: 2px;
}

.user_option .cart_link:hover svg {
  fill: var(--primary);
}

.user_option .order_online {
  display: inline-block;
  padding: 8px 30px;
  background-color: var(--primary);
  color: var(--light);
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.user_option .order_online:hover {
  background-color: var(--primary);
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: var(--light);
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--light);
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 45px 0 75px 0;
}

.slider_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: var(--light);
  margin-bottom: 50px;
  text-align: right;
}

.slider_section .detail-box h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.slider_section .detail-box p {
  font-size: 16px;
}

.slider_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: var(--primary);
  color: var(--light);
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 10px;
}

.slider_section .detail-box a:hover {
  background-color: var(--primary);
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider_section .carousel-indicators li {
  background-color: var(--light);
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: var(--primary);
}

.food_section {
  padding-top: 10px;
}

.food_section .filters_menu {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style-type: none;
  margin: 45px 0 20px 0;
}

.food_section .filters_menu li {
  padding: 7px 25px;
  cursor: pointer;
  border-radius: 25px;
}

.food_section .filters_menu li.active {
  background-color: var(--dark);
  color: var(--light);
}

.food_section .box {
  position: relative;
  margin-top: 25px;
  background-color: var(--light);
  border-radius: 10px;
  color: var(--light);
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    var(--light) 25px,
    var(--primary) 25px
  );
}

.food_section .box .img-box {
  background: var(--light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 290px;
  border-radius: 0 0 0 45px;
  margin: -1px;
  overflow: hidden;
  /* الحل الأساسي: إخفاء أي جزء يخرج عن الإطار */
  position: relative;
  /* لضمان أن المحتوى يبقى داخل الإطار */
}

.food_section .box .img-box img {
  max-width: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  transform-origin: center;
  /* جعل نقطة التحول في المركز */
}

.food_section .box .detail-box {
  padding: 25px;
}

.food_section .box .detail-box h5 {
  font-weight: 600;
}

.food_section .box .detail-box p {
  font-size: 15px;
}

.food_section .box .detail-box h6 {
  margin-top: 10px;
}

.food_section .box .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.food_section .box .options a {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: var(--primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.food_section .box .options a svg {
  width: 18px;
  height: auto;
  fill: var(--light);
}

.food_section .box:hover .img-box img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.food_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 45px;
}

.food_section .btn-box a {
  display: inline-block;
  padding: 10px 55px;
  background-color: var(--primary);
  color: var(--light);
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.food_section .btn-box a:hover {
  background-color: var(--primary);
}

.about_section {
  background: var(--dark);
  color: var(--light);
  text-align: right;
}

.about_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about_section .img-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about_section .img-box img {
  width: 100%;
  max-width: 445px;
  position: relative;
  z-index: 2;
}

.about_section .detail-box p {
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: var(--primary);
  color: var(--light);
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  background-color: var(--primary);
}

.book_section {
  position: relative;
}

.book_section .heading_container {
  margin-bottom: 25px;
}

.book_section .form_container .form-control {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 25px;
  border: 1px solid var(--secondary);
  outline: none;
  color: var(--dark);
  border-radius: 5px;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.book_section .form_container .form-control::-webkit-input-placeholder {
  color: var(--dark);
}

.book_section .form_container .form-control:-ms-input-placeholder {
  color: var(--dark);
}

.book_section .form_container .form-control::-ms-input-placeholder {
  color: var(--dark);
}

.book_section .form_container .form-control::placeholder {
  color: var(--dark);
}

.book_section .form_container .nice-select .current {
  font-size: 16px;
}

.book_section .form_container button {
  margin-top: 15px;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 55px;
  background-color: var(--primary);
  color: var(--light);
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.book_section .form_container button:hover {
  background-color: var(--primary);
}

.book_section .map_container {
  width: 100%;
  height: 345px;
  border-radius: 10px;
  overflow: hidden;
}

.book_section .map_container #googleMap {
  height: 100%;
  min-height: 100%;
  width: 100%;
}

/* client section end */
.contact_section .heading_container {
  margin-bottom: 45px;
}

.contact_section .form_container .form-group {
  margin-bottom: 25px;
}

.contact_section .form_container input {
  width: 100%;
  border: none;
  height: 50px;
  padding-left: 25px;
  background-color: transparent;
  border: 1px solid var(--secondary);
  outline: none;
  color: var(--dark);
  border-radius: 5px;
}

.contact_section .form_container input::-webkit-input-placeholder {
  color: var(--secondary);
}

.contact_section .form_container input:-ms-input-placeholder {
  color: var(--secondary);
}

.contact_section .form_container input::-ms-input-placeholder {
  color: var(--secondary);
}

.contact_section .form_container input::placeholder {
  color: var(--secondary);
}

.contact_section .form_container input.message-box {
  height: 120px;
  border-radius: 5px;
}

.contact_section .form_container .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact_section .form_container button {
  margin-top: 10px;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 55px;
  background-color: var(--secondary);
  color: var(--light);
  border-radius: 0px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.contact_section .form_container button:hover {
  background-color: var(--secondary);
}

/* footer section*/
.footer_section {
  background-color: var(--secondary);
  color: var(--light);
  padding: 75px 0 40px 0;
  text-align: center;
}

.footer_section h4 {
  font-size: 28px;
}

.footer_section h4,
.footer_section .footer-logo {
  font-weight: 600;
  margin-bottom: 20px;
  font-family: inherit !important;
}

.footer_section p {
  color: var(--light);
}

.footer_section .footer-col {
  margin-bottom: 30px;
}

.footer_section .footer_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer_section .footer_contact .contact_link_box i {
  margin: 5px 0;
  color: var(--light);
}

.contact_link_box i span {
  padding: 10px;
}

.footer_section .footer_contact .contact_link_box i {
  margin-right: 5px;
}

.footer_section .footer_contact .contact_link_box i:hover {
  color: var(--primary);
}

.footer_section .footer-logo {
  display: block;
  font-weight: bold;
  font-size: 38px;
  line-height: 1;
  color: var(--light);
}

.footer_section .footer_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.footer_section .footer_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--dark);
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: var(--light);
  border-radius: 100%;
  margin: 0 2.5px;
  font-size: 18px;
}

.footer_section .footer_social a:hover {
  color: var(--primary);
}

.footer_section .footer-info {
  text-align: center;
  margin-top: 25px;
}

.footer_section .footer-info p {
  color: var(--light);
  margin: 0;
}

.footer_section .footer-info p a {
  color: inherit;
}

/* App.css */
/* تحسينات الـ Header */
.header_section {
  transition: all 0.3s ease;
}

.scrolled {
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* تحسينات القائمة */
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px !important;
  transition: all 0.3s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.nav-icon {
  font-size: 1.1em;
}

.nav-label {
  font-weight: 500;
}

.active-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link.active .active-indicator {
  width: 80%;
}

.nav-link:hover {
  color: var(--primary) !important;
  transform: translateY(-2px);
}

.nav-link.active {
  color: var(--primary) !important;
  font-weight: 600;
}

/* تحسينات الـ Toggler */
.navbar-toggler {
  border: none;
  padding: 4px 8px;
  transition: all 0.3s ease;
}

.navbar-toggler.active .toggler-icon {
  background: var(--primary);
}

.toggler-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* تحسينات التمرير */
html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
  position: relative;
}

.mobile-controls {
  display: none;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

/* تحسينات responsive */
@media (max-width: 991px) {
  .sticky-top.navbar-dark {
    position: fixed !important;
    background: var(--white) !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    width: 100%;
  }

  .navbar-dark .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-dark .navbar-nav .nav-link,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
  }

  .navbar-dark .navbar-brand img {
    max-height: 45px;
  }
  .navbar-collapse {
    background: var(--light) !important;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
  }

  .nav-link {
    justify-content: center;
    padding: 12px !important;
    border-bottom: 1px solid var(--light);
  }

  .nav-link:last-child {
    border-bottom: none;
  }
  .language-e {
    display: flex !important;
  }
  .mobile-controls {
    display: flex !important;
  }

  .mobile-language-toggle {
    display: flex !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
    z-index: 1001;
  }

  .mobile-overlay {
    display: block;
  }

  .language-overlay {
    display: block;
  }
  .nav-e {
    display: none !important;
  }
  .navbar-toggler {
    color: var(--primary) !important;
  }
}

/* تحسينات الرسوم المتحركة */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  animation: fadeInUp 0.6s ease-out;
}

/* WhatsAppWidget */
/* WhatsApp Button Styles */
.whatsapp-button {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  animation: fadeInUp 0.5s ease-out;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-button.hovered {
  transform: scale(1.05);
}

.whatsapp-icon {
  font-size: 28px;
  color: var(--light);
}

/* تأثير النبض */
.pulse-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid #25d366;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  70% {
    transform: scale(1.2);
    opacity: 0;
  }

  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--light);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  animation: slideInRight 0.3s ease-out;
}

.tooltip-arrow {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid var(--dark);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(10px);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

/* زر الإغلاق المصغر */
.whatsapp-close-mini {
  position: fixed;
  bottom: 90px;
  left: 35px;
  width: 30px;
  height: 30px;
  background: #ff4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  z-index: 1000;
  animation: fadeInUp 0.5s ease-out 0.2s both;
  box-shadow: 0 2px 10px rgba(255, 68, 68, 0.4);
}

.whatsapp-close-mini:hover {
  transform: scale(1.1);
}

/* WhatsApp Widget المتقدم */
.whatsapp-widget {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 1001;
}

.whatsapp-main-button {
  position: relative;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: fadeInUp 0.5s ease-out;
}

.whatsapp-main-button.open {
  transform: rotate(360deg);
}

.whatsapp-main-button .fa-whatsapp {
  font-size: 28px;
  color: var(--light);
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4444;
  color: var(--light);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-5px);
  }

  60% {
    transform: translateY(-3px);
  }
}

/* الويدجت المنبثقة */
.whatsapp-widget-popup {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 300px;
  background: var(--light);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.widget-header {
  background: #075e54;
  color: var(--light);
  padding: 15px;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.company-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.company-avatar {
  width: 40px;
  height: 40px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-details h6 {
  margin: 0;
  font-size: 14px;
}

.status {
  font-size: 12px;
  opacity: 0.8;
}

.status.online {
  color: #4caf50;
}

.close-widget {
  background: none;
  border: none;
  color: var(--light);
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
}

.widget-content {
  padding: 15px;
}

.welcome-message {
  background: #f0f0f0;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.welcome-message p {
  margin: 0 0 5px 0;
  font-size: 14px;
}

.welcome-message small {
  color: #666;
  font-size: 12px;
}

.quick-replies {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}

.quick-reply-btn,
.custom-message-btn {
  background: var(--light);
  border: 1px solid var(--light);
  border-radius: 20px;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 13px;
  text-align: right;
}

.quick-reply-btn:hover,
.custom-message-btn:hover {
  background: #25d366;
  color: var(--light);
  border-color: #25d366;
}

/* تحسينات للجوال */
@media (max-width: 768px) {
  .whatsapp-button,
  .whatsapp-widget {
    bottom: 20px;
    left: 20px;
  }

  .whatsapp-widget-popup {
    width: 280px;
    left: -110px;
  }

  .whatsapp-tooltip {
    display: none;
    /* إخفاء التلميح على الجوال */
  }
}

/* تنسيقات عامة للأيقونات */
.close-btn,
.close-widget-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover,
.close-widget-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}

.close-btn:active,
.close-widget-btn:active {
  transform: scale(0.95);
}

/* تنسيقات الويدجت */
.whatsapp-widget {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 1001;
}

.whatsapp-main-button {
  position: relative;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-main-button.open {
  transform: rotate(360deg);
}

.pulse-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid #25d366;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4444;
  color: var(--light);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}

/* الويدجت المنبثقة */
.whatsapp-widget-popup {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 300px;
  background: var(--light);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease-out;
}

.widget-header {
  background: #075e54;
  color: var(--light);
  padding: 15px;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.company-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.company-avatar {
  width: 40px;
  height: 40px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-details h6 {
  margin: 0;
  font-size: 14px;
}

.status {
  font-size: 12px;
  opacity: 0.8;
}

.status.online {
  color: #4caf50;
}

.close-widget-btn {
  width: 32px;
  height: 32px;
}

.widget-content {
  padding: 15px;
}

.welcome-message {
  background: #f0f0f0;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.quick-replies {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}

.quick-reply-btn,
.custom-message-btn {
  background: var(--light);
  border: 1px solid var(--light);
  border-radius: 20px;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 13px;
  text-align: right;
}

.quick-reply-btn:hover,
.custom-message-btn:hover {
  background: #25d366;
  color: var(--light);
  border-color: #25d366;
}

/* الرسوم المتحركة */
@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  70% {
    transform: scale(1.2);
    opacity: 0;
  }

  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-5px);
  }

  60% {
    transform: translateY(-3px);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* للجوال */
@media (max-width: 768px) {
  .whatsapp-widget {
    bottom: 20px;
    left: 20px;
  }

  .whatsapp-widget-popup {
    width: 280px;
    /* left: -110px; */
  }
}

/* شبكة عرض الأيقونات */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

/* Services Section */
.services_section {
  background-color: var(--light);
}

.service-card {
  background: var(--light);
  border-radius: 15px;
  padding: 30px 25px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--light);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--accent);
  /* center the icon horizontally inside the card */
  width: 100%;
}

.service-content {
  flex: 1;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.4;
  text-align: start;
}

.service-description {
  font-size: 1rem;
  color: var(--secondary);
  line-height: 1.6;
  margin: 0;
  text-align: start;
}

@media (max-width: 768px) {
  .service-card {
    margin-bottom: 20px;
  }
}
/* AboutSection.css */
.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--light) 0%, var(--light) 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(0, 123, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.image-gallery {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-gallery:hover {
  transform: translateY(-5px);
}

.main-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.prev-btn {
  right: 15px;
}

.next-btn {
  left: 15px;
}

.thumbnail-container {
  display: flex;
  padding: 15px;
  background: var(--light);
  border-radius: 0 0 15px 15px;
  gap: 10px;
}

.thumbnail {
  flex: 1;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.thumbnail:hover {
  opacity: 0.9;
}

.thumbnail.active {
  opacity: 1;
  border-color: var(--primary);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-wrapper {
  padding: 20px;
}

.section-header {
  justify-items: center;
}

.section-label {
  display: block;
  color: var(--primary);
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.justify-items-start {
  justify-items: start;
}

.divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 2px;
  margin: 15px 0;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--secondary);
  margin-bottom: 20px;
  text-align: start;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  padding: 20px;
  background: var(--light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn {
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--light);
}

.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: none;
  border: none;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-section {
    padding: 60px 0;
  }

  .stats-container {
    flex-direction: column;
    gap: 20px;
  }

  .cta-buttons {
    flex-direction: column;
  }
  [dir="rtl"] .contact-details-item {
    flex-direction: row-reverse;
  }
}

@media (max-width: 768px) {
  .main-image {
    height: 300px;
  }

  .thumbnail-container {
    flex-wrap: wrap;
  }
  [dir="rtl"] .contact-details-item {
    flex-direction: column;
    text-align: center;
  }
  .thumbnail {
    flex: 0 0 calc(50% - 10px);
  }
}

/* Mobile Controls */
.mobile-controls {
  display: none;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

/* Mobile Language Toggle */
.mobile-language-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  color: var();
  font-size: 1.2rem;
  transition: var(--transition);
  border-radius: 50%;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mobile-language-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--primary);
}

.mobile-language-toggle:active {
  transform: scale(0.95);
}

/* Mobile Language Dropdown */
.mobile-language-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  background: var(--light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  min-width: 140px;
  padding: 0.5rem 0;
  z-index: 1002;
  animation: slideDown 0.2s ease-out;
}
[dir="rtl"] .mobile-language-dropdown {
  left: 0;
}
[dir="ltr"] .mobile-language-dropdown {
  right: 0;
}
.mobile-lang-item {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

.mobile-lang-item:hover {
  background: rgba(136, 180, 78, 0.1);
  color: var(--primary);
}

.mobile-lang-item.active {
  background: rgba(136, 180, 78, 0.15);
  color: var(--primary);
  font-weight: 600;
}

[dir="rtl"] {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] nav {
  direction: rtl;
}
[dir="rtl"] footer {
  direction: rtl;
}

/*** Section Title ***/
.section-title {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  width: 100%;
}

.section-title::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 2px;
  bottom: 0;
  left: calc(25% - 0px);
  background: var(--primary);
}

.section-title::after {
  position: absolute;
  content: "";
  width: 28px;
  height: 28px;
  bottom: -13px;
  left: calc(50% - 13px);
  background: var(--dark);
  border: 10px solid var(--light);
  border-radius: 28px;
}

/*** Footer ***/
.footer {
  color: var(--light);
}

.footer .btn.btn-link {
  display: block;
  margin-block-end: 5px;
  padding: 0;
  text-align: start;
  /* بدلاً من left */
  color: var(--light);
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  width: 100%;
}

/* دعم إضافي للاتجاهات */
.footer[dir="ltr"] .btn.btn-link {
  text-align: left;
}

.footer[dir="rtl"] .btn.btn-link {
  text-align: right;
}

[dir="ltr"] .footer .btn.btn-link::before {
  position: relative;
  content: var(--arrow-icon, "\f105");
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--accent);
  margin-inline-end: 10px;
  margin-inline-start: 10px;
  transition: all 0.3s ease;
}

[dir="rtl"] .footer .btn.btn-link::before {
  position: relative;
  content: var(--arrow-icon, "\f104");
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--accent);
  margin-inline-end: 10px;
  margin-inline-start: 10px;
  transition: all 0.3s ease;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 2px;
  box-shadow: none;
}

.section-title.text-center::before {
  left: 25%;
}

.section-title.text-center::after {
  left: calc(50% - 13px);
}

.me-fa {
  margin-inline-end: 1rem !important;
}

.p-ltr {
  direction: ltr !important;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.contact-details-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px 20px;
}

.contact-details-icon {
  font-size: 2rem;
}

.contact-details-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.contact-details-link {
  color: black;
}

.contact-details-link:hover {
  color: var(--secondary);
}
.contact-details-icon {
  font-size: 2rem;
}

.contact-details-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}
.contact .btn-square {
  width: 100px;
  height: 100px;
  border: 20px solid var(--light);
  background: var(--primary);
  border-radius: 50px;
}
@media (min-width: 992px) {
  .navbar {
    position: absolute;
    top: 0;
    width: 100%;
    background: transparent !important;
    z-index: 9999;
    transition: background 0.4s ease, padding 0.3s ease;
  }

  .navbar.sticky-top {
    position: fixed !important;
    background: var(--secondary) !important; /* خلفية داكنة */
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  position: relative;
  margin-left: 25px;
  padding: 35px 0;
  font-size: 15px;
  color: var(--secondary) !important;
  text-transform: uppercase;
  font-weight: 500;
  outline: none;
  transition: 0.5s;
}
.navbar {
  justify-content: space-between;
}
.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.navbar-dark .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top.navbar-dark .navbar-brand img {
  max-height: 45px;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-dark {
    position: relative;
  }

  .navbar-dark .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-dark .navbar-nav .nav-link,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
  }

  .navbar-dark .navbar-brand img {
    max-height: 45px;
  }
  .bubble-img {
    width: 45px !important;
    height: 45px !important;
  }
  .bubble-img-wrapper {
    width: 50px !important;
    height: 50px !important;
    top: 22px !important;
    right: 30px !important;
  }
  .bubble-img-wrapper::after {
    bottom: -15px !important;
    right: 16px !important;
    border-width: 8px !important;
  }
  .image-slider > div:nth-child(2) {
    height: 200px !important;
  }
}

@media (min-width: 992px) {
  .navbar {
    position: absolute;
    top: 0;
    width: 100%;
    background: transparent !important;
    z-index: 9999;
    transition: background 0.4s ease, padding 0.3s ease;
  }

  /* عند التمرير للأسفل */
  .navbar.sticky-top {
    position: fixed;
    background: var(--light) !important; /* خلفية داكنة */
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
}

.carousel-wrapper {
  position: relative;
  width: 90%;
  margin: 2rem auto;
}

.product-container {
  display: flex;
  overflow-x: scroll;
  scroll-behavior: smooth;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.product-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}

.product-card {
  flex: 0 0 auto;
  width: 250px;
  margin: 0 10px;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  background-color: #fff;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-details {
  padding: 15px;
}

.product-details h5 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--secondary);
  margin-bottom: 15px;
}

.view-more-btn {
  background-color: var(--primary);
  color: var(--light);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.view-more-btn:hover {
  background-color: var(--secondary);
  color: var(--light);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

.left-arrow {
  left: -20px;
}

.right-arrow {
  right: -20px;
}

/* تصميم النافذة المنبثقة */
.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.dialog-content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  width: 90%;
  max-width: 500px;
}

.dialog-content img {
  width: 50%;
  margin-bottom: 1rem;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
.text-primary {
  color: var(--primary);
}
.text-secondary {
  color: var(--secondary);
}
.text-accent {
  color: var(--accent);
}
.text-dark {
  color: var(--dark);
}
.text-light {
  color: var(--light);
}
.btn-primary {
  background: var(--primary);
  color: var(--light);
}
.btn-accent {
  background: var(--accent);
  color: var(--secondary);
}
.btn-accent:hover {
  background: var(--accent);
  opacity: 0.7;
  color: var(--secondary);
}
.bubble-img-wrapper {
  position: absolute;
  top: 31px;
  right: 71px;
  z-index: 1;
  background: white;
  border-radius: 50%; /* شكل دائري */
  border: 0.7px solid #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 95px;
  height: 95px;
}

/* ذيل الفقاعة */
.bubble-img-wrapper::after {
  content: "";
  position: absolute;
  bottom: -24px;
  right: 34px;
  width: 0;
  height: 0;
  border-width: 12px;
  border-style: solid;
  border-color: white transparent transparent transparent;
  filter: drop-shadow(0 -2px 3px rgba(0, 0, 0, 0.1));
}

.bubble-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}
