/*@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Tajawal", sans-serif !important;
  transition: 0.3s;
    font-size: 14px ;
    font-weight: bold;
}
body {
  overflow-x: hidden;
  position: relative;
  width: 100%;
  direction: rtl;
}
button.search-submit{
    border: 0;
}
.search-container,.search-container input{
    width: 100%;
}
.nav-link:focus {
  color: var(--text-clr);
}
:root {
  --yellow-clr: #ffcd05;
  --yellow-bold-clr: #fcb424;
  --gray-clr: #f4f4f4;
  --gray-thickner-clr: #ffffffb2;
  --text-clr: #504e4adc;
  --text-clr-sec: #504e4a;
}
.mobile-menu-container {
  padding: 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: 100dvh;
  background-color: #15181cf3;
  display: none;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
  gap: 20px;
  overflow-y: auto;
  /* close icon */
  .mobile-menu-close-icon {
    cursor: pointer;
    svg {
      width: 30px;
      height: 30px;
      color: #fff;
    }
  }
  /* mobile logo */
  .mobile-logo-container {
    text-align: right;
    img {
      width: 90%;
      height: 100%;
    }
  }
  /* menu mobile */
  .menu-drop-down-collapse-container {
    width: 100%;
    .accordion-item {
      border: none;
      color: #000;
      background-color: transparent !important;
      width: 100%;
      /* button list */
      .accordion-button {
        color: #fff;
        font-weight: bold;
        font-size: 1rem;
        background-color: transparent;
        border-top: 1px dashed #8d8a8a7e;
        border-bottom: 1px dashed #8885857e;
        display: flex;
        align-items: center;
        justify-content: space-between;
        svg {
          color: #fff;
        }
      }
      .accordion-button::after {
        display: none;
      }
      .accordion-button:focus {
        box-shadow: none;
      }
      .no-arrow::after {
        width: 0;
        height: 0;
      }
      /* list container */
      .navigation-menu {
        background-color: transparent;
        border-radius: 8px;
        padding: 0;
        margin: 0;
        list-style: none;
        width: 100%;
      }

      .navigation-menu li {
        width: 100%;
        border-bottom: 1px dashed #444444;
        position: relative;
      }

      .navigation-menu li:last-child {
        border-bottom: none;
      }

      .navigation-menu a {
        width: 100%;
        display: block;
        color: #ffffff;
        text-decoration: none;
        padding: 15px 40px 15px 20px;
        font-size: 16px;
        font-weight: 500;
      }

      .navigation-menu li:hover a {
        color: #ffff00;
      }

      .navigation-menu li:hover::before {
        color: #ffff00;
      }
    }
  }
  /* social media icons */
  .social-media-icons-container {
    padding-right: 5px;
    justify-content: space-around;
    gap: 15px;
    svg {
      cursor: pointer;
      width: 12px;
      height: 12px;
      color: #fff;
    }
  }
}
/* start navbar */
.navbar-container {
  background-color: white;
  width: 90%;
  height: 110px;
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  border-radius: 1rem;
  box-shadow: 0 0 20px 5px#b6b4b450;
}
/* open mobile menu */
.mobile-menu-icon-container {
  cursor: pointer;
  height: 100%;
  text-align: center;
  svg {
    width: 100%;
    height: 100%;
    fill: var(--yellow-clr);
  }
}
/* logo */
.logo-container {
  text-align: center;
  img {
    object-fit: cover;
    width: auto;
    height: 45px;
  }
}

/* navbar menu */
.navbar-menu-container {
  padding: 0;
  height: 100%;
}

.navbar-menu-container ul {
  align-items: center;
  justify-content: center;
  list-style: none;
  height: 100%;
  /* container */
  .drop-down-menu-li {
    height: 100%;
    position: relative;
    /* drop down menu */
    .drop-down-menu-container {
      transition: 0.3s ease;
      opacity: 0;
      height: 0;
      overflow: hidden;
      width: 200px;
      position: absolute;
      top: 200%;
      right: 0;
      background-color: #000;
      display: flex;
      flex-direction: column;
      align-items: start;
      justify-content: space-around;
      a {
        font-size: 0.7rem;
        font-weight: 500;
        padding: 0.7rem 0.9rem;
        width: 100%;
        border-bottom: 1px dashed #c2baba48;
        color: #fff;
        text-decoration: none;
      }
      a:hover {
        color: var(--yellow-clr);
      }
      /* hover to visible menu */
    }
    li:hover ~ .drop-down-menu-container {
      transition: 0.3s ease;
      opacity: 1;
      top: 100%;
      height: auto;
      overflow: auto;
    }
    .drop-down-menu-container:hover {
      opacity: 1;
      top: 100%;
      height: auto;
      overflow: auto;
    }
  }
  li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    a {
      display: flex;
      justify-content: space-between;
      gap: 5px;
      align-items: center;
      padding: 5px 8px;
      font-size: 15px;
      color: #504e4adc;
      font-weight: 600;
      height: 100%;
      svg {
        width: 13px;
        height: 13px;
      }
    }
  }
  .active {
    background-color: #ffcd05 !important;
    a {
      color: #000 !important;
      width: 100% !important;
    }
  }
}
.navbar-container ul li:hover {
  background-color: var(--yellow-bold-clr);
  a {
    color: #000;
  }
}
/* search contaier */
.search-container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  input {
    border: none;
    background-color: var(--gray-clr);
    width: 80%;
    height: 100%;
    padding: 1rem;
    border-radius: 1rem;
    font-size: 1.1rem;
    outline: 2px solid transparent; /* prevent black default flash */
    transition: outline-color 0.2s ease;
  }
  .icon-search-container {
    position: absolute;
    left: 15%;
    top: 32%;
    svg {
      color: var(--text-clr);
    }
  }
}
.search-container input:focus {
  transition: 0.2s ease;
  outline: 2px solid var(--yellow-clr);
}
/* end navbar */

/* start main section */
.main-section .img-container::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000004b;
}
.main-section {
  position: relative;
  height: 100%;
  /* img coatiner */
  .img-container {
    position: relative;
    width: 100%;
    height: 100%;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  /* main section text */
  .main-section-text-btns-container {
    position: absolute;
    top: 27%;
    left: 47%;
    .main-section-text h1 {
      color: #fff;
      font-size: 3rem;
      font-weight: bold;
      text-shadow: 0 0 15px #00000044;
    }
    .main-section-text p {
      color: #fff;
      font-weight: bold;
      text-shadow: 0 0 15px #00000056;
    }
    /* buttons main section */
    .main-section-btns-container {
      width: 50%;
      a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        background-color: var(--yellow-bold-clr);
        color: #fff;
        padding: 12px 24px;
        font-weight: bold;
        font-size: 0.9rem;
      }
    }
  }
  /* free price section */
  .free-price-section-container {
    position: absolute;
    top: 73%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    min-height: 25%;
    border-radius: 1rem;
    h3 {
      font-weight: bold;
      font-size: 1.7rem;
      color: #000;
    }
    /* form */
    .free-price-inputs-container form {
      gap: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      input,
      select {
        transition: 0.2s ease;
        padding: 1rem;
        background-color: var(--gray-clr);
        border: none;
        outline: 2px solid transparent;
      }
      .submit {
        padding: 1rem 2rem;
        background-color: #000;
        color: #fff;
      }
      input:focus,
      select:focus {
        transition: 0.2s ease;
        outline: 2px solid var(--yellow-clr);
      }
    }
  }
  /* numbers on main section */
  .numbers-container {
    margin: 0;
    padding: 12rem 2rem 2rem 2rem !important;
    background-color: #000;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    .number {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      /* title of numbers */
      .number-title {
        font-size: 1rem;
      }
    }
  }
}
/* end main section */

/* start اكتشف section */
.explore-section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
/* title of any content sections */
.title-of-content-section {
  margin-bottom: 1rem;
  color: #000;
  font-size: 35px;
}
/* info of any content section */
.info-of-content-section {
  color: #000;
}
/* swipers section to the fourth */
.swiper-container {
  position: relative;
  padding: 1rem 3rem;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
}
.swiper-container .swiper-wrapper {
  margin-bottom: 3rem;
}
.swiper-card-container {
  height: 250px !important;
  position: relative;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.img-swiper-card-container {
  height: 80%;
  overflow: hidden;
}
.img-swiper-card-container img {
  border-radius: 1rem;
  object-fit: cover;
  width: 100%;
}
.swiper-card-title-container {
  position: absolute;
  bottom: 0;
  padding: 1rem;
  background-color: var(--gray-clr);
  color: #000;
  font-size: 1.2rem;
  font-weight: 500;
  width: 100%;
  text-align: center;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.swiper-pagination {
  /* .swiper-pagination-bullet{
    width: 7px;
    height: 7px;
  } */
  /*.swiper-pagination-bullet-active {*/
  /*  background-color: #000;*/
  /*}*/
}
/* افضل الحلول section */
.best-solutions-section-container {
  .best-solutions-section-text {
    p {
      color: #3a3939;
    }
    ul {
      gap: 18px;
    }
    ul li {
      padding: 0;
      border: none;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 25px;
      color: #504e4a;
      font-size: 18px;
      font-weight: 800;
      svg {
        color: #000;
        width: 17px !important;
        height: 17px !important;
      }
    }
  }
  .best-solutions-section-img-container {
    height: 450px !important;
    border-radius: 1rem;
    img {
      border-radius: 1rem;
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
  }
}
/* two buttons container */
.two-btns-container {
  gap: 60px;
  .watch-serv-btn {
    text-align: center;
    text-decoration: none;
    border-radius: 1rem;
    padding: 0.8rem 3rem;
    background-color: #000;
    color: #fff;
    font-weight: 500;
  }
  .watch-serv-btn:hover {
    background-color: var(--yellow-clr);
    color: #000;
  }
  .call-us-btn {
    text-align: center;
    font-weight: 500;
    color: #000;
    background-color: var(--gray-clr);
    border: 2px solid #000;
    border-radius: 1rem;
    text-decoration: none;
    padding: 0.8rem 3rem;
    box-shadow: 0 0 5px 5px #cfcdcd36;
  }
  .call-us-btn:hover {
    background-color: var(--yellow-clr);
  }
}
/* ما يميزنا section */
.yomaiaz-section-container {
  .yomaiaz-section-text-container {
    padding-right: 70px;
    p {
      color: #3a3939;
    }
    ul {
      width: 100%;
      text-align: right;
      padding: 1rem 3rem 0 0;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: space-evenly;
      gap: 7px;
      margin-bottom: 80px;
    }
    ul li {
      padding: 0;
      border: none;
      color: #504e4a;
    }
    a {
      background-color: #000;
      text-decoration: none !important;
      color: #fff;
      font-weight: 500;
      border-radius: 1rem;
      padding: 0.8rem 3rem;
      margin-right: 10px;
    }
    a:hover {
      background-color: var(--yellow-clr);
      color: #000;
    }
  }
  .yomaiaz-section-img-container {
    height: 450px !important;
    border-radius: 1rem;
    img {
      border-radius: 1rem;
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
  }
}
/* الاماكن التى تشملها section */
.places-section-container {
  .info-places-section {
    font-weight: 500;
    color: #000;
  }
  .title-places-section {
    color: #000;
  }
  /* cities container */
  .places-section-cities-container {
    margin: 0 0 3rem 0;
    background-image: url(../images/woldmap.png);
    background-size: contain;
    align-items: center;
    justify-content: space-evenly;
    height: 270px;
    /* city container */
    .palces-section-city {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      height: 100%;
      /* icon */
      .places-section-city-icon {
        height: 100%;
        img {
          width: 150px;
          height: 100%;
        }
      }
      p {
        color: #000;
        font-weight: bold;
        font-size: 1.3rem;
      }
    }
  }
}
/* rest section container */
.rest-section-container {
  .rest-section-text-container {
    .rest-section-list-container {
      width: 90%;
      padding-right: 30px;
      /* display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-evenly; */
    }
  }
  .rest-section-img-container {
    height: 550px !important;
    border-radius: 1rem;
    img {
      border-radius: 1rem;
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
  }
}
/* how we works */
.how-we-works-section-container {
  margin-top: 5rem;
  margin-bottom: 7rem;
  h2 {
    margin-bottom: 3rem;
    font-size: 2.3rem;
  }
  /* cards container */
  .how-we-works-cards-container {
    margin: 0;
    padding: 0 40px !important;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    /* card */
    .how-we-work-card {
      flex-grow: 1;
      height: 400px;
      border: 1px solid #7974741f;
      border-radius: 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 30px;
      svg {
        width: 60px;
        height: 60px;
        color: #000;
      }
      h3 {
        color: #000;
        font-weight: bold;
      }
      p {
        text-align: center;
        width: 80%;
      }
    }
    .how-we-work-card:hover {
      background-color: var(--yellow-clr);
    }
  }
}
/* rating section */
.rating-section-container {
  h2 {
    margin-bottom: 3rem;
    font-size: 2.3rem;
  }

  .rating-section-swiper-container {
    height: 28rem;
    .swiper-wrapper {
      height: 80%;
    }
    /* card */
    .rating-card {
      position: relative;
      padding: 3rem;
      height: 100% !important;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: space-around;
      border: 1px solid #7974741f;
      border-radius: 1rem;
      transition: 0.3s ease;
      /* icon */
      .rating-card-icon {
        position: absolute;
        top: 20px;
        right: 20px;
        svg {
          width: 20px;
          height: 20px;
          fill: var(--yellow-clr);
        }
      }
    }
    .rating-card:hover {
      transition: 0.3s ease;
      background-color: var(--yellow-clr);
      box-shadow: 0 5px 30px 2px #e99696a1;
    }
  }
}
/* another services */
.another-services-swiper-container {
  height: 20rem;
  .swiper-wrapper {
    height: 80% !important;
  }
  .another-services-card {
    padding: 1rem;
    height: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    /* img */
    .fill-icon {
      background-color: var(--yellow-clr) !important;
    }
    /* img */
    .another-services-icon {
      background-color: var(--gray-clr);
      border-radius: 50%;
      box-shadow: 0 0 10px 5px #afaeae54;
      height: 45%;
      img {
        width: 100% !important;
        height: 100% !important;
      }
    }
    p {
      text-align: center;
      width: 80%;
      font-weight: bold;
    }
  }
}
/* before footer section */
.before-footer-container {
  color: #fff;
  position: relative;
  width: 100vw;
  background-color: #4e868d;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  padding: 2rem 3rem 1rem 2rem;
  .hero-badge {
    font-weight: bold;
  }
  .hero-title {
    font-size: 35px;
  }
}

.cta-button {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: flex-end;
  background: #000;
  color: white;
  padding: 10px 25px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 480px) {
  .hero-badge {
    margin-bottom: 10px;
  }
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 15px;
  }
}
/* footer */
.footer {
  position: relative;
  background-color: #f5f5f5;
  padding: 60px 40px 30px;
  color: #333;
}


.footer-container {
  width: 100%;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  width: 100%;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c2c2c;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 8px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  font-weight: bold;
}

.about-text {
  font-weight: 500;
  font-size: 20px !important;
  line-height: 1.7;
  color: #666;
}

.contact-info p {
  margin-bottom: 12px;
}

.contact-info .address {
  font-weight: 500;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}

.footer-bottom p {
  font-size: 14px;
  color: #888;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 20px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .before-footer-container {
    padding: 1rem ;
  }
  .navbar-container {
    justify-content: end !important;
  }
}
@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  /* navbar */
  .navbar-container {
    justify-content: end !important;
    height: 8%;
    top: 6%;
    left: 57%;
  }
  /* main section responsive */
  .main-section {
    margin-bottom: 37rem;
    height: 100vh;
    .img-container {
      height: 80%;
    }
    /* main section text  */
    .main-section-text-btns-container {
      padding: 0 1.7rem;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      .main-section-text h1 {
        font-size: 2.3rem !important;
        line-height: 3rem;
      }
      /* buttons of main section */
      .main-section-btns-container {
        width: 100% !important;
      }
    }
    /* free price section */
    .free-price-section-container {
      padding: 4rem 0;
      top: 100%;
    }
    /* numbers section */
    .numbers-container {
      padding: 35rem 2rem 2rem 2rem;
    }
  }
  /* explore section  */
  .explore-section-container {
    gap: 0;
  }
  /* swipers */
  .swiper-container {
    padding: 1rem;
    gap: 0px;
  }
  /* يميز section */
  .yomaiaz-section-container {
    margin-bottom: 8rem;
    .yomaiaz-section-text-container {
      margin-top: 3rem;
      text-align: center;
      padding: 0;
    }
  }
  /* الاماكن التى تشملها section */
  .places-section-cities-container {
    height: 170px !important;
    .places-section-city-icon {
      img {
        width: 70px !important;
        height: 100% !important;
      }
    }
  }
  /* راحة البال section */
  .rest-section-container {
    .rest-section-text-container {
      .rest-section-list-container {
        width: 100%;
        padding: 0 40px;
      }
      h3 {
        text-align: center;
      }
    }
  }
  .another-services-swiper-container {
    .another-services-card {
      gap: 20px;
      justify-content: center;
      p {
        width: 100%;
        font-weight: normal;
      }
    }
    .another-services-icon {
      height: 35% !important;
    }
  }
  /* Responsive section titles for mobile */
  h1[class*="title"],
  h2[class*="title"],
  h3[class*="title"],
  h4[class*="title"],
  h5[class*="title"],
  h6[class*="title"] {
    font-size: 1.6rem !important;
  }
}
/* end main page [index] */

/* start carpet page */
/* first section */
.content-sec-page-container {
}
.main-section-sec-page {
  .main-section-sec-page-text {
    border-radius: 1rem;
    padding: 3rem 1.5rem;
    background-color: var(--gray-clr);
    h2 {
      color: #000;
    }
    p {
      line-height: 2rem;
    }
    a {
      color: #fff;
      padding: 0.5rem 1.5rem;
      background-color: var(--yellow-bold-clr);
    }
  }
}
/* second section */
.second-section-container {
  width: 100%;
  margin: 0 auto;
}

.main-heading {
  text-align: right;
  font-size: 2rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
}

.content-text {
  color: #504e4a;
  margin-bottom: 25px;
  text-align: right;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--yellow-bold-clr);
  color: #fff !important;
  padding: 10px 30px;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  border: none;
  cursor: pointer;
}

.button-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 40px 15px;
  }

  .main-heading {
    font-size: 2rem;
  }

  .content-text {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}
/* third section swiper */
.first-swiper-carpet-page {
  padding: 0;
  gap: 0px;
}
/* sixth section swiper */
.second-swiper-carpet-page {
  padding: 0;
  gap: 0px;
  .another-services-card {
    p {
      color: var(--text-clr-sec);
    }
    .another-services-icon {
      background-color: transparent !important;
      border-radius: 0 !important;
      box-shadow: none !important;
    }
  }
}
/* seventh section */
.seventh-section-container {
  width: 100%;
  margin: 0 auto;
}

.intro-text {
  color: var(--text-clr-sec);
}

.services-list {
  list-style: none;
  counter-reset: service-counter;
}

.service-item {
  margin-bottom: 35px;
  counter-increment: service-counter;
}

.service-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 15px;
  position: relative;
}

.service-title::before {
  content: counter(service-counter) ". ";
  color: #f39c12;
  font-weight: bold;
}

.service-description {
  font-size: 1.1rem;
  color: #555555;
  line-height: 2;
  text-align: justify;
  margin-bottom: 15px;
}

.service-features {
  list-style: none;
  margin-right: 20px;
}

.service-features li {
  position: relative;
  margin-bottom: 10px;
  padding-right: 20px;
  font-size: 1rem;
  color: #666666;
  line-height: 1.3;
}

.service-features li::before {
  content: "•";
  color: var(--yellow-clr);
  font-weight: bold;
  position: absolute;
  right: 0;
}

@media (max-width: 768px) {
  .container {
    padding: 40px 15px;
  }

  .main-heading {
    font-size: 2rem;
  }

  .service-title {
    font-size: 1.2rem;
  }

  .service-description,
  .intro-text {
    font-size: 1rem;
  }
}
/* tenth section افضل شركة تنظيف السجاد */
.tenth-section{
  h3{
    font-size: 1.7rem;
  }
  p{
    line-height: 1.8;
    font-size: 15px;
  }
  ul{
    li{
      margin-bottom: 10px;
    }
  }
  .rest-section-img-container{
    height: 400px !important;
    border-radius: 0;
    img{
      border-radius: 0;
    }
  }
}
/* questions section */
.questions-section-container{
  margin-bottom: 7rem !important;
  .accordion-item{
    border: none;
    margin-bottom: 10px;
    width: 100%;
    /* button */
    .accordion-button{
      padding: 10px 15px;
      background-color: #efeff0 ;
      border-radius: 1rem !important; 
      border: none;
      width: 100%;
    }
    .accordion-body{
      border: 1px solid #8a838344;
      border-radius: 1rem;
      border-top: none;
    }
    .accordion-button::after{
      margin-left: 0;
      margin-right: auto;
    }
    .accordion-button:focus{
      box-shadow: none;
    }
  }
}
/* another services swiper */
.another-services-swiper-sec-page{
  h1{
    font-size: 2.5rem;
  }
  /* card */
  .another-services-card{
      .another-services-icon{
        height: 38% !important;
      }
  }
}
.swiper-card-title-container a {
  text-decoration: none;
  color: black;
}

.hero-form{
    justify-content:center;
    width: 100%;
    align-items: center;
}

.hero-form input,.hero-form select{
    width: 100% ;
}
.wpcf7-form-control-wrap{
        display: block;
}
.wpcf7-spinner{
    display: none;
}
input,textarea,select,a,button,input:focus{
    font-family: "Tajawal", sans-serif;;
}
.content-sec-page-container{
    margin-top: 5%;
}
.text-start {
    text-align: right !important;
}
a.result-link{
    
}


















/* Archive Page Styles */
.archive-header-section {
    background: linear-gradient(135deg, var(--gray-clr) 0%, #ffffff 100%);
    padding: 4rem 0 2rem;
    margin-top: 2rem;
    border-radius: 0 0 2rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.archive-header-content {
    animation: fadeInUp 0.8s ease-out;
}

.archive-icon {
    color: var(--yellow-clr);
    animation: bounceIn 1s ease-out;
}

.posts-count-badge {
    margin-top: 1rem;
}

.posts-count-badge .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #333 0%, #555 100%) !important;
}

/* Modern Post Cards */
.posts-grid-container {
    padding: 2rem 0;
}

.post-card-modern {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.post-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.post-thumbnail-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.post-thumbnail-container.no-image {
    background: linear-gradient(135deg, var(--gray-clr) 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.default-thumbnail {
    color: #999;
    opacity: 0.7;
}

.post-thumbnail-link {
    display: block;
    height: 100%;
    position: relative;
}

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

.post-card-modern:hover .post-thumbnail-img {
    transform: scale(1.05);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.post-card-modern:hover .post-overlay {
    opacity: 1;
}

.post-overlay-content {
    color: white;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.post-card-modern:hover .post-overlay-content {
    transform: translateY(0);
}

.post-category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.category-link {
    background: var(--yellow-clr);
    color: #000;
    padding: 0.4rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: var(--yellow-bold-clr);
    color: #000;
    transform: scale(1.05);
}

.post-content-modern {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-meta-top {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #666;
}

.post-meta-top span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.post-meta-top svg {
    color: var(--yellow-clr);
}

.post-title-modern {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.post-title-modern a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title-modern a:hover {
    color: var(--yellow-bold-clr);
}

.post-excerpt-modern {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.post-footer-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.read-more-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--yellow-bold-clr);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.read-more-btn-modern:hover {
    color: #000;
    transform: translateX(-3px);
}

.comments-count {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #999;
    font-size: 0.85rem;
}

.comments-count svg {
    color: var(--yellow-clr);
}

/* Enhanced Pagination */
.pagination-container-modern {
    text-align: center;
    margin: 3rem 0;
}

.pagination-modern {
    display: inline-flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-modern .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 0.5rem;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-modern .page-numbers:hover,
.pagination-modern .page-numbers.current {
    background: var(--yellow-clr);
    border-color: var(--yellow-clr);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 205, 5, 0.3);
}

.pagination-modern .page-numbers svg {
    width: 16px;
    height: 16px;
}

/* Enhanced No Posts Found */
.no-posts-found-modern {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--gray-clr) 0%, #ffffff 100%);
    border-radius: 2rem;
    margin: 2rem 0;
}

.no-posts-content {
    animation: fadeInUp 0.8s ease-out;
}

.no-posts-icon {
    color: #ccc;
    animation: bounceIn 1s ease-out;
}

.no-posts-title {
    color: #333;
    margin-bottom: 1rem;
}

.no-posts-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.no-posts-search {
    max-width: 400px;
    margin: 0 auto;
}

.no-posts-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-back-home,
.btn-browse-categories {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back-home {
    background: var(--yellow-clr);
    color: #000;
    border: 2px solid var(--yellow-clr);
}

.btn-back-home:hover {
    background: var(--yellow-bold-clr);
    border-color: var(--yellow-bold-clr);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 205, 5, 0.3);
}

.btn-browse-categories {
    background: transparent;
    color: #666;
    border: 2px solid #e9ecef;
}

.btn-browse-categories:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #333;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design for Archive */
@media (max-width: 768px) {
    .archive-header-section {
        padding: 2rem 0 1rem;
        margin-top: 1rem;
    }
    
    .archive-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .post-thumbnail-container {
        height: 180px;
    }
    
    .post-content-modern {
        padding: 1rem;
    }
    
    .post-title-modern {
        font-size: 1.1rem;
    }
    
    .no-posts-found-modern {
        padding: 2rem 0;
        margin: 1rem 0;
    }
    
    .no-posts-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .no-posts-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-back-home,
    .btn-browse-categories {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Live Search Styles */
.search-container {
    position: relative;
}

.search-container.search-active .search-field {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
}

.search-loading {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-results-header,
.popular-posts-header {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-results-header h4,
.popular-posts-header h4 {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
    flex: 1;
}

.results-count {
    background: #007bff;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.search-term {
    color: #007bff;
    font-weight: bold;
}

.search-results-list,
.popular-posts-list {
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover,
.search-result-item.hovered,
.search-result-item.active {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.search-result-item.active {
    border-right: 3px solid #007bff;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.result-link {
    display: flex;
    padding: 1rem;
    text-decoration: none;
    color: inherit;
    gap: 1rem;
    align-items: center;
    position: relative;
}

.result-thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.search-result-item:hover .result-thumbnail {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

.result-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.result-thumbnail img[src$=".svg"] {
    object-fit: contain;
    padding: 8px;
}

.result-content {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
}

.result-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.search-result-item:hover .result-title {
    color: #007bff;
}

/* تم حذف CSS غير المستخدم للمقتطف والمعلومات الإضافية */

.search-highlight {
    background: linear-gradient(120deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
    padding: 0 2px;
    border-radius: 3px;
    font-weight: 600;
}

.search-results-footer {
    padding: 1rem;
    border-top: 1px solid #eee;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.view-all-results {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid #007bff;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: white;
}

.view-all-results:hover {
    background: #007bff;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.view-all-results svg {
    transition: transform 0.3s ease;
}

.view-all-results:hover svg {
    transform: translateX(-2px);
}

.no-search-results {
    padding: 2rem;
    text-align: center;
    color: #666;
}

.no-results-icon {
    margin-bottom: 1rem;
    color: #ccc;
}

.no-search-results h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.no-search-results p {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
}

.search-suggestions {
    text-align: right;
    font-size: 0.8rem;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.search-suggestions li {
    padding: 0.25rem 0;
    color: #666;
}

.search-error {
    padding: 1rem;
    text-align: center;
    color: #dc3545;
}

.popular-post-item .result-content {
    padding-top: 0.25rem;
}

.comment-count {
    color: #007bff !important;
    font-weight: 500;
}

/* Search Enhancements Styles */
.search-container.search-focused {
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
    border-radius: 8px;
}

.search-container.search-has-text .search-field {
    background-color: #f8f9fa;
}

/* Search Suggestions */
.search-suggestions-container {
    border-bottom: 1px solid #eee;
}

.suggestions-header {
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.suggestions-header h4 {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.suggestions-list {
    max-height: 200px;
    overflow-y: auto;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: #f8f9fa;
}

.suggestion-item svg {
    color: #999;
    flex-shrink: 0;
}

.suggestion-item span {
    font-size: 0.9rem;
    color: #333;
}

.suggestion-item mark {
    background-color: #fff3cd;
    color: #856404;
    padding: 0 2px;
    border-radius: 2px;
}

/* Search History */
.search-history-container {
    border-bottom: 1px solid #eee;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.history-header h4 {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.clear-history-btn {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.clear-history-btn:hover {
    background-color: rgba(220, 53, 69, 0.1);
}

.history-list {
    max-height: 200px;
    overflow-y: auto;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.history-item:last-child {
    border-bottom: none;
}

.history-item:hover {
    background-color: #f8f9fa;
}

.history-item svg {
    color: #999;
    flex-shrink: 0;
}

.history-item span {
    flex: 1;
    font-size: 0.9rem;
    color: #333;
}

.remove-history-item {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: all 0.2s ease;
    opacity: 0;
}

.history-item:hover .remove-history-item {
    opacity: 1;
}

.remove-history-item:hover {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Keyboard Navigation Indicator */
.search-result-item.active {
    background-color: #e3f2fd !important;
    border-right: 3px solid #007bff;
}

/* Loading States */
.search-container.loading .search-field {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="3"/><path d="m12 1 0 6m0 6 0 6m11-7-6 0m-6 0-6 0m9.5-9.5-4.24 4.24m-4.24 4.24-4.24 4.24m12.73 0-4.24-4.24"/></svg>');
    background-repeat: no-repeat;
    background-position: left 15px center;
    background-size: 16px;
    animation: spin 1s linear infinite;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .suggestions-list,
    .history-list {
        max-height: 150px;
    }
    
    .suggestion-item,
    .history-item {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }
    
    .suggestion-item span,
    .history-item span {
        font-size: 0.85rem;
    }
    
    .history-header {
        padding: 0.5rem 0.75rem;
    }
    
    .suggestions-header {
        padding: 0.5rem 0.75rem;
    }
}

/* Accessibility Improvements */
.search-result-item:focus-within,
.suggestion-item:focus,
.history-item:focus {
    outline: 2px solid #007bff;
    outline-offset: -2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .suggestion-item mark {
        background-color: #ffff00;
        color: #000000;
    }
    
    .search-result-item.active {
        background-color: #000080 !important;
        color: #ffffff;
    }
    
    .search-result-item.active .result-title,
    .search-result-item.active .result-excerpt,
    .search-result-item.active .result-meta {
        color: #ffffff;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .search-result-item,
    .suggestion-item,
    .history-item,
    .loading-spinner {
        transition: none;
        animation: none;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .live-search-results {
        max-height: 350px;
        border-radius: 0 0 12px 12px;
    }
    
    .search-results-header,
    .popular-posts-header {
        padding: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .search-results-header h4 {
        font-size: 0.85rem;
    }
    
    .results-count {
        align-self: flex-end;
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
        border-radius: 12px;
    }
    
    .result-link {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .result-thumbnail {
        width: 50px;
        height: 50px;
        border-radius: 10px;
    }
    
    .result-title {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }
    
    .search-results-footer {
        padding: 0.75rem;
    }
    
    .view-all-results {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .search-result-item:hover,
    .search-result-item.hovered {
        transform: none;
        box-shadow: none;
    }
    
    .search-result-item:hover .result-thumbnail {
        transform: none;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .live-search-results {
        background: #2d3748;
        border-color: #4a5568;
        color: #e2e8f0;
    }
    
    .search-results-header,
    .popular-posts-header,
    .search-results-footer {
        background: #1a202c;
        border-color: #4a5568;
    }
    
    .search-result-item {
        border-color: #4a5568;
    }
    
    .search-result-item:hover,
    .search-result-item.active {
        background-color: #1a202c;
    }
    
    .result-title {
        color: #e2e8f0;
    }
    
    .result-excerpt {
        color: #a0aec0;
    }
    
    .result-meta {
        color: #718096;
    }
}

/* Print Styles */
@media print {
    .mobile-menu-container,
    .navbar-container,
    .before-footer-container,
    .footer,
    .live-search-results {
        display: none !important;
    }
    
    .content-container {
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* Active Menu Styles */
/* القائمة الرئيسية - Desktop */
.nav-link.active {
    color: #007bff !important;
    font-weight: bold;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: #007bff;
    border-radius: 2px;
}

/* القائمة الفرعية - Desktop */
.drop-down-menu-container a.active {
    color: #007bff !important;
    font-weight: bold;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 5px;
    padding: 8px 12px;
}

/* القائمة المحمولة - Mobile */
.accordion-button.active {
    color: #007bff !important;
    font-weight: bold;
    background-color: rgba(0, 123, 255, 0.1);
}

.accordion-button.active:not(.collapsed) {
    color: #007bff !important;
    background-color: rgba(0, 123, 255, 0.1);
    box-shadow: none;
}

/* القائمة الفرعية المحمولة */
.navigation-menu a.active {
    color: #007bff !important;
    font-weight: bold;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 5px;
    padding: 8px 12px;
    display: inline-block;
}

/* Default Service Icon */
.default-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #f8f9fa;
    border-radius: 50%;
    color: #6c757d;
    margin: 0 auto;
}

.default-service-icon svg {
    width: 32px;
    height: 32px;
}
/* Hide pagination navigation label */
.pagination-container-modern .screen-reader-text,
.pagination-container-modern h2,
.pagination-container-modern .nav-links h2 {
    display: none !important;
}


.accordion-button.active,.accordion-button.active:not(.collapsed){
    color: #fcb424 !important;
}
a,a:hover{
    text-decoration: none !important;
}
.cta-button a{
    color: #fff !important;
}
@media (max-width:991px) {
    .wp-singular .content-sec-page-container{
            margin-top: 13%;
    padding-right: 15px !important;
    padding-left: 15px !important;
    }
       .wp-singular .site-main img{
           width: auto !important;
           height: auto !important;
           border-radius: 8px;
        max-width: 100%;
       }
#menu-main-menu a{
    color: #fff;
    text-decoration: none !important;
}
#menu-main-menu .accordion-collapse li {
    list-style: none;
    padding: 10px;
}
    .navbar-container {
        justify-content: space-between !important;
                left: 52%;
    }
    .main-section {
        margin-bottom: 46rem;
    }
    .mobile-menu-icon-container svg {
        height: 37px;
    }
    .mobile-menu-icon-container {
        align-items: center;
        justify-content: center;
        display: flex !important;
    }
    .main-section .free-price-section-container {
        top: 126%;
    }
    .main-section .numbers-container {
        padding: 45rem 2rem 2rem 2rem;
    }
    .two-btns-container {
        gap: 24px;
    }
    .two-btns-container .watch-serv-btn,
    .two-btns-container .call-us-btn {
        width: 80%;
    }
    .yomaiaz-section-container .yomaiaz-section-img-container,
    .best-solutions-section-container .best-solutions-section-img-container,
    .rest-section-container .rest-section-img-container {
        height: 300px !important;
    }
    .yomaiaz-section-container {
        margin-bottom: 3rem;
    }
    .yomaiaz-section-container .yomaiaz-section-text-container,
    .how-we-works-section-container {
        margin-top: 2rem;
    }
    h2.title-of-content-section {
        padding-bottom: 20px;
    }
    .main-section-btns-container a {
        padding: 12px 15px !important;
    }
.how-we-works-section-container .how-we-work-card ,
.how-we-works-cards-container   .how-we-work-card  {
                height: 280px !important;
}
body,html{
    overflow-x: hidden !important;
}
}


a.call-now.btn.rounded-4 {
  background-color: #fcb424;  /* أصفر ذهبي */
  color: #1a1a1a;            /* نص داكن (رمادي غامق بدل الأبيض) */
  font-weight: bold;
  padding: 12px 20px;
  border: none;
}

.whatsApp.btn {
  background-color: #25d366; /* اللون الرسمي للواتساب */
   color: #ffffff;          /* نص أبيض */
  font-weight: bold;
  padding: 12px 20px;
  border: none;
}



/* الحل: خليه داكن أكتر أو حط خلفية غامقة وراء النص */
.how-we-work-title {
  color: #fcb424;
  background: #222; 
  padding: 5px 10px;
  display: inline-block;
}

.read-more-btn-modern {
  background: #0066cc;   /* أزرق واضح */
  color: #ffffff;        /* نص أبيض */
  padding: 8px 16px;
  border-radius: 6px;
}

.hero-badge {
  color: #1a1a1a; /* رمادي غامق */
}

.cta-button {
  background: #0066cc; /* أزرق */
  color: #fff; 
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 8px;
}



.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 8px;           /* مسافة بينهم */
}

.swiper-pagination-bullet-active {
  background: #0066cc;   /* لون مميز للنشطة */
}

.category-link {
  display: inline-block;
  padding: 8px 12px;   /* يخلي الرابط أكبر وأسهل للمس */
  font-size: 14px;     /* يوضح النص */
}

.post-thumbnail-link {
  display: inline-block;
  min-width: 48px;
  min-height: 48px; 
}

.cta-button,
a[href*="wa.me"] {
  padding: 14px 28px; /* حجم مريح للمس */
  font-size: 16px;
  border-radius: 8px;
}
