*{
    box-sizing: border-box;
}
img{
    max-width: 100%;
}
.navbar-brand img{
width: 100px;
}
body {
font-family: 'Cairo', sans-serif;
}
a{
text-decoration: none;
}
header {
  top: 0;
  inset-inline: 0;
  transition: all 0.5s linear;
  }
header.fix-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  background: linear-gradient(
    to bottom,
    #8A2033 0%,
    #7A1528 50%,
    #68111F 100%
  );
  animation-name: headerAnim;
  animation-duration: 0.4s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.nav-background{
  background: linear-gradient(
    to bottom,
    #8A2033 0%,
    #7A1528 50%,
    #68111F 100%
  );
  padding: 17px 17px;
}
/* Header navigation links override for both Bootstrap navbar and custom header styles */
.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link.header-before,
.header-before {
  color: #FFFFFF !important;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s cubic-bezier(0.82, 0.14, 0.1, 0.85);
  padding-inline-start: 10px;
  padding-inline-end: 10px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.header-before:hover,
.navbar-light .navbar-nav .nav-link.header-before:focus,
.navbar-light .navbar-nav .nav-link.header-before.active,
.header-before:hover,
.header-before:focus,
.header-before.active {
  color: #E5CB96 !important;
}

.header-before::before {
  content: '';
  position: absolute;
  width: 0px;
  height: 3px;
  inset-inline-start: 0;
  bottom: -3px;
  background: #E5CB96;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.82, 0.14, 0.1, 0.85);
}

.header-before:hover::before,
.header-before.active::before,
.nav-link.header-before:hover::before,
.nav-link.header-before.active::before {
  width: 100%;
  height: 3px; 
  transition: all 0.3s cubic-bezier(0.82, 0.14, 0.1, 0.85);
}
header ::selection {
  background: #E5CB96;
  color: #7F0415;
}
.offcanvas-body {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.offcanvas-body .nav-link.link-before {
  color: #7F0415 !important;
  font-weight: 600;
  font-size: 17px;
  position: relative;
  padding: 12px 14px;
  transition: all 0.2s ease;
}

.offcanvas-body .nav-link.link-before:hover,
.offcanvas-body .nav-link.link-before.active {
  color: #8A2033 !important;
  background-color: rgba(127, 4, 21, 0.06);
  border-radius: 8px;
}

.link-before::before {
  content: '';
  position: absolute;
  top: 8px;
  margin-inline-start: -10px;
  height: 80%;
  width: 4px;
  background: #E5CB96;
  border-radius: 3px;
}
.item-before{
position: relative;
}
.item-before::before{
content: '';
position: absolute;
left: 0;
bottom: -2px;
height: 1px;
width: 100%;
background: #cdcdcd8e;
}
.navbar-collapse{
    justify-content: center;
}
.link-sign-1{
display: inline-block;
text-align: center;
width: 100%;
padding: 8px 9px;
background: linear-gradient(
  to bottom,
  #E5CB96 0%,
  #E5CB96 30%,
  #EADAB7 100%
);
color: #7F0415;
}
.link-sign-2{
background: #FFFFFF;
}
.link-anim {
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-anim:hover {
  transform: translateY(-6px);
  background: linear-gradient(
    to bottom,
    #cdb07a 0%,
    #cdb07a 30%,
    #d9c08f 100%
  );
}
.main-banner{
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding: 30px 0;
    width: 100%;
}

.main-banner .row{
    min-height: 75vh;
    align-items: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}
.banner-img{
    width: 100%;
    height: auto;
    max-height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.banner-img img{
    width: 100%;
    max-height: 75vh;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.banner-text{
margin-top: 10px;
margin-bottom: 18px;
}
.banner-titel{
font-size: 33px;
font-weight: 700;
}
.banner-titel span{
color: #7F0415;
}
.banner-link{
display: flex;
}
.link-b{
border: 2px solid #68111F;
}
:root {
  --slide-distance: -60px; 
}

[dir="rtl"] {
  --slide-distance: 60px; 
}

/* Font Awesome Protection & RTL Icon Support */
.fa, .fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands, [class*="fa-"], [class*="fa-"]::before, [class*="fa-"]::after {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

[dir="rtl"] .fa-arrow-right {
    transform: scaleX(-1);
    display: inline-block;
}
[dir="rtl"] .fa-arrow-left {
    transform: scaleX(-1);
    display: inline-block;
}

.banner-content {
  opacity: 0;
  transform: translateX(var(--slide-distance));
  animation: slideInStart 1s ease-out forwards;
}
.banner-2{
height: 100%;
padding: 70px 30px;
background-image: url('../image/Mask\ group\ \(1\).png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
overflow: hidden;
background-attachment: fixed;  
}
.title-2{
font-size: 22px;
color: #FFFFFF;
font-weight: 800;
margin-top: 20px;
text-align: center;
}
.card{
background: transparent;
margin-top: 25px;
border: none;
}
.animate-up {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s ease;
}

.animate-up.show {
  opacity: 1;
  transform: translateY(0);
}
.card-center{
text-align: center;
}
.card-1{
display: flex;
justify-content: center;
color: #FFFFFF;
}
.card-number{
color: #E5CB96;
font-size: 20px;
font-weight: 500;
}
.card-title{
font-size: 18px;
font-weight: 600;
margin-inline-start: 9px;
}
.card-text{
color: #FFFFFF;
font-size: 14px;
}
.banner-3{
height: 100%;
padding: 30px 30px;
background-image: url('../image/Mask\ group\ \(2\).png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.quiez{
padding: 20px 0;
}
.title-quiez{
font-size: 28px;
font-weight: 700;
}
.text-quiez{
margin-top: 15px;
width: 80%;
}
.quize-w{
display: inline-block;
margin-top: 15px;
}
.q-link{
display: inline-block;
}
.q-1{
color: #7F0316;
}
.height{
height: 100%;
display: flex;
align-items: center;
}
.custom-swiper{
    padding: 30px;
    border-radius: 20px;
    background: #fff;
    position: relative;
}


.card-slider{
    background:#fff;
      overflow:hidden; 
    box-shadow:0 3px 12px rgba(0, 0, 0, 0.135);
}

.card-slider img{
    width:100%;
    height:200px;
    object-fit:cover;
    display:block;
}
.swiper-button-next::after,
.swiper-button-prev::after{
    display:none;
}
.custom-next,
.custom-prev{
    width:35px;
    height:35px;
    border:2px solid #7F0415;
    border-radius:50%;
    color:#7F0415;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.custom-next:hover,
.custom-prev:hover{
    background: #E5CB96;
    color:#7F0415;
}

.custom-next{
    right:0;
}

.custom-prev{
    left:0;
}
.banner-5{
height: 100%;
padding: 40px 10px;
background: #EFEFEF;
}
.link-e{
color: #68111F;
}
.slid-2{
text-align: start;
}
.link-cart{
margin-top: 9px;
}
.link-cart i{
border: 2px solid #68111F;
border-radius: 50px;
padding: 8px 8px;
}
.card-body-s{
padding: 15px 10px;
}
.slid-1{
display: flex;
justify-content: space-between;
}
.card-title-1{
font-weight: 700;
}
.price{
color: #68111F;
}
.slid-text{
font-weight: 100;
font-size: 15px;
}
.card-slider{
    position: relative;
}
.card-s-img{
    position: relative;
     overflow: hidden;
}

.card-position{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 7px 7px;
    z-index: 2;
}
.card-position span{ 
color: #68111F;
background: linear-gradient(
  to bottom,
  #E5CB96 0%,
  #E5CB96 30%,
  #EADAB7 100%
);
padding: 7px 9px;
width: 100%;
}
.card-slider{
    transition: transform .3s ease;
}

.card-slider:hover{
    transform: translateY(-5px);
}
.card-s-img img{
    width: 100%;
    transition: transform 0.5s ease;
}
.card-slider:hover .card-s-img img{
    transform: scale(1.1);
}
.video-box{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-6{
height: 100%;
padding: 30px 30px;
background-image: url('../image/Mask\ group\ \(6\).png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
overflow: hidden;
background-attachment: fixed;  
}
.plan-1{
text-align: center;
color: #E5CB96;
}
.plan-title{
text-align: center;
color: #fff;
font-size: 30px;
font-weight: 700;
}
.card-plan{
height: 100%;
width: 100%;
background: #fff;
padding: 20px 20px;
text-align: center;
margin-top: 30px;
}
.card-plan-t{
color: #7F0415;
font-size: 20px;
font-weight: 500;
}
.p-month{
margin-top: 20px;
}
.p-month span{
font-size: 25px;
font-weight: 800;
}
.plan-text{
font-size: 14px;
font-weight: 100;
color: #222222;
}
.plan-sh{
margin-top: 15px;
font-weight: 600;
}
.card-plan {
  transition: all 0.4s ease;
  cursor: pointer;
}
.card-plan:hover,
.card-plan:focus-within {
background: linear-gradient(
  to bottom,
  #E5CB96 0%,
  #E5CB96 35%,
  #EADAB7 70%,
  #F9F7F2 100%
);

  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
}
.card-plan:hover .card-plan-t,
.card-plan:focus-within .card-plan-t {
  color: #000;
  font-weight: 700;
}
.card-plan:hover .plan-link,
.card-plan:focus-within .plan-link {
  background-color: #7F0316;
  color: #fff;
  border-color: #7F0316;
}
.plan-link{
 transition:all .35s ease;
}
.card-plan:hover .plan-link,
.card-plan:focus-within .plan-link{
  background:#7F0316;
  color:#fff;
  box-shadow:0 10px 20px rgba(127,3,22,.25);
}
.plan-w{
width: 80%;
margin-top: 20px;
}
.banner-7{
padding: 20px 0px;
}
.card-title-22{
color: #000;
}
.card-text-22{
color: #000;
}
.card-22{
display: flex;
align-items: center;
}
.card-body-6{
margin-top: 17px;
}
.card-6{
margin-inline-start: 8px;
}
.card-text-22{
margin-top: 6px;
}
.brands {
    background: #f7f5f2;
    padding: 30px 0;
    overflow: hidden;
}
.slider {
    width: 100%;
    overflow: hidden;
}
.banner-8{
height: 100%;
padding: 20px 0px;
background: #F7F3F0;
}
.slide-track {
    display: flex;
    width: max-content;
    animation: scroll 15s linear infinite;
}
.slide-track img {
    width: 150px;
    height: 70px;
    object-fit: contain;
    margin: 0 40px;
}
.bannner-9{
padding: 50px 0px;
}
.swiper-pagination-bullet {
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    background: #E5CB96 !important;
    opacity: 1;
}
.custom-arrow{
    width:35px;
    height:35px;
    border:2px solid #7F0415;
    border-radius:50%;
    color:#7F0415;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}
.custom-arrow:hover{
   background: #E5CB96;
    color:#7F0415;
}
.about-title{
text-align: center;
font-size: 19px;
color:#7F0415;
}
.card-star  i{
color: #FFCC4B;
}
.card-star {
padding: 5px 0px;
}
.card-review {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    transition: all 0.3s ease;
    padding: 17px 17px;
}
.card-review:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
}
.faq-item{
  border: none;
  background: transparent;
}
.faq-question{
  background: #fff !important;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  border-radius: 12px !important;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-button::after{
  display: none !important;
}
.accordion-button:not(.collapsed){
  background: #fff !important;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}
.icon-circle{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-question span{
  flex: 1;
  text-align: left;
}
.faq-question{
  display: flex;
  align-items: center;
  justify-content: space-between; 
  cursor: pointer;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.06);
  background: #fff;
}
.icon-circle{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-circle i{
  font-size: 14px;
  color: #333;
}
.accordion-button:focus{
  outline: none !important;
   box-shadow: 0 3px 8px rgba(0,0,0,0.06) !important;
}
.main-footer {
  height: 100%;
  margin-top: 26px;
  background: linear-gradient(
    to right,
    #E5CB96 0%,
    #E5CB96 35%,
    #EADAB7 70%,
    #F9F7F2 100%
  );
  padding: 80px 0;
}
.main-footer a{
color: #000;
}
.footer-log img{
width: 200px;
}
.footer-title{
font-weight: 700;
font-size: 18px;
}
.footer-link{
padding: 8px 0px;
}
.footer-link a{
position: relative;
}
.footer-link a::before{
  content: '';
  position: absolute;
  width: 0px;
  height: 0px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  bottom: -3px;
background: #7F0415;
  transition: all 0.4s cubic-bezier(0.82, 0.14, 0.1, 0.85);
}
.footer-link a:hover:before{
  width: 100%;
  height: 3px; 
  transition: all 0.4s cubic-bezier(0.82, 0.14, 0.1, 0.85);
}
.social-icons{
margin-top: 10px;
}
.social-icons a{
padding: 7px 7px;
color: #7F0316;
}
.social-icons i {
  font-size: 20px;
  color: #7F0415;
  cursor: pointer;
}
.social-icons i:hover {
  color: #873943;
}
.quize-anim{
position: relative;
}
.quize-anim::before{
  content: '';
  position: absolute;
  width: 0px;
  height: 0px;
  inset-inline-start: 0;
  bottom: -1px;
background: #7F0415;
  transition: all 0.4s cubic-bezier(0.82, 0.14, 0.1, 0.85);
}
.quize-anim:hover:before{
  width: 100%;
  height: 3px; 
  transition: all 0.4s cubic-bezier(0.82, 0.14, 0.1, 0.85);
}
.row-skin{
width: 100%;
height: 100%;
background: #F7F2EF;
}
.skin-flex{
padding: 13px 13px;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}
.block-skin{
margin-top: 14px;
}
.block-skin a{
display: inline;
}
.q-blog-center{
text-align: center;
font-size: 18px;
}
.main-higth{
height: 100%;
}
.swiper-slide a{
color: #000;
}
.card-s-img img{
height: 200px;
object-fit: cover;
}

.mySwiper .swiper-slide{
    height: auto;
    display: flex;
}
.card-slider{
    display: flex;
    width: 100%;
}

.card-swiper{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.card-body-s{
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}
.slid-2{
    display: flex;
    flex-direction: column;
    flex: 1;
}

.link-cart,
.top{
    margin-top: auto;
}
.chat-toggle{
    position:fixed;
    bottom:25px;
    right:25px;
    width:70px;
    height:70px;
    background:#7F0415;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    z-index:9999;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.chat-toggle img{
    width:40px;
    height:40px;
    object-fit:contain;
}

.chat-box{

    position:fixed;
    right:25px;
    bottom:110px;

    width:360px;
    max-width:calc(100% - 30px);

    background:white;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

    display:none;

    z-index:9999;
}

.chat-header{

    background:#7F0415;
    color:white;

    padding:16px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.chat-title{

    display:flex;
    align-items:center;
    gap:10px;
}

.chat-title img{

    width:35px;
}

.chat-header button{

    background:none;
    border:none;
    color:white;
    font-size:22px;
}

.chat-body{

    padding:18px;

    display:flex;
    flex-direction:column;
    gap:15px;

    background:#fff;
}

.bot-message{

    align-self:flex-start;

    background:#242424;

    color:white;

    padding:12px 16px;

    border-radius:15px 15px 15px 5px;

    max-width:80%;
}

.user-message{

    align-self:flex-end;

    background:#DEE2E6;

    color:#000;

    padding:12px 16px;

    border-radius:15px 15px 5px 15px;

    max-width:80%;
}

.chat-footer{

    display:flex;

    gap:10px;

    padding:15px;

    border-top:1px solid #eee;
}

.chat-footer input{

    flex:1;

    border:1px solid #ddd;

    border-radius:30px;

    outline:none;

    padding:12px 18px;
}

.chat-footer button{

    width:50px;

    border:none;

    border-radius:50%;

    background:#7F0415;

    color:white;
}
.slid-text{
    line-height: 1.5;
    max-height: 3em; 
    overflow: hidden;
}
@media(max-width:768px){

.chat-toggle{

    width:60px;
    height:60px;

    right:15px;
    bottom:20px;
}

.chat-box{

    width:calc(100% - 20px);

    right:10px;

    bottom:90px;
}

}
@keyframes slideInStart {
  from {
    opacity: 0;
    transform: translateX(var(--slide-distance));
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes headerAnim {
  0% {
      top: -150px;
  }
  100% {
      top: 0px;
  }
}
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media screen and (min-width:991px){
 .offcanfas-1{
    display: none;
 }
 .link-marge{
margin-inline-start: 7px;
}
}
@media (max-width: 991px) {
  .navbar-toggler {
    border-color: rgba(255,255,255,.5);
  }

  .navbar-toggler-icon {
    filter: brightness(0) invert(1);
  }
  .link-sign-2{
 border: 1.5px solid #E5CB96;
 }
.top{
padding-bottom: 9px;
}
.banner-link {
    display: flex;
    flex-direction: column;
}
.link-b{
border: 2px solid #68111F;
}
.quiez {
text-align: center;
}
.text-quiez{
width: 100%;
}
.height {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.main-footer{
text-align: center;
}
.row-top{
margin-top: 18px;
}
}
/* Mobile */
@media (max-width: 768px) {

  .main-banner {
    position: relative;
  }
  .banner-img {
position: absolute;
inset: 0;
background-image: url('../image/img129 2 (1).png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
overflow: hidden;
background-attachment: fixed;  
z-index: 1;
  }
  .banner-img img {
    display: none;
  }
  .banner-img::after {
    content: "";
    position: absolute;
    inset: 0;
     background: rgba(0, 0, 0, 0.208);
  }

  .banner-content {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
    text-align: center;
  }

  .banner-titel,
  .banner-text,
  .banner-link {
    position: relative;
    z-index: 3;
  }
.banner-titel,
.banner-text {
  color: #fff;
}
  .main-banner .row {
    min-height: 500px;
    align-items: center;
  }
}