/*------------------------------------------------------------------
    File Name: custom.css
-------------------------------------------------------------------*/
/* Language Switcher Button Styles */
.language-button {
 /*   background: #ffff;  /* Matches your site's primary orange color */
/*    color: #33421E;*/
/*    border: none;*/
/*    padding: 8px 16px;*/
/*    margin-top: 8px;*/
/*    border-radius: 20px;*/
/*    font-size: 14px;*/
    cursor: pointer;
/*    font-weight: 500;*/
/*    box-shadow: 0 2px 4px #33421E;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 0.5px;*/
}

.language-button:hover {
cursor:pointer;
}

/*.language-button:active {*/
/*    transform: translateY(0);*/
/*    box-shadow: 0 2px 4px rgba(255, 73, 6, 0.2);*/
/*}*/

/*.language-button:focus {*/
/*    outline: none;*/
/*    box-shadow: 0 0 0 3px rgba(255, 73, 6, 0.3);*/
/*}*/

/** ADD YOUR AWESOME CODES HERE **/


/* Basic arrow style */
.swiper-button-next,
.swiper-button-prev {
  color: #ff6600;  /* arrow color */
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* On hover */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0,0,0,0.3);
  color: #fff;
}

/* Optional: Position slightly inside */
.swiper-button-next {
  right: 10px;
}
.swiper-button-prev {
  left: 10px;
}
/* Style dots size, color, shape */
.swiper-pagination-bullet {
    margin-top:40px;
  width: 12px;
  height: 12px;
  background-color: #999; /* normal color */
  opacity: 1;
  border-radius: 50%; /* circle */
  margin: 0 5px;
  transition: all 0.3s ease;
}

/* Active dot */
.swiper-pagination-bullet-active {
  background-color: #ff6600; /* active color */
  width: 16px;
  height: 16px;
}


.main-menu-ar1, 
.main-menu-ar2 {
  display: none !important;
}

.service_img {
  position: relative;
  overflow: hidden;
}

.service_overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7); /* semi-transparent black */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  text-align: center;
  direction: rtl; /* to keep text direction correct for Arabic */
}
.service_overlay p{
      color: white;

}

.service_img:hover .service_overlay {
  opacity: 1;
}


@media (min-width: 992px) {
  .main-menu-ar1 {
    display: inline-block !important;
  }
}

@media (max-width: 991px) {
  .main-menu-ar2 {
    display: inline-block !important;
  }
}

