@import url(./bootstrap.min.css);
@import url(./bootstrap.min.css.map);
@import url(./all.min.css);
@import url(./owl.carousel.min.css);
@import url(./animate.css);

:root {
  --main_bgColor: #ffffff; /* أبيض نقي لخلفية الموقع بشكل عام */
  --btnColor: #2C65A6; /* أزرق غامق مشابه للون حرف الـ R في اللوجو */
  --textColor: #040f21; /* أسود داكن للنصوص الرئيسية */
  --Secondary-color: #DA291C; /* أحمر مشابه للون الهلال في اللوجو */
  --bgColor: #f7f7f7; /* رمادي فاتح للخلفيات الثانوية */
  --pragrafColor: #8e8d8d; /* رمادي متوسط للفقرات */
  --body_bgColor: #ffffff; /* أبيض نقي لخلفية الـ Body */
  --main_borderColor: 1px solid rgba(0, 0, 0, .125); /* حدود رمادية فاتحة */
  --box_shadow: 10px 12px 20px rgba(44, 101, 166, 0.35); /* ظل باستخدام اللون الأزرق من اللوجو */
}
/* linear-gradient(to bottom, #b2f3de 0%, #ffffff 100%) */
::selection {
  color: rgb(255, 255, 255);
  background: rgb(0, 0, 0);
}
::-webkit-scrollbar {
  width: 10px;

}

::-webkit-scrollbar-track {
  background-color: transparent;
  box-shadow: 0 20px 40px rgb(0 0 0 / 25%);
}

::-webkit-scrollbar-thumb {
  background-color: var(--Secondary-color);
  border-radius: 5px;
  transition: all ease-in-out .3s;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--textColor);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}
a{
    text-decoration: none;
}
li{
    list-style: none;
font-weight:900;
    
}
ul{
    padding: 0;
}
img ,video{
  width: 100%;
}
.logo{
  width: 40%;
}
p{
  line-height: 1.8;
  color: var(--pragrafColor);
}
section {
  overflow: hidden !important;
  padding: 10px !important;
  padding-top: 30px !important;
}

@media screen and (min-width: 768px) {
    :root {
        --nav-name-font-size: 1rem;
        --normal-font-size: 1rem;
    }
}


ul { margin: 0; padding: 0; list-style: none; }
a { text-decoration: none; }
.bd-grid { max-width: 1024px; display: grid; grid-template-columns: 100%; margin-left: 1.5rem; margin-right: 1.5rem; }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    padding: 0 1rem;
    background-color: #FFFFFF;
    z-index: var(--z-fixed);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}
.header-logo { color: var(--dark-color); }
.header-toggle { font-size: 1.7rem; cursor: pointer; }
.nav-menu{
  display: flex
;
    justify-content: center;
    /* display:none ; */
}

 .card iframe {
        position: absolute; top: 33%; left: 0; width: 100%; height: 70%; border: none;
    }
/* زر الهامبرغر */
.nav-btn {
   display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 24px;
    position: fixed;
    z-index: 99999999999;
}


.nav-btn span {
    width: 25px;
    height: 3px;
    background: #333;
}

/* التنقل الرئيسي */
.nav-menu {
    display: flex;
    justify-content: center;
    z-index: 99999999;
}

.nav-list {
    display: flex;
    gap: 20px;
    list-style: none;
}

/* القوائم المنسدلة */
.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    list-style: none;
    padding: 10px;
}

.dropdown.open .dropdown-menu {
    display: block;
}

/* Responsive للموبايل */
@media (max-width: 768px) {
    .nav-btn {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #f9f9f9;
        position:fixed;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
    }
}


.nav-content { display: flex; flex-direction: column; }
.nav-perfil { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 3rem; }
.nav-img { display: flex; justify-content: center; width: 60px; height: 60px; border-radius: 50%; overflow: hidden; margin-bottom: 1rem; }
    .nav-img img { width: 70px; }
.nav-name { display: block; font-size: var(--nav-name-font-size); color: var(--white-color); }
.nav-item { margin-bottom: 2rem; }
.nav-link { color: var(--first-color-light);
     font-weight: 600;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);;
      position: relative;

}
         .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background:black;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

.nav-link:hover { color: var(--white-color);  }
.active { color: var(--white-color); }

.dropdown-link { display: flex; align-items: center; justify-content: space-between; }
.dropdown-icon { font-size: 1.3rem; transition: .5s; }
    .dropdown:hover .dropdown-icon { transform: rotate(180deg); }
.dropdown-menu { margin: 1rem 0 0 1rem; display: none; }
    .dropdown:hover > .dropdown-menu { display: block; }
.dropdown-item { margin: 1rem 0; }

@media screen and (min-width: 576px) {
    .nav { width: 288px; }
}

@media screen and (min-width: 768px) {
    body { margin: 0; }
    .header { height: calc(var(--header-height) + 1rem); }
    .header-logo, .header-toggle { display: none; }

    .nav { width: 100%; }
    .nav-content { flex-direction: row; justify-content: space-between; align-items: center; }
    .nav-perfil { flex-direction: row; text-align: initial; margin-bottom: 0; }
    .nav-img { width: 40px; height: 40px; margin-right: 0.5rem; margin-bottom: 0; }
        .nav-img img { width: 46px; }
    .nav-name { color: var(--dark-color); }
    .nav-list { display: flex; align-items: center; }
    .nav-item { margin: 0 1.5rem; padding: 1.4rem 0; }
    .nav-link { color: var(--dark-color); }
        .nav-link:hover { color: var(--first-color); }
    .active { color: var(--first-color); }

    .dropdown { position: relative; }
    .dropdown-menu { position: fixed; margin: 0; top: calc(var(--header-height) + 1rem); padding: 0.5rem 1.5rem; box-shadow: 0 2px 4px rgba(0, 0, 0, .1); border-radius: .5rem; }
}

@media screen and (min-width: 1024px) {
    .bd-grid { margin-left: auto; margin-right: auto; }
}
/* navbar */
.navbar {
  height: 75px;
  width: 100%;
  background-color: transparent;
  padding: 0 5%;  
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 92212554454554541212;

}





.fix .nav-links a:hover,
.fix .nav-links li:hover {
  color: var(--main_bgColor);
}


  #nav-check {
  display: none;
}


.services_menu {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out .3s !important;
  display: flex;
  flex-direction: column;
  left: 20px;
  width: 300px !important;
}

.services_nav_tranz .services_menu {
  opacity: 1;
  visibility: visible;
  animation-name: tranz;
  animation-duration: .5s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.services_nav_tranz svg {
  transform: rotate(90deg);
  margin-right: 10px;
}

.services_menu li {
  background-color: var(--bgColor);
  box-shadow: 0 20px 40px rgb(0 0 0 / 25%);

  padding: 0 20px;
  width: 100%;
}

.services_menu li a {
  color: #000 !important;
}

.services_menu li a:hover {
  color: var(--btnColor) !important;
}

.fix {
  background-color: var(--bgColor);
  position: fixed !important;
  top: 0;
  right: 0;
  box-shadow: 1px 1px 5px 1px #5c5c5c85;
  z-index: 9561111111665;
  left: 0;
  height: 70px !important;
  transition: all .5s linear;
  animation-name: tranz;
  animation-duration: .5s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  padding: 0 5%;
}
.fix a{
  color: var(--textColor) !important;
}
.Fixd_nav_logo {
  display: none;
}


.fix .Fixd_nav_logo{
  display: block;
}
.fix .nav_trans_logo{
  display: none;
}

@keyframes tranz {
  0% {
    transform: translateY(-100px);
  }

  100% {
    transform: translateY(0px);
  }
}


/* home */
.S1_home{
  background: linear-gradient(to bottom, #b2f3de 0%, #ffffff 100%);
  width: 100%;
  height: 100vh;
  position: relative;
  text-align: center;
  z-index: 1;
  padding-top: 100px !important;
}

.right_img{
  position: absolute;
  left:330px;
  bottom: 130px;
  animation-name: tranzsaa2;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform: rotate(25deg);

}
.owl-dots{
  height: 50px;
  border-radius: 20px;
  text-align: center;
  margin: auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-70px);
}
.owl-carousel button.owl-dot span{
  width: 10px;
  display: block;
  height: 10px;
  border-radius: 50%;
  background-color: #3333337e !important;
  color: #040f21;
  margin: -5px;
}
.owl-carousel button.owl-dot{
  width: 5px;
  height: 5px;
  padding: 15px !important;
  border-radius: 50%;
  margin: 0 5px;
}
.owl-carousel button.owl-dot.active{
  border: 2px solid var(--btnColor);
}
.owl-carousel button.owl-dot.active span{
  width: 10px;
  height: 10px;
  background-color: var(--btnColor) !important;
}
.lift_img{
  position: absolute;
  left:30px;
  bottom: 130px;
  animation-name: tranzsaa;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}


@keyframes tranzsaa {
  0% {
    transform: translateY(50px);
  }
  50% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(50px);
  }
}

@keyframes tranzsaa2 {
  0% {
    transform: rotate(25deg);
  }
  20% {
    transform: rotate(35deg);
  }

  30% {
    transform: rotate(25deg);
  }

  40% {
    transform: rotate(35deg);
  }

  50% {
    transform: rotate(25deg);
  }

  60% {
    transform: rotate(35deg);
  }

  70% {
    transform: rotate(25deg);
  }

  80% {
    transform: rotate(45deg);
  }

  90% {
    transform: rotate(35deg);
  }

  100% {
    transform: rotate(25deg);
  }
}
.S1_home h1 ,.S1_home p ,.S1_home a{
  z-index: 5;
  color: var(--body_bgColor);
  color: var(--btnColor);
}
.S1_home h1{
  font-size: 50px;
  margin-bottom: 20px;
  font-weight: 800;
}
.S1_home p{
  margin-bottom: 70px;
}
.S1_home a{
  color: var(--body_bgColor);
  background-color: var(--btnColor);
  padding: 10px 30px ;
  border-radius: 5px;
}
/* intro */
.intro {
  text-align: center;
  padding: 50px 0;
}
.intro h3{
  padding-bottom: 20px;
  color:var(--textColor);
}
.intro hr{
  width: 50%;
  background-color: var(--btnColor);
  height: 3px;
  margin: auto;
}
/* S2_home */
.S2_home{
  padding: 70px 0 !important;
}
.S2_home .card{
  padding: 10px;
  transition: all ease-in .2s;
  border: 1px solid var(--btnColor);
  border-radius: 10px;

}
.S2_home .card img{
  padding: 20px;
}
.S2_home .card:hover{
  transform: translateY(-20px);
  background: linear-gradient(to bottom,  #ffffff 0%, #fff  50% , #9cf1d6  100%);
  border: 1px solid var(--btnColor);
}


/* products */
.products{
  padding: 70px 0 !important;
}
.products .box{
  border: var(--main_borderColor);
  border-radius: 20px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  margin: 10px 0;
  text-align: center;
}
.products .box img {
  width: 100%;
  padding: 25px;
  transition: all linear .2s;
  height: 250px;
}
.products .box span{
  display: block;
  text-align: left;
}
.products .box span svg{
  font-size: 18px;
  color: var(--btnColor);
  margin-right: 20px;
}
.products .box a{
  color: var(--btnColor);
}
.products .box .timeline{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}
.products .box .timeline p{
  display: flex;
  align-items: center;
  padding-top: 10px;
}
.products .box .timeline button{
  width: 65% !important;  
  border-radius: 30px;
  margin: 0 !important;
}
.products .box  a{
  font-size: 18px !important;

}
.products .box .timeline span svg{
  margin-right: 5px  ;
}
.S4_home{
  padding: 70px 0;
}
.S4_home h4{
  text-align: center;
  margin: 10px 0;
}
.products .cart_fav{
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  display: none;
}              
.products .cart_fav svg{
  padding: 15px;
  background-color: var(--btnColor);
  color: var(--main_bgColor);
  border-radius: 10px;
  font-size: 25px;
  margin: 15px;
  transition:  all ease-in .3s;
}
.products .box:hover .img_1{
  opacity: 0;
}
.products .box:hover .img_2{
  opacity: 1;
}
.products .box:hover .cart_fav{
  display: flex;
  align-items: center;
  justify-content: center;
}
.products .box:hover .box_content{
  display: none;
}





/* top_sections */
.top_sections{
  border-radius: 5px;
  border: 1px solid var(--btnColor);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.top_sections h3{
  background-color: var(--btnColor);
  margin: 0;
  padding:10px;
  font-size: 20px;
  color: var(--body_bgColor);
}
.top_sections a{
  margin-left: 100px;
  color: var(--textColor);
  transition: all ease-in .3s;
  padding: 5px;
  border: var(--main_borderColor);
  border-radius: 5px;
  font-size: 15px;
}
.top_sections a:hover{
  color: var(--body_bgColor);
  background-color: var(--btnColor);
}
.intro_sections{
  background-image: url(../imgs/clinic_03.jpg);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 65vh;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 0;
}
.intro_sections::after{
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #0000003f;
  z-index: -1;
}
.intro_sections h1{
  color: var(--bgColor);
  font-size: 50px;
}
.intro_sections ul{
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.intro_sections ul li{
  color: var(--bgColor);
  margin: 0 10px;
  font-size: 18px;
  font-weight: 600 !important;
}
.intro_sections ul li a{
  color: var(--bgColor);
}
.intro input{
  width: 90%;
  height: 40px;
  border-radius: 5px;
  padding-right: 20px;
}
.intro button{
  width: 4%;
  height: 40px;
  background-color: var(--btnColor);
  border-radius: 5px;
  border: none;
  color: var(--body_bgColor);
}
/* Categorie */
.Categorie{
  padding-bottom: 70px;
}
.Categorie .ssaa{
  width: 20%;
}
/* Login */
.Login{
  padding-top: 70px;
}
.form{
  padding: 25px;
  border: var(--main_borderColor);
  border-radius: 5px;
  width: 50%;
  margin: 70px auto;
}
.form input{
  width: 100%;
  height: 40px;
  margin-bottom: 20px;
  padding:0 25px ;
}
.form h3{
  margin-bottom: 20px;
  color: var(--textColor);
}
.form label{
  margin-bottom: 10px;
  color: var(--pragrafColor);
  font-size: 15px;
}
.form .lost_pass , .send_pass{
  color: var(--btnColor);
}
.form .lost_pass{
  cursor: pointer;
}
.form a{
  background-color: var(--textColor);
  text-align: center;
}
#Git_Back{
  background-color: var(--textColor);
}
#Git_Back:hover{
  background-color: transparent !important;
}
.form .lost_pass svg ,  .send_pass svg{
  margin-right: 10px;
}
.lost_pass_form{
  display: none;
}
.lost_pass_container .Login_form{
  display: none;
}
.lost_pass_container .lost_pass_form{
  display: block;
}
/* checkout */
.checkout{
  padding: 70px 0;
}
.supTotal a ,.checkout a{
  text-align: center;
}
/* cart */
.cart{
  padding-top: 70px;
}
.supTotal {
  padding: 70px 0;
}
/* cart_sidbar */
.cart_open_tool{
  position: fixed;
  right: 0;
  top: 100px;
  bottom: 0;
  background-color: var(--btnColor);
  width: 50px;
  height: 50px;
  z-index: 15151515;  
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cart_open_tool svg{
  font-size: 30px;
  color: var(--body_bgColor);
}
.cart_sidbar{
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--body_bgColor);
  width: 0px;
  z-index: 51516116151515;
  transition: all ease-in .1s;
  overflow-y: scroll;
}
.cart_sidbar .intro_CArt{
  display: flex;
  justify-content: space-between;
  padding: 25px;
}
.cart_sidbar .intro_CArt svg{
  font-size: 35px;
  color: var(--btnColor);
}
.Show{
  width: 400px !important;
}
.cart_sidbar .row_In_Cart{
  margin: 10px 0;
}
.cart_sidbar .box_row_cart{
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart_sidbar .row_In_Cart img{
  border-radius: 5px;
}
.cart_sidbar .row_In_Cart h5{
  font-size: 16px;
}
.cart_sidbar .row_In_Cart .Qunte{
  display: flex;
  justify-content: space-between;  
  align-items: center;
  margin-top: 15px;
} 
.cart_sidbar .row_In_Cart .total_CArt{
  text-align: center;
  margin-top: 10px;
  
}
.cart_sidbar .row_In_Cart .Qunte button{
  background-color: var(--btnColor);
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
}
.cart_sidbar .row_In_Cart svg{
  color: var(--btnColor);
  font-size: 20px;
}
/* contacts */
.contacts{
  padding: 70px 0;
}
.contacts .form{
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}
.contacts .form textarea ,.contacts .form input{
  width: 100%;
  border-radius: 5px;
  padding-right: 20px;
  padding-top: 5px;
  border: var(--main_borderColor);
}
.contacts iframe{
  width: 100%;
  height: 100%;
}
.contacts .location{
  margin-top: 30px;
}
.contacts .location ul{
  display: flex;
  margin: 30px 0;
}
.contacts .location ul li{
  margin-left: 20px;
  color: var(--textColor);
  font-size: 18px;
}
.contacts .location ul li a{
  color: var(--textColor);
  transition: all ease-in .3s;
}
.contacts .location ul li a:hover{
  color: var(--btnColor);
}
.contacts .contact_sochial{
  margin-top: 30px;
}
.contacts .contact_sochial img{
  width: 150px;
  
}
.contacts .contact_sochial ul{
  display: flex;
}
.contacts .contact_sochial li{
  margin: 0 5px;
}
.contacts .contact_sochial svg{
  font-size: 25px;
  color:var(--textColor);
  transition: all ease-in .3s;
}
.contacts .contact_sochial svg:hover{
  color: var(--btnColor);
}
/* single_pro */
.single_pro{
  padding: 70px 0;
}
.single_pro .box{
  margin-top: 30px; 
}
.single_pro .box h3{
  margin: 20px 0;
}
.single_pro .box span{
  color: var(--pragrafColor);
}
.single_pro .box span del{
  color: var(--btnColor);
  margin-right: 5px;
}
.single_pro .box  p{
  margin: 20px 0;
}
/* cart */
.cart img{
  width: 100px !important;
}
.cart .Qunte{
  display: flex;
}
.cart .Qunte button{
  padding: 5px;
  background-color: var(--btnColor);
  border: none;
  border-radius: 5px;
  margin: 0 10px;
}
.cart_page_contant{
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--main_borderColor);
}
.cart_page_contant button {
  background-color: var(--btnColor);
  padding: 10px;
  border: none;
  border-radius: 5px;
  color: #fff;
}
.cart_total_contant{
  border: var(--main_borderColor);
  padding: 10px;
  margin-bottom: 25px;
}
.cart_total_contant h3{
  margin-bottom: 30px;
}
.cart_total_contant h4{
  margin-bottom: 10px;
  font-size: 20px;
}
.cart_total_contant h5{
  font-size: 16px;

}
.checkout_box_container{
  width: 50%;
  margin: auto;
}

/* footer */
.footer{
  padding: 20px 0;
  text-align: center;
  background-color: var(--bgColor );
  box-shadow: 1px 1px 5px 1px rgb(0 0 0 / 25%);

}
.top_foot img{
  width: 300px;
  margin-bottom: 50px;
  border-radius: 20px;
}
.top_foot h3{
  color: var(--textColor);
  font-size: 25px;
}
.top_foot h4{
  margin-top: 30px;
  font-size: 30px;
  color: var(--textColor);

}
.top_foot p{
  color: #666;
}
.top_foot ul{
  margin: 20px 0;
  text-align: center;

}
.top_foot ul li{
  margin: 10px 0;
}
.top_foot ul li svg{
  color: var(--textColor);
  font-size: 30px;
}
.top_foot ul li a{
  color: var(--textColor);
  font-size: 16px;
  transition: all ease-in .3s;
}
.top_foot ul li a:hover{
  margin-right: 5px;
}
.top_foot .sochial{
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.top_foot .sochial li{
  margin: 0 5px ;
}
.last_foot {
  border-top: var(--main_borderColor);
  padding-top: 20px;
}
.last_foot ul{
  justify-content: space-between;
  display: flex;
}
.last_foot li{
  color: var(--Secondary-color);
}
.last_foot a{
  color: var(--btnColor);
  font-weight: 800;
}
/* ////////////////// */
/* Pagination */
.Pagination {
  padding: 70px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Pagination h4 {
  padding: 5px;
  border-radius: 5px;
  border: var(--main_borderColor);
  margin: 0 10px;
  font-size: 20px;
  transition: all ease-in .3s;
}

.Pagination h4:hover {
  background-color: var(--btnColor);
  color: var(--main_bgColor);
}

.Pagination .active {
  background-color: var(--btnColor);
  color: var(--main_bgColor);
}
/* Add_to_Cart_chose_container */
.Add_to_Cart_chose_container{
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 626562;
  background-color: #00000095;
  transition: all ease-in .3s;
  overflow: hidden;
}
.Show_Cart_Chose{
  height: 100% !important;
}
.Add_to_Cart_chose_container .Add_to_Cart_chose{
  width: 500px;
  height: 500px;
  background-color: var(--body_bgColor);
  overflow: scroll !important;
}
.Add_to_Cart_chose .box{
  padding: 25px;
}
.Add_to_Cart_chose .box h3{
  color: var(--textColor);
  margin-bottom: 20px;
}
.Add_to_Cart_chose .box .product_detals ul {
  margin-right: 20px;
}
.Add_to_Cart_chose .box .product_detals .droduct_d_img{
  display: flex;
}
.Add_to_Cart_chose .box .product_detals ul li{
  margin: 5px 0;
  list-style:disc;
}
.Add_to_Cart_chose .box .product_detals img{
  width: 100px !important;
}
.Add_to_Cart_chose .box .product_chose{
  display: flex;  
  justify-content: space-between;
  margin-top: 20px;
  align-items: center;

}
.Add_to_Cart_chose .box .product_chose .right_side h5{
  margin-bottom: 10px;
  color: var(--textColor);
}
.Add_to_Cart_chose .box .product_chose .right_side span{
  display: block;
  color: var(--pragrafColor);
  margin-bottom: 10px;
}
.Add_to_Cart_chose .box .product_chose .right_side span del{
  color: var(--btnColor);
}
.Add_to_Cart_chose .box .product_chose .product_Quntity{
  padding: 10px;
  border: 2px solid var(--btnColor);
  border-radius: 5px;
}
.Add_to_Cart_chose .box .product_chose .product_Quntity button{
  padding: 5px 10px;
  background-color: var(--btnColor);
  color: var(--body_bgColor);
  border: none;
  border-radius: 5px;
}
.product_chose_container{
  border: var(--main_borderColor);
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
}
.close_chose svg{
  margin-right: 10px;
  margin-top: 10px;
  font-size: 30px;
  color: var(--btnColor);
}

.sort_Products{
  width: 400px;
  display: flex;
}
.sort_Products select {
    font-size: 16px !important;
    margin-left: 10px;
}
.sort_Products select:focus{
  box-shadow: none;
}
.sort_Products select option:hover,
 .sort_Products select option:focus,
 .sort_Products select option:active,
.sort_Products select option:checked {
  background: linear-gradient(#5A2569, #5A2569) !important;
}
.sort_Products option:checked{
  background-color: var(--bgColor) !important;
}
.search_bar{
  text-align: center;
  margin-bottom: 20px;
}
.search_bar input{
  width: 50%;
  height: 40px;
  border: var(--main_borderColor);
  border-radius: 5px;
  padding: 0 25px;
  background-color: var(--main_bgColor);
}
.search_bar button{
  border: var(--main_borderColor);
  border-radius: 5px;
  background-color: var(--btnColor);
  color: var(--main_bgColor);
  height: 40px;
  padding: 0 20px;
}
.timeline svg{
  color: var(--btnColor);
  margin-right: 20px;
}
.loca_s_p{
  margin: 10px 0;
}
.loca_s_p svg{
  color: var(--btnColor);
  margin-left: 20px;
}
/* blog */
.blog {
  padding: 70px 0;
  position: relative;
  padding-bottom: 80px !important;
}

.blog .box {
  padding: 10px;
  border-radius: 5px;
}

.blog .box .images img {
  margin-bottom: 20px;
  border-radius: 30px !important;
  height: 350px;
}
.S_blog .box .images img {
  height: 100%;
}
.blog .box span img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-left: 10px;
}

.blog .box span svg {
  margin-left: 10px;
  color: var(--btnColor);

}

.blog .box span:not(:last-child) {
  padding: 0 20px;
}

.blog .box span {
  padding: 0 20px;
}

.blog .box h3 {
  margin: 20px 0;

}

.blog .box p {
  margin-bottom: 30px;
}

.blog .box .more {
  padding: 10px 30px;
  background-color: var(--btnColor);
  border-radius: 5px;
  color: var(--textColor);
  transition: all ease-in .2s;
}

.blog .box a:hover {
  background-color: transparent;
  color: var(--Secondary-color);
  border: var(--main_borderColor);
}

.blog ul {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
.blog .catt{
  position: sticky;
  top: 0;
}
.blog .ssaafvvvx{
  position: relative;
}
.blog .catt ul {
  flex-direction: column;
}
  
.more_blog ul {
  align-items: center;
}

.blog .catt ul li a {
  background-color: transparent;
  width: 100%;
  border: 1px solid var(--btnColor);
  border-radius: 5px;
  margin: 10px 0;
  color: var(--Secondary-color);
  display: block;
  padding: 10px 0;
  text-align: center;
  transition: all ease-in .3s;
}

.blog .catt ul li a:hover {
  background-color: var(--btnColor);
  color: var(--textColor);
}

.blog li img {
  width: 100px;
  height: 100px;
  border-radius: 5px;
}

.blog .more_blog a {
  display: block;
  margin-bottom: 20px;
}

.blog .more_blog a {
  color: var(--Secondary-color);
}
.blog .more_blog a:hover{
  color: var(--btnColor);
  border: none;
}
.blog .more_blog span {
  padding: 0 !important;
  border: none !important;
}

.blog h4 {
  color: var(--btnColor);
  margin-bottom: 20px;
}

/* contact_us */
.contact_us{
  padding: 70px 0;
}
.contact_us .form{
  padding: 70px 0;
  width: 100%;
}
.contact_us .form input{
    height: 40px;
    border-radius: 5px;
    margin: 10px 0;
}
.contact_us .form input textarea{
  margin: 10px 0;
  border-radius: 5px;
}
.contact_us .form a{
  background-color: transparent !important;
}

.contact_us .form button{
  padding: 10px 30px;
  background-color: var(--btnColor);
  border-radius: 5px;
  color: var(--body_bgColor);
  border: var(--main_borderColor);
  transition: all ease-in .3s;
  display: block;
  margin-top: 30px;
}
.contact_us .form select{
  margin: 10px 0;
  padding: 10px;
}
.contact_us .form-floating>.form-select~label{
      transform: scale(.85) translateY(-.1rem) translateX(1rem);
}
.contact_us .form button:hover{
  background-color: transparent;
  color: var(--btnColor);
}
.contact_us .form .all_right {
  display: flex;
  align-items: center;
}
.contact_us .form .all_right svg{
  color: var(--btnColor);
  font-size: 30px;
  margin-left: 20px;
}
.contact_us .form .all_right h3{
  font-size: 18px;
  margin: 20px 0;
}
.contact_us .form .sochial{
  display: flex;
}
.contact_us  .form .zzz p{
  margin: 20px 0;
}
.contact_us .form .sochial a{
  color: var(--btnColor);
  font-size: 18px;
  margin: 5px;
}
.fake-div {
  width: 100%;
  height: 1280px;
  position: relative;
}
.LogIn{
  padding: 70px 0 !important;
}
.LogIn .form{
  padding: 25px ;
  text-align: center;
  width: 50%;
  margin: auto;
  background-color: var(--bgColor);
  border-radius: 5px;
}
.LogIn .form input{
  width: 100%;
  height: 40px;
  margin: 20px 0;
  padding: 20px;
  border: var(--main_borderColor);
  border-radius: 5px;
}
.LogIn .form button,
.LogIn .form a {
  width: 100%;
  border-radius: 5px;
  margin-top: 20px ;
  padding: 20px 0;
  background-color: #000;
  border: var(--main_borderColor);
  color: var(--main_bgColor);
  font-size: 20px;
}


.S_product{
  padding: 70px 0 !important;
}
.S_product .box .S_P_img_1 button{
   height: 100%;
   border: none;
}
.S_product .box  button{
   border: none;
}
.S_product .S_P_img_1 img{
  height: 100%;

}
.S_product .S_P_img_2 img{
  margin-bottom: 10px;
  border-radius: 5px;
}
.S_product .last img {
  margin: 0 !important;
}
.S_product .video_btn{
  position: relative;
}
.S_product .video_btn::after{
  width: 100%;  
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  position: absolute ;
  background-color: rgba(223, 223, 223, 0.11);
  margin-bottom: 10px;
  z-index: 9999999999999999999999999999999;
}
.S_product h3{
  color: var(--btnColor);
  margin-bottom: 20px;
}
.S_product .add-to-cart{
  width: 100%;
}
.S_product h5 a{
  color: var(--btnColor);
}
.S_product h5 {
  margin: 15px 0;
}
.S_product h5 input{
  border-radius: 5px;
}
.checkout{
  padding: 70px 0;
}
.supTotal a ,.checkout a{
  text-align: center;
}
.checkout textarea{
  width: 100%;
  border: var(--main_borderColor);
  border-radius: 5px;
  padding: 10px;
}

.add-to-cart{
  display: block;
  margin-top: 20px;
  width: 100%;
  background-color: var(--btnColor);
  border: none;
  border-radius: 5px;
  padding: 10px 0;
  color: var(--body_bgColor);
  transition: all ease-in .3s;
  border: 1px solid var(--btnColor);
}
.about{
  padding: 70px 0 !important;
}
.about img{
  border-radius: 20px;
}














































 /* media */
 @media screen and (min-width:1px) and (max-width:767px){
  h1 {
      font-size: 22px !important;
    }
  
    h3 {
      font-size: 20px !important;
  
    }
  
    p {
      font-size: 14px !important;
    }

  .Pagination h4 {
    padding: 5px;
  }
.top_foot .links{
  flex-direction: column;
}
.top_foot .links li{
  margin: 10px 0;
}
.top_foot .sochial li{
  font-size: 20px;
  margin:  0 5px;
}
.Show {
  width: 100% !important;

}
.intro input{
  width: 60% !important;
}
.intro button{
  width: 20%;
}
.form{
  width: 100% !important;
}
.cart_page_contant{
  width: 20% !important;
}
.cart_page_contant h4{
  font-size: 16px;
}
.cart_page_contant img{
  width: 50px !important;
}
.checkout_box_container{
  width: 100%;
}
.Add_to_Cart_chose_container {
  align-items: flex-end;
}
.owl-carousel .owl-nav.disabled .owl-prev,
.owl-carousel .owl-nav.disabled .owl-next{
  margin: 0 !important;
  margin-left: 5px !important;

}
.top_sections a{
  margin-left: 75px !important;
}
.Categorie .ssaa{
  width: 50% !important;
}
.sm-d-none{
  display: none !important;
}
 }


 @media screen and (min-width:768px) and (max-width:1023px){
.Categorie .ssaa{
  width: 33.333% !important;
}
  
 }


 .scroll_up {
   position: fixed;
   bottom: 50px;
   left: 50px;
   background-color: var(--btnColor);
   padding: 10px 14px;
   border-radius: 50%;
   color: #fff;
   display: none;
   z-index: 46555656;
   cursor: pointer;
   transition: all .5s ease-in-out;
 }

 .scroll_transition {
   transform: translateY(100px);
   display: block;

 }

 .show_scroll {
   transition: all .5s ease-in-out;
   transform: translateY(0);
   box-shadow: #8f8f8f 1px 1px 9px;

 }

 

.WahtsApp {
  position: fixed;
  left: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #11BA17;
  display: flex;
  align-items: center;
  z-index: 222;
  justify-content: center;
}

.phone {
  bottom: 90px;
  position: fixed;
  left: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  z-index: 222;
  justify-content: center;
  background-color: #213693;
}

.phone a svg {
  color: #fff;
  font-size: 25px;
}
.WahtsApp a svg {
  color: #fff;
  font-size: 25px;
}
.caa{
  margin-top: 10px;
  
}
.input_fooot input{
  border: 2px solid var(--btnColor);
}
.input_fooot button{
  border: 2px solid var(--btnColor);
}

body {
  min-height: 100vh;

  font-family: "Segoe UI", system-ui, sans-serif;
}
* {
    margin: 0;
    padding: 0;
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
      "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #d9d1d1;
  }
  .nav h4 {
    font-style: italic;
    color: #666;
    padding-right: 150px;
  }
  .nav .i-font {
    padding-left: 75px;
    color: #666;
    font-size: 12px;
  }
  .nav .i-font i {
    padding-right: 40px;
  }
  .nav .i-font a {
color: #666 }
  .logo-nav {
    margin: 30px;

  }
  .nav-links {
    font-size: 14px;
 display: flex;
 align-items: center;
 justify-content: center;
 
  }
  .nav-links a {
    text-decoration: none;
    text-transform: uppercase;
    color: #3c3838ba;
    font-weight: bold;
    text-align: center;
    margin-right: 5%;

  }
  .home {
    background-color: #30bf3b;
    color: white;
    padding: 6px 19px 5px;
    border-bottom: 3px solid #04040459;
  }
  
  .nav-links a i {
    margin-left: 5px;
    color: #30bf3b;
  }
  
  .magni {
    color: #0000009a;
  }
  .article {
    width: 100%;
    height: 598px;
    /* background-image: url("../imgs/slider-bg.png"); */
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .article .box {
    position: relative;
    top: 300px;
    right: 141px;
    width: 548px;
    height: 76%;
    background-color: rgba(0, 0, 0, 0.3);
    border-left: 3px solid #30bf3b;
  }
  
  .article .box h1 {
    color: white;
    padding: 42px 40px;
  }
  
  .article .box p {
    color: white;
    font-size: 15px;
    line-height: 2;
    padding-right: 42px;
  }
  .article_2 {
    width: 100%;
    height: 598px;
    background-image: url("../imgs/banner2.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .article_2 .box {
    position: relative;
    top: 300px;
    left: 141px;
    width: 548px;
    height: 260px;
    background-color: rgba(0, 0, 0, 0.3);
    border-left: 3px solid #30bf3b;
  }
  
  .article_2 .box h1 {
    color: white;
    padding: 42px 40px;
  }
  
  .article_2 .box p {
    color: white;
    font-size: 15px;
    line-height: 2;
    padding-left: 42px;
  }
  
  .two-box {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    direction: rtl;
  }
  
  .two-box .box-img1 {
    width: 520px;
    height: 238px;
    background-image: linear-gradient(to left, transparent, black),
      url("../imgs/clinic_01.jpg");
    background-size: cover;
  }
  
  .two-box .box-img1 h1 {
    color: white;
    padding-right: 44px;
    padding-top: 50px;
  }
  
  .two-box .box-img1 p {
    color: white;
    padding-right: 44px;
  }
  
  .two-box .box-img1 a {
    background-color: var(--btnColor);
    color: white;
    display: inline-block;
    margin-right: 44px;
    margin-top: 20px;
    padding: 14px 24px;
    border-right: 3px solid #04040459;
    text-decoration: none;
    font-weight: bold;
  }
  
  .two-box .box-img2 {
    width: 520px;
    height: 238px;
    background-image: linear-gradient(to left, transparent, black),
      url("../imgs/clinic_02.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .two-box .box-img2 h1 {
    color: white;
    padding-right: 44px;
    padding-top: 50px;
  }
  
  .two-box .box-img2 p {
    color: white;
    padding-right: 44px;
  }
  
  .two-box .box-img2 a {
    background-color: var(--btnColor);
    color: white;
    display: inline-block;
    margin-right: 44px;
    margin-top: 20px;
    padding: 14px 24px;
    border-left: 3px solid #04040459;
    text-decoration: none;
    font-weight: bold;
  }
  
  .center {
    text-align: center;
    margin-top: 70px;
    margin-bottom: 70px;
    font-size: 25px;
  }
  .food {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
  }
   .Receipies {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 5%;
    width: 100%;
    height: 40vh;
    backdrop-filter: blur(10px);
    border: 5px 8px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateX(var(--card-rotate-x))
      rotateY(var(--card-rotate-y));
    transition: all var(--card-transition);
    transform-style: preserve-3d;
    will-change: transform;
    opacity: 1;
  }
  .Receipies .img img {
    width: 350px;
    height: 300px;
    border-bottom: 3px solid #30bf3b;
  }
  .Receipies .img p {
    text-align: center;
    color: #424242;
  }
  .Receipies .img a {
    text-align: center;
background-color: var(--btnColor);
    color: white;
    display: inline-block;
    margin-right: 44px;
    margin-top: 20px;
    padding: 14px 24px;
    border-right: 3px solid #04040459;
    text-decoration: none;
    font-weight: bold;  }
  .Receipies .img .star {
    text-align: center;
    font-size: 10px;
    color: orange;
  }
  .photo {
    display: grid;
    grid-template-rows: repeat(1, max-content);
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("../imgs/inner-side-banner.png");
    width: 100%;
    height: 640px;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
  
  .photo h1 {
    color: white;
    font-size: 30px;
    text-align: center;
    grid-area: 4;
    width: fit-content;
    height: fit-content;
    margin: auto;
  }
  
  .photo p {
    color: white;
    font-size: 15px;
    margin: auto;
    text-align: center;
    width: 600px;
    height: fit-content;
    grid-area: 5;
  }
  
  .photo .btn {
    background-color: var(--btnColor);
    color: white;
    display: block;
    margin: auto;
    padding: 10px;
    border-left: 3px solid #04040459;
    text-decoration: none;
    font-weight: bold;
    width: 238px;
    grid-area: 6;
  }
  
  .photo .angle-up {
    position: fixed;
    bottom: 52px;
    right: 33px;
    background-color: #30bf3b;
    color: white;
    display: inline-block;
    margin-left: 94%;
    margin-top: 25px;
    padding: 9px 17px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0px 0px 4px 0px rgb(70, 69, 69);
    z-index: 100000;
  }
  
  .feedback {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
  }
  
  .feedback .feed {
    display: flex;
    align-items: center;
  }
  .feedback .feed .box-text {
    margin-left: 20px;
    line-height: 2.4;
  }
  
  .feedback .feed .box-text .h-1 {
    color: forestgreen;
    font-size: 14px;
  }
  
  .feedback .feed .box-text h3 {
    font-size: 16px;
    font-weight: bold;
  }
  
  .feedback .feed .box-text .i {
    color: orange;
    font-size: 10px;
  }
  
  .feedback .feed .box-text .h-2 {
    color: gray;
    font-size: 13px;
  }
  .subscribe {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    margin: 80px 0 30px;
  }
  
  .subscribe .sub-1 {
    width: 350px;
    height: 415px;
    border: 8px solid #30bf3b;
  }
  
  .subscribe .sub-1 h1 {
    color: #30bf3b;
    text-align: center;
    padding: 35px;
    font-size: 55px;
    font-family: fangsong;
    font-style: italic;
  }
  
  .subscribe .sub-1 p {
    color: #000000c2;
    text-align: center;
    font-size: 20px;
    font-style: italic;
    font-weight: bold;
    margin-top: -30px;
  }
  
  .subscribe .sub-1 h5 {
    text-align: center;
    padding: 40px;
    font-size: 15px;
    font-weight: normal;
    margin-top: -17px;
  }
  
  .subscribe .sub-1 .history {
    display: inline-block;
    color: #30bf3b;
    padding-left: 30px;
    font-size: 12px;
    font-weight: normal;
    margin-top: 40px;
  }
  
  .subscribe .sub-1 .comments {
    display: inline-block;
    padding-left: 100px;
    color: #808080c4;
    font-size: 12px;
    font-weight: normal;
  }
  .subscribe .sub-photo {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("https://i.postimg.cc/tTcY6Hs8/bg1.jpg");
    background-size: cover;
    background-position: bottom;
    width: 370px;
    height: 415px;
  }
  
  .subscribe .sub-photo input {
    background-color: white;
    display: inline-block;
    margin-top: 30px;
    margin-left: 16px;
    padding: 20px;
    width: 341px;
    border-left: 5px solid green;
  }
  
  .subscribe .sub-photo input::placeholder {
    font-style: italic;
    font-size: 11px;
  }
  
  .subscribe .sub-photo a {
    background-color: #30bf3b;
    color: white;
    display: inline-block;
    margin-left: 17px;
    margin-top: 20px;
    padding: 20px 133px;
    border-left: 3px solid #04040459;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
  }
  
  .subscribe .sub-photo p {
    color: white;
    font-size: 12px;
    font-style: italic;
    margin-top: 30px;
    margin-left: 20px;
    line-height: 2;
  }
  
  .special {
    background-image: url("https://i.postimg.cc/d13hD0V8/add.png");
    background-size: cover;
    width: 370px;
    height: 415px;
  }
  
  .footer {
    width: 100%;
    border-top: 1px solid #d9d1d1;
    border-bottom: 1px solid #d9d1d1;
  }
  .footer .footer-1 h3 {
    margin-top: 40px;
    margin-left: 100px;
    font-weight: bold;
    font-size: 18px;
  }
  
  .footer .footer-1 .footer-photo {
    margin: 30px 0 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer .footer-1 .footer-photo img {
    width: 190px;
  }
  .footer .footer-1 .footer-photo .background-green {
    position: relative;
    width: 190px;
    background-size: cover;
    background-image: linear-gradient(
        rgba(66, 212, 53, 0.9),
        rgba(66, 212, 53, 0.9)
      ),
      url("https://i.postimg.cc/Wb35jmV3/insta3.jpg");
  }
  .footer .footer-1 .footer-photo .background-green i {
    color: white;
    font-size: 17px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  footer p {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin: 30px 0;
  }
  
  /* Start Media Query */
  
  @media (max-width: 768px) {
    html,
    body {
      max-width: 100%;
      overflow-x: hidden;
    }
    .nav {
      display: flex;
      justify-content: center;
    }
    .nav h4 {
font-style: italic;
    color: #666;
    padding-right: 125px;
    font-size: medium;
    }
    .nav .i-font {
      display: none;
    }
    .logo {
     display: block;
        width: 13%;
        position: absolute;
        z-index: 9999999;
        margin-top: -24px;
        left: 60%;
    }
    .logo img {
      display: block;
      margin: 20px auto;
    }
    .nav-links {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }
    .nav-links a {
      padding-bottom: 17px;
      color: #646161;
      font-size: small;
    }
    .magni {
      color: white;
      margin: -45px -16px;
    }
    .article {
      margin-top: 8%;
        width: 100%;
        background-size: cover;
        background-position: center;
height: 16vh;
    }
 
    .article .box {
      width: 100%;
      margin: 0 -70px;
      left: 65px;
        top: 15%;

    }
    .article .box h1 {
      font-size: larger;
      color: #222121;
      text-shadow: 1px 2px 5px white;
    }
    .article .box p {
      margin: -20px 0px;
    }
    .two-box {
      display: block;
    }
    .two-box .box-img1 {
      width: 100%;
      margin-bottom: 50px;
    }
    .two-box .box-img2 {
      width: 100%;
    }
    .photo h1 {
      text-align: center;
      font-size: xx-large;
    }
    .photo p {
      width: 100%;
    }
    .photo .btn {
      text-align: center;
      padding: 8px;
      margin-top: 70px;
    }
    .subscribe {
      display: block;
      margin: 0;
    }
    .subscribe .sub-1 {
      margin: 30px auto;
      width: 330px;
    }
    .subscribe .sub-1 .history {
      margin: 10px -5px;
    }
    .subscribe .sub-2 {
      text-align: center;
    }
    .subscribe .sub-photo {
      margin: auto;
    }
    .subscribe .special {
      margin: 30px auto;
    }
    .footer .footer-1 h3 {
      text-align: center;
      margin: 40px auto;
    }
    .footer .footer-1 .footer-photo {
      display: block;
    }
    .footer .footer-1 .footer-photo img {
      display: block;
      margin: auto;
      padding-bottom: 15px;
      width: 340px;
    }
    .footer .footer-1 .footer-photo .background-green {
      position: relative;
      width: 340px;
      height: 355px;
      background-size: cover;
      background-image: linear-gradient(
          rgba(66, 212, 53, 0.9),
          rgba(66, 212, 53, 0.9)
        ),
        url("../images/bg-img/insta3.jpg");
      margin: 0 auto 15px;
    }
    footer p {
      text-align: center;
      margin: 20px;
    }
  }
  @property --card-rotate-x {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }
  
  @property --card-rotate-y {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }
  
  :root {
    --card-transition: 0.3s ease;
    --slider-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --card-tilt-max: 25deg;
  }
  

  
.newdev{
  place-items: center;

}
  
  .slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 60px 0;
    display: grid;


  }
  
  .slider-wrapper {
    overflow: hidden;
    margin: 0 80px;
    padding: 30px 0;
  }
  
  .slider {
    display: flex;
    transition: transform var(--slider-transition);
  }
  
  .slide-group {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 1rem;
  }

  
  .card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 5px 8px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateX(var(--card-rotate-x))
      rotateY(var(--card-rotate-y));
    transition: all var(--card-transition);
    transform-style: preserve-3d;
    will-change: transform;
    opacity: 1;
  }
  .card:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .slide-group:hover .card:not(:hover) {
    opacity: 0.5;
  }
  
  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  .card h3 {
    color: #001c1f;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .card p {
    color: #0a0000;
    font-size: 1.1rem;
    line-height: 1.4;
  }
  


  
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(10, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .dot.active {
    background: rgb(61, 189, 136);
    transform: scale(1.5);
  }
  
  #bokeh-background {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .bokeh {
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
    filter: blur(10px);
    box-shadow: 0 0 30px 15px rgba(255, 69, 0, 0.15);
    animation: float 15s infinite;
  }
  
  .bokeh::before,
  .bokeh::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: inherit;
    filter: blur(30px);
    z-index: -1;
  }
  
  .bokeh::before {
    transform: rotate(45deg);
  }
  
  @keyframes float {
    0% {
      transform: translateY(0) scale(1);
    }
    50% {
      transform: translateY(-100px) scale(1.5);
    }
    100% {
      transform: translateY(0) scale(1);
    }
  }
 
  
  @media (max-width: 600px) {
    .slide-group {
      grid-template-columns: 1fr; /* كارت واحد فقط */
    }
  
    .slider-wrapper {
      margin: 0 20px; /* قلل الهوامش */
      padding: 20px 0;
    }
  
    .card {
      padding: 16px;
    }
  }
  
  
  