@tailwind base;
@tailwind components;
@tailwind utilities;
@import "flowbite";
body {
  font-family: "Cairo", sans-serif;
}
ul li 
{
  list-style-type: none;
}
.BtnWhatsApp {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: #00d757;
}
.BtnWhatsApp .sign {
  width: 100%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4;
}

.BtnWhatsApp .sign svg {
  width: 30px;
}

.BtnWhatsApp .sign svg path {
  fill: white;
}
.BtnWhatsApp .text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: 0.3s;
}

.BtnWhatsApp:hover {
  width: 200px;
  border-radius: 50px;
  transition-duration: 0.3s;
}

.BtnWhatsApp:hover .sign {
  width: 30%;
  transition-duration: 0.3s;
}

.BtnWhatsApp:hover .text {
  opacity: 1;
  width: 100%;
  transition-duration: 0.3s;
  padding-right: 2rem;
}
.BtnWhatsApp:active {
  transform: translate(2px, 2px);
}

.buttonTop {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(20, 20, 20);
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 4px #fff;
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  position: relative;
}

.svgIcon {
  width: 12px;
  transition-duration: 0.3s;
}

.svgIcon path {
  fill: white;
}

.buttonTop:hover {
  width: 140px;
  border-radius: 50px;
  transition-duration: 0.3s;
  background-color: rgb(72, 30, 30);
  align-items: center;
}

.buttonTop:hover .svgIcon {
  /* width: 20px; */
  transition-duration: 0.3s;
  transform: translateY(-200%);
}

.buttonTop::before {
  position: absolute;
  bottom: -20px;
  content: "Back to Top";
  color: white;
  /* transition-duration: .3s; */
  font-size: 0px;
}

.buttonTop:hover::before {
  font-size: 13px;
  opacity: 1;
  bottom: unset;
  /* transform: translateY(-30px); */
  transition-duration: 0.3s;
}
.swiper-pagination-bullet {
  background-color: #d1d5db; /* لون رمادي ناعم */
  opacity: 1;
  transition: all 0.3s ease;
  width: 1rem;
  height: 1rem;
}
.swiper-pagination-bullet-active {
  background-color: #ef4444; 
  transform: scale(1.2);
}
.home {
  background-image: url(../images/Gemini_Generated_Image_2fbvag2fbvag2fbv.png);
  background-position: center center;
  background-size: 100% 100%;
}
