.s-slider-block__title-nav {
  display: none !important;
}



@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&display=swap');

.stats-section {
  background: #fff;
  padding: 50px 20px;
  direction: ltr;
  font-family: 'Cairo', sans-serif;
}

.stats-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 30px;
}

/* الرقم */
.stat-box h3 {
  font-size: 42px;
  font-weight: 800;
  color: #d4a017;
  margin-bottom: 10px;
  line-height: 1;
}

/* النص تحت الرقم */
.stat-box p {
  font-size: 16px;
  font-weight: 600;
  color: #444;
  margin: 0;
}

/* تحسين بسيط للشكل */
.stat-box {
  padding: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-box h3 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}

.why-choose {
  background: #046a3b;
  padding: 60px 20px;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
}

.why-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* TEXT */
.why-text {
  flex: 1;
  color: #fff;
}

.why-text h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
}

.why-text p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.8;
}

.why-btn {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
}

.why-btn:hover {
  background: #fff;
  color: #046a3b;
}

/* GRID */
.why-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* CARD */
.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px;
  border-radius: 14px;
  color: #fff;
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ICON */
.icon {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
  opacity: 0.9;
}

/* TEXT INSIDE CARD */
.why-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-container {
    flex-direction: column;
    text-align: right;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-text h2 {
    font-size: 26px;
  }
}


.faq-section {
  font-family: 'Cairo', sans-serif;
  background: #ffffff;
  padding: 70px 20px;
  direction: rtl;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.faq-header {
  text-align: right;
  margin-bottom: 40px;
}

.faq-header span {
  color: #d4a017;
  font-weight: 700;
  font-size: 14px;
}

.faq-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0a5f3c;
  margin: 10px 0;
}

.faq-header p {
  color: #666;
  font-size: 14px;
}

/* GRID */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ITEM */
.faq-item {
  background: #f6fffb;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid #e6f3ee;
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 16px 18px;
  text-align: right;
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ICON + */
.faq-question::after {
  content: "+";
  font-size: 18px;
  color: #0a5f3c;
}

/* ANSWER */
.faq-answer {
  padding: 0 18px 15px 18px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  display: none;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question::after {
  content: "−";
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-header h2 {
    font-size: 24px;
  }
}



.testimonials {
  font-family: 'Cairo', sans-serif;
  text-align: center;
  padding: 70px 20px;
  background: #fff;
  direction: rtl;
}

.testimonials-header span {
  color: #d4a017;
  font-weight: 700;
  font-size: 14px;
}

.testimonials-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0a5f3c;
  margin: 10px 0;
}

.testimonials-header p {
  color: #777;
  font-size: 14px;
}

/* WRAPPER */
.testimonials-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  position: relative;
}

/* CARD */
.testimonial-card {
  width: 420px;
  background: #f7fffb;
  border-radius: 18px;
  padding: 25px;
  position: absolute;
  opacity: 0;
  transform: scale(0.95);
  transition: 0.4s ease;
  border: 1px solid #e6f3ee;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  position: relative;
}

/* QUOTE */
.quote {
  font-size: 60px;
  color: #0a5f3c;
  line-height: 1;
}

/* TEXT */
.testimonial-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin: 15px 0;
}

/* USER */
.user {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.user h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.user span {
  font-size: 12px;
  color: #888;
}

/* NAV */
.testimonials-nav {
  margin-top: 25px;
}

.testimonials-nav button {
  background: #0a5f3c;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.testimonials-nav button:hover {
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonial-card {
    width: 90%;
  }

  .testimonials-header h2 {
    font-size: 24px;
  }
}




.title-section {
  font-family: 'Cairo', sans-serif;
  text-align: center;
  padding: 40px 20px;
  direction: rtl;
  background: #fff;
}

.sub-title {
  color: #d4a017;
  font-weight: 700;
  font-size: 22px;
  display: block;
  margin-bottom: 10px;
}

/* MAIN TITLE */
.main-title {
  font-size: 50px;
  font-weight: 800;
  color: #046a3b;
  margin: 0;
  line-height: 1.4;
}

/* HIGHLIGHT WORD */
.highlight-word {
  position: relative;
  display: inline-block;
  z-index: 1;
  padding: 0 6px;
}

/* yellow brush-like background */
.highlight-word::before {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  top: 55%;
  height: 60%;
  background: #f2d28a; /* لون قريب من الصورة */
  transform: translateY(-50%) rotate(-2deg);
  z-index: -1;
  border-radius: 4px;
  opacity: 0.9;
}

/* DESCRIPTION */
.desc {
  color: #666;
  font-size: 18px;
  margin-top: 10px;
}


.s-block.s-block-trust-testimonials {
  background-color: #ffffff !important;
}

section.s-block.s-block-trust-testimonials {
  background-color: #ffffff !important;
}


/* ===== اللوجو على اللاب ===== */
.navbar-brand img {
  height: 60px !important;   /* كبره هنا */
  width: auto !important;
  object-fit: contain;
}

/* ===== اللاب توب (1024px وفوق) ===== */
@media (min-width: 1024px) {
  .navbar-brand img {
    height: 70px !important;
  }
}

/* ===== التابلت ===== */
@media (max-width: 1023px) {
  .navbar-brand img {
    height: 55px !important;
  }
}

/* ===== الموبايل ===== */
@media (max-width: 768px) {
  .navbar-brand img {
    height: 45px !important;
  }
}

/* ===== موبايل صغير ===== */
@media (max-width: 480px) {
  .navbar-brand img {
    height: 40px !important;
  }


@media (max-width: 767px) {
  .carousel-slider:not(#photos-0-slider) .swiper:where([dir=rtl], [dir=rtl] *),
  salla-slider[type]:not(.hydrated):not(#photos-0-slider) .swiper > div > div:where([dir=rtl], [dir=rtl] *),
  salla-slider[type]:not(.hydrated):not(#photos-0-slider) > div:where([dir=rtl], [dir=rtl] *) {
    padding-left: 14rem !important;
  }
}



  @media (max-width: 767px) {
  .s-button-primary-outline {
    color: var(--color-primary) !important;
    fill: var(--color-primary) !important;
    font-size: 12px !important;
  }
}



@media (max-width: 480px) {
  .s-block-photos-album__small-image {
    width: 102% !important;
    height: 97% !important;
    object-fit: inherit !important;
    transition: transform 0.4s ease !important;
  }
}

  /* Categories Custom Section */
.ak-categories-section {
  width: 100%;
  padding: 55px 20px 65px;
  background: #f8f4ef;
  direction: rtl;
}

.ak-categories-container {
  max-width: 1100px;
  margin: 0 auto;
}

.ak-section-heading {
  width: 100%;
  text-align: right;
  margin-bottom: 55px;
}

.ak-section-heading h2 {
  display: inline-block;
  position: relative;
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
}

.ak-section-heading span {
  display: block;
  width: 76px;
  height: 10px;
  margin-top: 5px;
  margin-right: 0;
  background: url("data:image/svg+xml,%3Csvg width='90' height='14' viewBox='0 0 90 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6C20 12 39 12 58 7C70 4 79 3 87 5' stroke='%23759b58' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M8 2C25 8 44 8 65 3' stroke='%23759b58' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ak-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 240px);
  justify-content: center;
  gap: 28px;
}

.ak-category-card {
  height: 260px;
  padding: 28px 18px 20px;
  background: #f8f4ef;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ak-category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(117, 155, 88, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.ak-category-image {
  width: 160px;
  height: 160px;
  margin-bottom: 22px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}

.ak-category-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.35s ease;
}

.ak-category-card:hover .ak-category-image img {
  transform: scale(1.06);
}

.ak-category-card h3 {
  margin: 0;
  color: #111;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

/* Tablet */
@media (max-width: 992px) {
  .ak-categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .ak-category-card {
    height: 240px;
  }

  .ak-category-image {
    width: 140px;
    height: 140px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .ak-categories-section {
    padding: 35px 14px 45px;
  }

  .ak-section-heading {
    margin-bottom: 30px;
  }

  .ak-section-heading h2 {
    font-size: 22px;
  }

  .ak-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .ak-category-card {
    height: 210px;
    padding: 18px 10px 15px;
  }

  .ak-category-image {
    width: 120px;
    height: 120px;
    margin-bottom: 16px;
  }

  .ak-category-card h3 {
    font-size: 15px;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .ak-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ak-category-card {
    height: 190px;
  }

  .ak-category-image {
    width: 105px;
    height: 105px;
  }

  .ak-category-card h3 {
    font-size: 14px;
  }
}


  grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .ak-category-card {
    height: 210px;
    padding: 18px 10px 15px;
  }

  .ak-category-image {
    width: 120px;
    height: 120px;
    margin-bottom: 16px;
  }

  .ak-category-card h3 {
    font-size: 15px;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .ak-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ak-category-card {
    height: 190px;
  }

  .ak-category-image {
    width: 105px;
    height: 105px;
  }

  .ak-category-card h3 {
    font-size: 14px;
  }
}



/* ===== SECTION BACKGROUND ===== */
.clean-categories {
  width: 100%;
  background: #fff;
  padding: 50px 20px;
}

/* ===== CONTAINER ===== */
.clean-container {
  max-width: 1100px;
  margin: auto;
}

/* ===== TITLE ===== */
.clean-title {
  text-align: right;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #111;
  position: relative;
}

.clean-title::after {
  content: "";
  width: 70px;
  height: 4px;
  margin-top: 10px;
  background: #6aa84f;
  position: absolute;
  bottom: -10px;
  right: 0;
  border-radius: 10px;
}

/* ===== GRID ===== */
.clean-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
}

/* ===== ITEM ===== */
.clean-item {
  text-decoration: none;
  text-align: center;
  color: #111;
  transition: 0.3s ease;
}

.clean-item:hover {
  transform: translateY(-5px);
}

/* ===== CIRCLE IMAGE ===== */
.clean-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.clean-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}

.clean-item:hover img {
  transform: scale(1.08);
}

/* ===== TEXT ===== */
.clean-item span {
  display: block;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 700;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .clean-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ثلاث أعمدة */
    gap: 15px; /* المسافة بين الكروت */
    justify-items: center; /* يحافظ على الكروت في الوسط */
  }

  .clean-img {
    width: 100px;  /* حجم الصورة */
    height: 100px;
  }

  .clean-item span {
    font-size: 14px; /* حجم الخط */
  }
}




salla-slider.photos-slider .swiper {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}