      /* preloader */
      body {
        overflow: hidden;
        height: 100%;
        margin: 0;
        scroll-behavior: smooth;
      }

      #preloader {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #121212;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        transition: opacity 0.5s ease;
        opacity: 1;
      }

      .loader {
        font-size: 68px;
        display: inline-block;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
        color: #FFF;
        letter-spacing: 4px;
        position: relative;
        box-sizing: border-box;
      }

      .loader::after {
        content: 'D1 Shop';
        position: absolute;
        left: 0;
        top: 0;
        color: #263238;
        text-shadow: 0 0 2px #FFF, 0 0 1px #FFF, 0 0 1px #FFF;
        width: 100%;
        height: 100%;
        overflow: hidden;
        box-sizing: border-box;
        animation: animloader 4s linear infinite;
      }

      @keyframes animloader {
        0% {
          height: 100%;
        }

        100% {
          height: 0%;
        }
      }

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cairo", sans-serif;
}
html{
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
/* Body */
body::before {
  --size: 45px;
  --line: color-mix(in lch, canvasText, transparent 85%);
  content: "";
  height: 100vh;
  z-index: 0;
  width: 100vw;
  position: absolute;
  background: linear-gradient(90deg, black 1px, transparent 1px var(--size)) 50%
      50% / var(--size) var(--size),
    linear-gradient(black 1px, transparent 1px var(--size)) 50% 50% /
      var(--size) var(--size);
  -webkit-mask: linear-gradient(-25deg, transparent 30%, black);
  mask: linear-gradient(-25deg, transparent 30%, black);
  top: 0;
  transform-style: flat;
  pointer-events: none;
}
body {
  background-color: #e0e0e0;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: 80px;
}

/* hero */
.hero {
  background-color: #e0e0e0;
  padding: 80px 20px;
  text-align: center;
  box-shadow: 8px 8px 16px #bebebe, -8px -8px 16px #ffffff;
  margin-bottom: 40px;
  width: 80%;
  height: 70vh;
  margin-top: -11px;
  max-width: 800px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
}

.title {
  font-size: 2em;
}

.subtitle {
  font-size: 1.2em;
  margin-bottom: 20vh;
}

.btn {
  background-color: #e0e0e0;
  padding: 15px 30px;
  color: #333;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 4px 4px 8px #bebebe, -4px -4px 8px #ffffff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  box-shadow: inset 4px 4px 8px #bebebe, inset -4px -4px 8px #ffffff;
}

/* Features Section */
.features {
  display: flex;
  gap: 2.4rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

.feature-card {
  background-color: #e0e0e0;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 8px 8px 16px #bebebe, -8px -8px 16px #ffffff;
  text-align: center;
  width: 250px;
  margin: 0.4rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
box-shadow: inset 4px 4px 8px #bebebe, inset -4px -4px 8px #ffffff;
}

.feature-card img {
  width: 50px;
  margin-bottom: 15px;
}
.navbar-icons {
  display: flex;
  justify-content: space-between;
}
.logo {
  width: 70px;
  padding: 10px;
  border-radius: 50px;
}
.logo-ms {
  color: #111;
  font-size: 1.5rem;
  padding-top: 10px;
  position: relative;
}
.navbar-section {
  display: flex;
  justify-content: center;
}
header {
  position: sticky;
  top: 1rem;
  z-index: 999;
}
.navbar {
  border-radius: 40px;
  width: 250px;
  backdrop-filter: blur(10px);
  text-align: center;
  z-index: 999;
  align-items: center;
  padding: 0 10px;
  margin: 1rem;
  border: 1px solid #111;
}
.navbar-toggle {
  background-color: transparent;
  border: none;
  color: #111;
  padding: 15px;
  font-size: 24px;
  cursor: pointer;
  transition: 0.3s;
}

.navbar-toggle.open .bar1 {
  transform: rotate(45deg) translate(5px, 6px);
  width: 28px;
}
.navbar-toggle.open .bar2 {
  opacity: 1;
  width: 0px;

}
.navbar-toggle.open .bar3 {
  transform: rotate(-45deg) translate(5px, -6px);
  width: 28px;
}
.navbar-toggle .bar {
  display: block;
  height: 3px;
  background-color: #111;
  transition: 0.4s;
  margin: 6px auto;
  border-radius: 30px;
}
.bar1{
  width: 22px;
}
.bar2{
  width: 34px;
}
.bar3{
  width: 22px;
}
.sidebar {
  height: 100%;
  width: 250px;
  position: fixed;
  top: 0;
  left: -250px;
  background-color: #111;
  transition: 0.3s;
  padding-top: 60px;
  z-index: 9999;
  text-align: center;
}
.sidebar a {
  padding: 15px 25px;
  text-decoration: none;
  font-size: 22px;
  color: #fff;
  display: block;
  transition: 0.3s;
}
.sidebar a:hover {
  background-color: #575757;
}
.closebtn {
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  color: #fff;
  border: none;
  background: none;
  cursor: pointer;
}
.open {
  left: 0;
}
.close {
  left: -250px;
}
.bar {
  font-size: 1rem;
}

@media (min-width: 1024px) {
  .navbar {
    width: 500px;
    padding: 5px 20px;
    transition: 1s;
  }
}
.wrapper,
.wrapper .img-area,
.social-icons a,
.buttons button{
  background: #e0e0e0;
  box-shadow: -3px -3px 7px #ffffff,
               3px 3px 5px #ceced1;
}
.wrapper{
  position: relative;
  width: 350px;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.wrapper .icon{
  font-size: 17px;
  color: #31344b;
  position: absolute;
  cursor: pointer;
  opacity: 0.7;
  top: 15px;
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  font-size: 16px;
}
.wrapper .icon i{
  position: relative;
  z-index: 9;
}
.wrapper .icon.arrow{
  left: 15px;
}
.wrapper .icon.dots{
  right: 15px;
}
.wrapper .img-area{
  height: 150px;
  width: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-area .inner-area{
  height: calc(100% - 25px);
  width: calc(100% - 25px);
  border-radius: 50%;
}
.inner-area img{
  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.wrapper .name{
  font-size: 23px;
  font-weight: 500;
  color: #31344b;
  margin: 10px 0 5px 0;
}
.wrapper .about{
  color: #44476a;
  font-weight: 400;
  font-size: 16px;
}
.wrapper .social-icons{
  margin: 15px 0 25px 0;
}
.social-icons a{
  position: relative;
  height: 40px;
  width: 40px;
  margin: 0 5px;
  display: inline-flex;
  text-decoration: none;
  border-radius: 50%;
}
.social-icons a:hover::before,
.wrapper .icon:hover::before,
.buttons button:hover:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background: #ecf0f3;
  box-shadow: inset -3px -3px 7px #ffffff,
              inset 3px 3px 5px #ceced1;
}
.buttons button:hover:before{
  z-index: -1;
  border-radius: 5px;
}
.social-icons a i{
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 40px;
}
.social-icons a.fb i{
  color: #4267B2;
}
.social-icons a.twitter i{
  color: #1DA1F2;
}
.social-icons a.insta i{
  color: #E1306C;
}
.social-icons a.yt i{
  color: #ff0000;
}
.wrapper .buttons{
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.buttons button{
  position: relative;
  width: 100%;
  border: none;
  outline: none;
  padding: 12px 0;
  color: #31344b;
  font-size: 17px;
  font-weight: 400;
  border-radius: 5px;
  cursor: pointer;
  z-index: 4;
}
.buttons button:first-child{
  margin-right: 10px;
}
.buttons button:last-child{
  margin-left: 10px;
}
.wrapper .social-share{
  display: flex;
  width: 100%;
  margin-top: 30px;
  padding: 0 5px;
  justify-content: space-between;
}
.social-share .row{
  color: #31344b;
  font-size: 17px;
  cursor: pointer;
  position: relative;
}
.social-share .row::before{
  position: absolute;
  content: "";
  height: 100%;
  width: 2px;
  background: #e0e6eb;
  margin-left: -25px;
}
.row:first-child::before{
  background: none;
}
.social-share .row i.icon-2{
  position: absolute;
  left: 0;
  top: 50%;
  color: #31344b;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.row:nth-child(1):hover i.fa-heart,
.row:nth-child(2):hover i.fa-comment{
  opacity: 1;
  pointer-events: auto;
}

.card-container {
  text-align: center;
  position: relative;
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.card-section{
  margin-top: 8rem;
  margin-bottom: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  width: 16rem;
  text-align: center;
  border-bottom: 2px solid #111;
}

.underline {
  width: 100px;
  height: 5px;
  background: linear-gradient(135deg, #bebebe, #ffffff);
  margin: -15px auto 20px;
  border-radius: 5px;
}

.card {
  width: 300px;
  background-color: #e0e0e0;
  border-radius: 20px;
  box-shadow: 10px 10px 30px #bebebe, -10px -10px 30px #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.card p{
  margin-bottom: 1.4rem;
}

.card-image {
  width: 100%;
  padding: 6px;
  border-radius: 20px;
  margin-bottom: 4px;
}
.card-padding{
  padding: 20px;
}
.live-view-btn {
  display: inline-block;
  background-color: #e0e0e0;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 16px;
  color: #333;
  box-shadow: 5px 5px 10px #bebebe, -5px -5px 10px #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.live-view-btn a{
  color: #333;
  text-decoration: none;
}
.live-view-btn:hover {
  box-shadow: inset 5px 5px 10px #bebebe, inset -5px -5px 10px #ffffff;
}
.live-view-btn-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
}

  .pricing-container{
  display: flex;
  gap: 2.4rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 20px 0;
  }

.price-title {
  font-size: 2rem;
  width: 12rem;
  text-align: center;
  border-bottom: 2px solid #111;
  margin-bottom: 1rem;
}


.pricing-card {
    background-color: #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    box-shadow: 8px 8px 16px #bebebe, -8px -8px 16px #ffffff;
    text-align: center;
}
.first-png{
  width: 100px;
}

.bronze {
    border-top: 4px solid #cd7f32;
}

.iron {
    border-top: 4px solid #cccccc;
}

.gold {
    border-top: 4px solid #ffd700;
}

.diamond {
    border-top: 4px solid #b9f2ff;
}

.price {
    font-size: 24px;
    color: #333;
    margin: 10px 0;
    direction: rtl;
}

.features {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 1rem;
    flex-direction: wrap;
}

.features-li {
  display: flex;
  justify-content: space-between; 
  margin-bottom: 1rem;
}

.pric-text {
  margin-left: auto; /* يجعل النص يتحرك إلى أقصى اليمين */
}


.icon {
    font-size: 18px;
}

.check {
    color: #4caf50; /* لون علامة الصح */
}

.cross {
    color: #f44336; /* لون علامة الخطأ */
    margin-left: 0.6rem;
}

.subscribe {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 10px;
    box-shadow: 4px 4px 8px #bebebe, -4px -4px 8px #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe:hover {
    box-shadow: inset 4px 4px 8px #bebebe, inset -4px -4px 8px #ffffff;
}
/*    FAQ     */

        .faq-container {
            border-radius: 20px;
            padding: 40px;
            width: 90%;
            border: 2px solid #333;
            max-width: 700px;
            margin-top: 8rem;
            margin-bottom: 4rem;
        }

        .faq-item {
            border-radius: 12px;
            margin-bottom: 20px;
            padding: 20px;
            box-shadow: 6px 6px 12px #c5c8ce, -6px -6px 12px #ffffff;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 6px 6px 12px #b0b3b9, -6px -6px 12px #ffffff;
        }

        .faq-question {
            font-weight: bold;
            margin: 0;
            font-size: 1.2em;
        }

        .faq-answer {
            display: none;
            margin-top: 15px;
            line-height: 1.6;
            color: #555;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-title {
            font-size: 2em;
            margin-bottom: 30px;
            text-align: center;
            color: #333;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .bx-check{
          font-size: 2.4rem;
          color: #4caf40;
        }
        .bx-link{
          font-size: 1.6rem;
          color: #4caf50;
          margin-left: 6px;
        }
        .bxs-crown{
          font-size: 1.8rem;
          color: #fc0;
          text-shadow: 2px 2px 0 #111;
        }

    .faq-form {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 12rem;
    }

    .neumorphic-form {
      background: #e0e0e0;
      padding: 30px;
      border-radius: 20px;
      border: 1px solid #333;
      width: 900px;
      text-align: center;
    }

    .neumorphic-form h2 {
      margin-bottom: 20px;
      font-size: 24px;
      color: #333;
    }

    .input-container {
      margin-bottom: 20px;
    }

    .input-container input,
    .input-container textarea {
      width: 100%;
      padding: 15px;
      border: none;
      border-radius: 10px;
      font-size: 16px;
      background: #e0e0e0;
      box-shadow: inset 4px 4px 8px #bebebe, inset -4px -4px 8px #ffffff;
      outline: none;
      color: #333;
      resize: none;
    }

    .neumorphic-button {
      width: 100%;
      padding: 15px;
      border: none;
      border-radius: 10px;
      font-size: 16px;
      font-weight: bold;
      background: #e0e0e0;
      box-shadow: 4px 4px 8px #bebebe, -4px -4px 8px #ffffff;
      cursor: pointer;
      color: #333;
      transition: all 0.2s ease;
    }

    .neumorphic-button:hover {
      box-shadow: inset 4px 4px 8px #bebebe, inset -4px -4px 8px #ffffff;
    }
.buttons a{
  text-decoration: none;
  color: #111;
}


.Btn-Container {
  display: flex;
  width: 180px;
  height: fit-content;
  background-color: #1d2129;
  border-radius: 40px;
  box-shadow: 0px 5px 10px #bebebe;
  justify-content: space-between;
  align-items: center;
  border: none;
  cursor: pointer;
  transition-duration: 1.5s;
  margin-top: 2rem;
  
}
.icon-Container {
  width: 45px;
  height: 45px;
  background-color: #f59aff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px solid #1d2129;
}
.text {
  width: calc(170px - 45px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1em;
  letter-spacing: 1.2px;
}
.icon-Container svg {
  transition-duration: 1.5s;
  animation: arrow 1s linear infinite;
}
@keyframes arrow {
  0% {
    opacity: 0;
    margin-left: 5px;
  }
  100% {
    opacity: 1;
    margin-left: -10px;
  }
}
  .rotate-180 {
    transform: rotate(180deg);
  }