:root {
  --main-color: #EDCAA7;
  --second-color: #000000;
  --third-color: #ffffff;
  --fourth-color: #e4d1b9;
  --fifty-color: #F2EDE5;
  --linear-color: linear-gradient(152deg,rgba(237, 202, 167, 1) 73%, rgba(242, 237, 229, 1) 100%);
 !important;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
}
body {
  font-family: "Cairo", sans-serif;
   overflow-x: hidden;
  font-size: 1.2rem;
}
html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-thumb {
  background:var(--linear-color);
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}
.text-xl {
  font-size: 8rem;
}
.text-lg {
  font-size: 3rem;
}
.text-md {
  font-size: 2.2rem;
}
.text-sm {
  font-size: 1.5rem;
}

.bg-bamboho {
  background-color: var(--fifty-color) !important;
}
/* style framework */
.lang-btn {
  background-color: var(--main-color);
  color: white !important;
  transition: all 0.2s ease-in-out;
  border: none;
}

.btn-send {
  background-color: var(--main-color);
  color: var(--third-color);
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 18px;
}
.btn-send-outline {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  padding: 4px 8px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 18px;
}
.btn-send-outline:hover {
  background-color: var(--main-color);
  color: var(--third-color);
  padding: 4px 8px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 18px;
}
.btn-send:hover {
  background-color: var(--fourth-color);
  color: var(--third-color);
}

.text-primary-two {
  color: var(--main-color) !important;
}

/* navbar */
.navbar {
  width: 100%;
  position:fixed;
  top:0;
  left:0;
box-shadow: rgba(0, 0, 0, 0.5) 0px 127px 36px -28px inset;

}
.navbar-toggler i{
    color:white;
}
.fixed-top ul li a.nav-link{
    color: #010101;
}
.fixed-top .navbar-brand img{
  filter: brightness(0);
}

.fixed-top .navbar-toggler i{
 color:black;
}
.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s ease-in-out;
  padding: 8px 12px;
  display: inline-block;
  width: fit-content;
}
.nav-link.active{
font-weight:500;
  color: var(--main-color) !important;
  
}
.fixed-top ul li a.nav-link.active{
    color:var(--main-color) !important;
}
.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(152deg,rgba(237, 202, 167, 1) 73%, rgba(242, 237, 229, 1) 100%);

  width: 0%;
  transition: width 0.3s ease-in-out;
}

.nav-item:hover .nav-link::before {
  width: 100%;
}

.nav-item:hover .nav-link {
  color: rgb(161, 120, 86);
}

.lang-btn:hover {
  background-color: var(--second-color);
}

/* Social icon  */

.social-icon a {
background: linear-gradient(152deg,rgba(237, 202, 167, 1) 73%, rgba(242, 237, 229, 1) 100%);

  background-size: cover;
  background-position: center;
  color: var(--third-color);
  padding: 0.5rem;
  border-radius: 50%;
  margin: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  border: none;
  animation: pulse 2s infinite ease-in-out; /* إضافة تأثير النبض */
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.social-icon a:hover {
  color: var(--third-color);
  font-weight: bold;
  transform: scale(1.11);
  animation: none; /* إيقاف التأثير عند hover للحفاظ على تأثير scale الثابت */
}
/* hero-slide */
.hero-slider {
  /* height: calc(100vh - 106px); */
  height: 100vh;
}
.hero-slider-pages {
  width: 100%;
  height: 100%;
}

.hero-slider .text-slider {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  z-index: 2 !important;
  transform: translate(-50%, -50%) !important;
}
.hero-slider .text-slider h1 {
  font-size: 4rem;
  color: var(--third-color) !important;
  font-weight: bold !important;
}

.hero-slider .item {
  position: relative;
  height: 100vh !important;
  min-height:100%;
}

.hero-slider .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-slider .hero-slider-content {
  position: absolute;
  top: 30%;
  left: 0%;
  z-index: 2;
  color: white;
  margin: 0px 120px;

  transition: all 0.5s;
}
.hero-slider .hero-slider-content h1 {
  color: var(--third-color);
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 4rem;
}
.hero-slider .hero-slider-content p {
  line-height: 1.2;
  font-size: 1.4rem;
  width: 38rem;
}
.hero-slider .hero-slider-content .btn-about {
  background-color: var(--main-color);
  color: var(--third-color);
  padding: 0.5rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-size: 20px;
}
.hero-slider .hero-slider-content .btn-about:hover {
  background-color: var(--fourth-color);
}
.title-text {
  line-height: 1.6;
}
.title-text span:nth-child(1) {
  font-size: 2.5rem;
}
.title-text span:nth-child(2) {
  font-size: 3.5rem;
}

.hero {
  transition: all 0.3s;
  position: relative;

}
.hero .owl-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .owl-dots button.active span {
  background-color: var(--main-color) !important;
}
.hero .owl-dots button span {
  background-color: var(--third-color) !important;
}

.hero .owl-nav {
  display: flex;
  position: absolute;
  top: 50%;
  width: 100%;
  padding: 0 20px;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  z-index: 99;
}
.hero:hover .owl-nav {
  transition: all 0.3s;
}
.hero .owl-nav .owl-prev {
  color: var(--main-color);
  background-color: var(--fourth-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-left: -50px;
  margin-top: 0px;
}
.hero:hover .owl-nav .owl-prev {
  transition: all 0.3s;
  margin-left: 0px;
}
.hero .owl-nav .owl-prev:hover {
  background-color: var(--third-color);
  color: var(--main-color);
  transform: scale(1.1);
}
.hero .owl-nav .owl-next {
  color: var(--main-color);
  background-color: var(--main-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-right: -50px;
  margin-top: 0px;
}
.hero:hover .owl-nav .owl-next {
  transition: all 0.3s;
  margin-right: 0px;
}
.hero .owl-nav .owl-next:hover {
  background-color: var(--third-color);
  color: var(--main-color) !important;
  transform: scale(1.1);
}
.hero .owl-nav .owl-prev > span,
.hero .owl-nav .owl-next > span {
  font-size: 40px;
  margin-bottom: 5px;
  color: var(--third-color);
}
.hero .owl-nav .owl-prev:hover:hover > span,
.hero .owl-nav .owl-next:hover > span {
  font-size: 40px;
  margin-bottom: 5px;
  color: var(--main-color);
}
.hero .owl-nav .owl-prev > span {
  margin-right: 2px;
}

.hero .owl-nav .owl-next > span {
  margin-left: 2px;
}

/* section product  */
.product {
  transition: all 0.3s;
  position: relative;
}

.product .owl-dots button span {
  width: 25px !important;
  height: 4px !important;
  border-radius: 5px;
  background-color: var(--main-color) !important; /* اللون الأحمر الفاتح */
  opacity: 0.5;
  transition: all 0.3s ease;
}

/* Active Dot */
.product .owl-dots button.active span {
  width: 25px;
  height: 5px;
  opacity: 1;
  background-color: var(--main-color) !important;
}

.product .item {
  padding: 10px;
}
.product-card {
  background-color: var(--third-color);
  border-radius: 10px;
  transition: transform 0.3s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
   box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.product-img {
  object-fit: cover !important;
  width: 100%;
  height: 300px;
  border-radius: 10px ;
   box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.product-card p {
 font-size:15px;
}

/* section product details */
.nav-tabs .nav-link.active {
  color: var(--main-color);
  border-color: transparent transparent var(--main-color) transparent;
  font-weight: bold;
}
.nav-tabs .nav-link {
  color: #000;
}
.product-info-box {
  border: 1px solid #f1f1f1;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.product-info-box h6 {
  font-weight: bold;
}
.tab-content img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}

/* section services  */
.hero-section {
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  z-index: 2;
  color: #fff;
}

.btn-outline-light:hover {
  background-color: white;
  color: black;
}

/* image preview */
.preview-img {
  max-width: 100%;
  max-height: 300px;
  display: block;
  margin: 20px auto;
  border-radius: 10px;
}

/* about */
.bg-img {
  top: 40%;
  left: 43%;
  inset-inline-end: 55%;
     background: var(--linear-color);
  width: 90% !important;
  height: 100% !important;
  transform: translate(-50%, -50%) !important;
   /*opacity: 0.5;*/
}
.bg-img-two {
  top: 40%;
  left: 55%;
  inset-inline-end: 45%;
  width: 90%;
  height: 100%;
  transform: translate(-50%, -50%);
   background: linear-gradient(270deg,rgba(237, 202, 167, 1) 25%, rgba(242, 237, 229, 1) 100%);
   /*opacity: 0.5;*/
}
/* .icons-about .col-6{
width: fit-content;
} */
/* testimonials */
.testimonials .item img {
  width: 80px;
  height: 80px;
}
.testimonials .arrow-left {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  /* background-color: var(--main-color); */
  background: linear-gradient(152deg,rgba(237, 202, 167, 1) 73%, rgba(242, 237, 229, 1) 100%);
  color: var(--third-color);
  padding: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.testimonials .arrow-left:hover {
  background: white !important;
  color: var(--main-color);
}
.testimonials .arrow-right {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
background: linear-gradient(152deg,rgba(237, 202, 167, 1) 73%, rgba(242, 237, 229, 1) 100%);

  color: var(--third-color);
  padding: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.testimonials .arrow-right:hover {
  background: white;
  color: var(--main-color);
}

/* blog */
.card-img-top {
  object-fit: cover;
  height: 250px;
}
.card-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 17px;
  color: #7a7a7a;
}

/* Footer  */
footer .list-links-site li {
  transition: all 0.3s;
  cursor: pointer;
  width: fit-content;
}
footer .list-links-site li i {
  font-size: 15px;
}
footer .list-links-site li:hover {
  color: var(--third-color);
  transform: translateX(10px);
}

footer .widget-contact i {
   background: linear-gradient(53deg,rgba(237, 202, 167, 1) 8%, rgba(242, 237, 229, 1) 86%);*/
  background-size: cover;
  background-position: center;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
footer .widget-contact a {
  transition: all 0.5s ease-in-out;
}
footer .widget-contact a :hover {
  color: var(--third-color);
}

/* Arabic */
.social-icon {
  width: fit-content;
  inset-inline-start: 0;
  margin-inline-start: 16px;
}

.hero-slider-content {
  inset-inline-start: 0;
}

.contact i {
  margin-inline-end: 16px;
}
footer .list-links-site li i {
  margin-inline-end: 16px;
  /* transform: rotate(180deg); */
}
footer .widget-contact i {
  margin-inline-end: 8px;
}

/* Service Popup Styles */
.service-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.service-popup-container {
  width: 90%;
  max-width: 550px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

.close-popup-btn {
  position: absolute;
  top: 10px;
  right: 15px;

  background: none;
  border: none;
  cursor: pointer;
  color: #000000;
  transition: all 0.3s;
  z-index: 10;
  background-color: var(--fifty-color);
  border-radius: 100px;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.close-popup-btn i {
  font-size: 20px;
}

.popup-img-container {
  height: 280px;
  overflow: hidden;
}

.popup-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.popup-text {
  text-align: center;
}

.popup-title {
  color: var(--second-color);
  margin-bottom: 20px;
  font-size: 28px;
  position: relative;
  display: inline-block;
}

.popup-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--main-color);
}
.newsletter-modal .btn-send{
    width: max-content;
    margin: auto;
}
.service-list {
  list-style: none;
  text-align: left;
}

.service-list .row {
  padding: 20px 10px;
  font-size: 18px;
  color: #555;
  transition: all 0.3s;
}

.service-list div i {
  color: var(--fourth-color);
  font-size: 25px;
}

.services {
  background: linear-gradient(to bottom, #f8fafc, #e4d1b957);
  /* padding-top: 0; */
  /* margin-top: 0; */
}

.form-section {
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.form-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.file-upload-wrapper {
  transition: background-color 0.2s ease;
}
.file-upload-wrapper:hover {
  background-color: #f1f5f9;
}
.preview-container img {
  max-height: 100px;
  object-fit: cover;
}
.btn-primary {
  background-color: var(--main-color);
  border: none;
  transition: background-color 0.3s ease;
}
.btn-primary:hover {
  background-color: var(--fourth-color);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--fourth-color);
  box-shadow: 0 0 0 0.2rem rgba(228, 209, 185, 0.25);
}

/*.services .bg-img {*/
/*  background-color: transparent !important;*/
 /*opacity:0.6 ;*/
/* height:fit-content !important;*/
 
/*}*/
.services .bg-img {
  top: 38%;
height: 500px !important;
background: var(--linear-color);
   

}
.bg-img img {
  width: 100%;
  height: 500px !important;
object-fit:cover
}

/* بقية التنسيقات كما هي */
.play-pause-btn {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(255, 255, 255, 0.8);
  transition: background 0.3s ease;
  z-index: 10;
}
    footer img{
          height: 160px;
  }