
.header-1 {
  background-color: orange; /* لون الخلفية برتقالي */
  /* padding: 10px 0; /* تعديل التباعد داخل القسم */ */
}

.header-1 .social-media {
  background-color: #00000000;
  margin-left: 44px;
  margin-top: 5px;
}
.header-1 .social-media {
  font-size: 20px; /* حجم الرموز */
}

.header-1 .social-media .social-icon {
  color: white; /* لون الرموز الاجتماعية أبيض */
  margin-right: 10px; /* تعديل التباعد بين الرموز */
}

.header-1 .page-title {
  color: white; /* لون النص أبيض */
  font-size: 24px; /* حجم العنوان */
  font-weight: bold; /* نص غامق */
  margin-bottom: 10px; /* تعديل التباعد بين العناصر */
  margin-right: 15px;
}

.header-1 h1 {
  color: white; /* لون الرقم الهاتف أبيض */
  font-size: 28px; /* حجم الرقم الهاتف */
  font-weight: bold; /* نص غامق */
}

@media (max-width: 767px) {
  .header-1 .col-md-4 {
    text-align: center; /* محاذاة المحتوى في وسط العمود */
    margin-bottom: 15px; /* تعديل التباعد بين العمودين */
  }

  .header-1 .col-md-8 {
    text-align: center; /* محاذاة المحتوى في وسط العمود */
  }
  .header-1 .social-media{
    margin-left: 0px;
  }
  .header-1 .social-media {
    margin-bottom: 15px; /* تعديل التباعد بين وسائل التواصل */
  }
}


/* Basic styling for product cards */
.product-card {
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}



.product-card .imageCont {
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0px 0px;
  border: 3px solid #d21f26; /* Border color */
  transition: transform 0.3s ease, border-radius 0.3s ease;
  border-bottom: 0px;
}

.product-card .image {
  background-size: cover;
  background-position: center;
  width: 100%;
  padding-bottom: 75%; /* Adjust this for aspect ratio */
  /* border-radius: 10px; */
  transition: transform 0.3s ease;
}

.product-card:hover .image {
  transform: scale(1.1);
}

.product_details {
  padding: 15px;
  background: #fff;
  border: 3px solid #d21f26; /* Border color */
  border-radius: 0 0 10px 10px;
  text-align: center;
  transition: background-color 0.3s ease;
  /* border-top: 0px; */
}

.product-card:hover .product_details {
  background-color: #f8f8f8;
}

.product-title {
  font-size: 1.2em;
  color: #333;
  margin: 0;
  font-weight: 700;
  /* border-bottom: 2px solid #d21f26; /* Border color */ */
  padding-bottom: 10px;
}

.out-stock {
  font-size: 1em;
  color: #d21f26;
  margin: 10px 0 0;
}



.product-card:hover .image {
  transform: scale(1.1);
}

.product-card:hover .product_details {
  background-color: #f0f0f0;
}

/* Responsive styling */
@media (max-width: 767px) {
  .product-card {
    margin-bottom: 20px;
  }

  .product-card .image {
    padding-bottom: 100%;
  }
}

.product_details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: #fff;
  border-radius: 0 0 10px 10px;
  text-align: center;
  transition: background-color 0.3s ease;
  width: 100%;
}

/* Add your CSS styles here */
.slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slider .slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.slider .slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider .slide-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.slider .slide-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.slider .btn {
  display: inline-block;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-size: 1.2rem;
  transition: background-color 0.3s ease-in-out;
}

.btn:hover {
  background-color: #333;
  color: #fff;
}

.slider .navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 3rem;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.slider .navigation i {
  margin: 0 2rem;
}

.slider .navigation-visibility {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider .slide-icon {
  width: 1.5rem;
  height: 1.5rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 0.5rem;
  cursor: pointer;
}

.slider .slide-icon.active {
  background-color: #fff;
}

/* Media query for mobile devices */
@media (max-width: 767px) {
  .slider {
    height: 100px;
  }

  .slide-content h2 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1.2rem;
  }

  .btn {
    font-size: 1rem;
    padding: 0.8rem 1.6rem;
  }

  .navigation i {
    font-size: 2rem;
    margin: 0 1rem;
  }

  .slide-icon {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0 0.3rem;
  }
}






.header-wrapper {
  background-color: #f8f9fa; /* يمكنك تغيير لون الخلفية حسب رغبتك */
  padding: 20px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .row {
  display: flex;
  width: 100%;
  align-items: center;
}

.header .logo {
  max-width: 100%;
  height: auto;
}

.header .page-title {
  font-size: 1.5em;
  font-weight: bold;
}

.header h1 {
  font-size: 1.2em;
  color: #333; /* يمكنك تغيير لون النص حسب رغبتك */
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}


.products-section .Products{
  min-height: 450px;
}




.logo{
  margin-top: -10px;
  /* margin-top: 20px; */
}

.products-section{
  margin-top: 60px;
}
.imageCont .mask {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: rgba(0,0,0,0.5);
  opacity: 0;
  transition: all 0.5s;
  text-align: center;
  z-index: 999;
  padding-top: 25%;
  text-transform: uppercase;
}

.product_details {
  float: left;
  width: 100%;
  height: auto;
  overflow: hidden;
  transition: all 0.5s;
  padding: 8px;
  min-height: 100px;
  position: relative;
  border: 1px #d21f26 solid;
  border-top: 5px #d21f26 solid;
  text-align: center;
  min-height: 135px;
}

.imageCont .image {
  float: left;
  width: 100%;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  transition: all 0.5s;
}

.product_details h3 {
  font-size: 16px;
}

.quick-order{
  position: fixed;
  z-index: 99999;
  right: 30px;
  bottom: 30px;
  animation: blinker 1.5s linear infinite;
  font-size: 25px;
  border-radius: 33px;
  padding: 14px;
}

.sendingSuccess{
  font-size: 25px;
}

.modal-body {
  position: relative;
  padding: 15px;
  color: #ed1c24;
  font-size: 20px;
  text-align: center;
}

.modal-body img{
  width: 120px !important;
  margin: 0px auto;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
  z-index: 9;
}

.offer-title{
  text-align: center;
  font-size: 23px;
  margin-top: 20px;
  margin-bottom: 30px;
  color: #ed1c24;
}
.offer-details{
  text-align: center;
  font-size: 19px;
  margin-top: 20px;
  margin-bottom: 30px;
}
