@font-face {
    font-family: "font_main";
    src: url("../fonts/ArbFONTS-Somar-Regular.otf");
  }
  
  @font-face {
    font-family: "font_medium";
    src: url("../fonts/ArbFONTS-Somar-Medium.otf");
  }
  
  @font-face {
    font-family: "font_bold";
    src: url("../fonts/ArbFONTS-Somar-Bold.otf");
  }
  
  @font-face {
    font-family: "semiBold";
    src: url("../fonts/ArbFONTS-Somar-SemiBold.otf");
  }
  :root {
    --color-white: #fff;
    --color-black: #0d0d0d;
    --color-black2: #333333;
    --color-Primary1: #846937;
    --color-Primary2: #A28245;
    --color-Primary3:  #FBEFDF;
    --color-Primary4: #FFFAF2;
    --color-Primary5: #3A6E42;
    --color-gray: #8D8F95;
    --color-border: #E4E4E4;
  }
  
  li {
    display: block;
  }
  
  i {
    line-height: 0;
  }
  
  * {
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  
  html {
    --scrollbarBG: #d3d0d05b;
    --thumbBG: var(--color-Primary2);
  }
  
  html,
  body {
    height: 100%;
  }
  
  *:focus {
    outline: none;
  }
  
  button:focus,
  a {
    outline: none;
  }
  
  a {
    text-decoration: none !important;
    color: var(--color-Primary1);
    font-size: 22px;
  }
  
  ul {
    margin: auto;
    padding: 0;
  }
  
  img {
    max-width: 100%;
    user-select: none;
  }
  
  input,
  button {
    font-family: "font_main";
  }
  
  h1 {
    font-size: 50px;
  
    font-family: "font_bold";
  }
  
  h2 {
    font-size: 28px;
    line-height: 30px;
    margin: 0;
  }
  
  h3 {
    font-size: 24px;
    margin: 0;
  }
  
  h4 {
    font-size: 16px;
  
    margin: 0;
  
    line-height: 30px;
  }
  
  p {
    font-size: 22px;
    margin: 0;
    line-height: 30px;
    color: var(--color-gray);
  }
  
  a,
  button,
  img,
  .form-control {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  
  ::selection {
    color: #fff !important;
    background-color: var(--color-Primary2) !important;
  }
  
  body {
    background: var(--color-white);
    font-family: "font_main";
    font-weight: 400;
    padding: 0;
    margin: auto;
    position: relative;
    z-index: 1;
    color: var(--color-black);
    overflow-x: hidden;
  }
  
  body {
    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);
  }
  
  body::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
  }
  
  body::-webkit-scrollbar-thumb {
    background-color: var(--thumbBG);
    border-radius: 0;
    border: 0 solid var(--scrollbarBG);
  }
  
  body::-webkit-scrollbar {
    width: 11px;
  }
  
  .mt-10 {
    margin-top: 100px;
  }
  
  .pg-none {
    padding: 0;
    margin: 0;
  }
  
  #app {
    flex: 1 0 auto;
    overflow-x: hidden;
  }
  
  .not_found {
    text-align: center;
    margin: 50px 0;
    font-size: 25px;
    color: var(--color-text);
  }
  
  .menu-div {
    display: none;
  }
  
  .navicon {
    color: var(--color-white);
    cursor: pointer;
    height: 18px;
    display: block;
    transform: rotate(0deg) scaleX(-1);
    transition: 0.2s ease-in-out;
    width: 35px;
  }
  
  .navicon__item {
    background: var(--color-white);
    border-radius: 70px;
    display: block;
    height: 2px;
    left: 0;
    opacity: 1;
    position: absolute;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
    width: 100%;
  }
  
  .navicon__item:nth-child(1) {
    top: 0;
  }
  
  .navicon.is-active .navicon__item:nth-child(1) {
    left: 50%;
    top: 8px;
    width: 0;
  }
  
  .navicon:hover .navicon__item:nth-child(2),
  .navicon:hover .navicon__item:nth-child(3) {
    width: 75%;
  }
  
  .navicon__item:nth-child(2) {
    top: 8px;
  }
  
  .navicon.is-active .navicon__item:nth-child(2) {
    transform: rotate(45deg);
    width: 100%;
  }
  
  .navicon__item:nth-child(3) {
    top: 8px;
  }
  
  .navicon.is-active .navicon__item:nth-child(3) {
    transform: rotate(-45deg);
    width: 100%;
  }
  
  .navicon__item:nth-child(4) {
    top: 16px;
  }
  
  .navicon.is-active .navicon__item:nth-child(4) {
    left: 50%;
    top: 8px;
    width: 0;
  }
  
  .main-container {
    width: 90%;
    margin: auto;
  }
  
 
  .mr-section {
    margin: 90px 0;
  }
  
  .pg-section {
    padding: 90px 0;
  }
  
  .bg_menu {
    background-color: var(--color-white);
    width: 100%;
    z-index: -1;
  }

  /* hero */

/*! ================= Hero ================= */
.hero {
  height: calc(100vh - 50px);
  background-image: linear-gradient(45deg, #846937, #A28245);
  color: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 25px;
  border-radius: 30px;
  padding-top: 50px;
  overflow: hidden;
  position: relative;
  z-index: 99;
}
.hero .caption {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hero .caption h1 {
  font-size: clamp(22px, 8vw, 50px);
  color: var(--color-white);
}
.hero .caption p {
  font-size: clamp(19px, 3vw, 25px);
  color: var(--color-white);
}
.hero .img-hero {
  width: min(500px, 80%);
  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;

  animation: float 3s ease-in-out infinite;
  transition: all 0.5s ease-in-out;
}
.hero .img-hero img.sahpe {
  position: absolute;
  width: 170px;
  height: auto;
  top: 70px;
  right: -110px;
  z-index: -1;
}
.hero .img-hero img.sahpe-2 {
  position: absolute;
  width: 170px;
  height: auto;
  top: 130px;
  left: -130px;
  z-index: -1;
  transform: rotateY(180deg) !important;
}
.hero .img-hero img.img-hero {
  object-fit: contain;
}

  /* hero end */

  nav.navbar {
    background-color: #FBEFDF;
    width: 70%;
    border-radius: 50px;
    padding: 5px 50px;
    display: flex;
    justify-content: space-between;
    z-index: 999;
}
nav.navbar .logo {
    width: 100px;
    height: 60px;
}
nav.navbar ul.links {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black-color);
}
nav.navbar ul.links li a {
    font-size: 22px;
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 30px;
    transition: .5s;
    color: #0d0d0d;
}
nav.navbar ul.links li.active a {
    background-image: linear-gradient(45deg, #846937, #A28245);
    color: var(--color-white);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    width: 35px;
    height: 20px;
    position: relative;
    z-index: 999;
}
.menu-toggle:hover .menu-toggle-line.top,
.menu-toggle:hover .menu-toggle-line.bottom {
    width: 35px;
}
.menu-toggle:hover .menu-toggle-line.bottom{
  left: 0;
}
.menu-toggle-line {
    width: 100%;
    height: 2px;
    background-color: #846937;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.menu-toggle-line.top {
    top: 0;
    width: 20px;
}
.menu-toggle-line.middle {
    top: 50%;
    transform: translateY(-50%);
}
.menu-toggle-line.bottom {
    bottom: 0;
    width: 20px;
    left: 50%;
}

@media (max-width: 1200px) {
    nav.navbar {
        width: 90%;
    }
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    nav.navbar ul.links {
        position: absolute;
        top: 80px;
        left: 50%;
        transform: translate(-50%, -10px);
        flex-direction: column;
        gap: 20px;
        background: #FBEFDF;
        width: 100%;
        padding: 20px;
        border-radius: 20px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.4s ease;
    }

    nav.navbar ul.links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }
}

@media (max-width: 767px) {
    nav.navbar {
        padding-inline: 20px;
    }
}

@media (max-width: 575px) {
    nav.navbar .logo {
        width: 50px;
        height: 50px;
    }
    .menu-toggle {
        font-size: 20px;
    }
    nav.navbar ul.links {
        gap: 13px;
    }
    nav.navbar ul.links.active {
        transform: translate(-50%, -15px);
    }
    /* nav.navbar ul.links li a {
        font-size: 13px;
    } */
}

nav.navbar {
  opacity: 0;
  transform: translateY(-30px);
  animation: navDown 0.8s ease forwards;
}

@keyframes navDown {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.hero .caption {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;

  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.hero .img-hero img {
  width: 100%;
}

@keyframes float {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-11px);
  }
}

/* about */
.about{
    background-color: var(--color-Primary4);
    padding: 50px 0;
}
.about-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    justify-content: center;
    position: relative;
  }
  .about-bg {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: -1;
  }
  
  .about-img img {
    height: 450px;
  }
  .about-img-img {
    animation: float 3s ease-in-out infinite;
  }
  
  .about-img .notification {
    position: absolute;
    height: 70px;
    top: 20%;
    right: 20%;
    transform: translateX(20%);
  }
  
  .about-img .notification img {
    height: 100%;
  }
  
  .about-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding-right: 50px;
  }
  
  .about-text .about-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
 .about-header-title {
    display: flex;
    align-items: center;
    gap: 10px;
  }
   .about-header-title p {
    color: var(--color-Primary5);
    font-size: 28px;
    font-weight: 700;
  }
   .about-header-title span {
    width: 30px;
    height: 2px;
    display: inline-block;
    background-color: var(--color-Primary5);
  }
  
  .about-text .about-header h3 {
    font-size: 28px;
    color: var(--color-Primary2);
    font-weight: 600;
    font-family: "semiBold";
    line-height: 30px;

  }
  
  
  .about-text .about-body p {
    color: #1f1f1f;
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 1px;
  }
  
/* about end */
/* aboutus */

.img-aboutus {
    border-radius: 35px;
    position: relative;
    margin: auto;
    width: 80%;
    height: 100%;
    background-color: #FFEFD9; 
    overflow: hidden;
    position: relative;
    min-height: 400px;
    max-height: 470px;
    display: flex;
    justify-content: center;
    align-items: center;

  }
  .img-aboutus img {
    width: 47%;
    height: fit-content;
    margin: auto;
    object-fit: contain;
    display: block;
    /* animation: float 3s ease-in-out infinite; */
  }


  .img-aboutus-container {
    position: relative;
    width: fit-content;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

  }
  .aboutus-img-1 {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
     
      z-index: 1;
      transform: rotate(-20deg);
      animation: rotateLeft 2s ease-in-out infinite alternate;
    }
    @keyframes rotateLeft {
      0% {
        transform: rotate(-20deg) translateX(-20%);
      }
      100% {
        transform: rotate(-10deg) translateX(-20%);
      }
    }

    .aboutus-img-2 {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      right: 4%;
      transform: rotate(20deg);
      animation: rotateRight 2s ease-in-out infinite alternate;
      z-index: 2;
    }
    @keyframes rotateRight {
      0% {
        transform: rotate(20deg) translateX(20%);
      }
      100% {
        transform: rotate(10deg) translateX(20%);
      }
    }
  
  .img-aboutus::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 120px;
    left: 10px;
    top: 0px;
    background-image: url(../assets/imgs/aboutus-after.webp);
    background-repeat: no-repeat;
    background-size: contain;
    animation: infinite;
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    background-position: center;
    transition: all 0.5s ease-in-out;
    animation: zoomIn 2s ease-in-out infinite;
  }
  @keyframes zoomIn {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  .img-aboutus::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 120px;
    background-image: url(../assets/imgs/aboutus-before.webp);
    right: 10px;
    bottom: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    animation: infinite;
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    background-position: center;
    transition: all 0.5s ease-in-out;
    animation: zoomOut 2s ease-in-out infinite;
  }
  @keyframes zoomOut {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(0.9);
    }
    100% {
      transform: scale(1);
    }
  }

  .text-aboutus ul{
    margin-top: 35px;
  }
  .text-aboutus ul li {
    display: flex;
    align-items: start;
    position: relative;
    gap: 15px;
    padding-bottom: 20px;
    z-index: 1;
  }
  .text-aboutus ul li::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 90%;
    bottom: 0;
    border-right: 3px dashed var(--color-Primary3);
    right: calc(44px / 2);
    z-index: -1;
  }
  .number-aboutus {
    font-size: 37px;
    width: 45px;
    line-height: 0;
    height: 45px;
    background-color: var(--color-Primary2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding-bottom: 4px;
  
    color: var(--color-white);
  }
  .sub-text-aboutus h2 {
    color: var(--color-Primary5);
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 1px;
  }
  .sub-text-aboutus p {
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 1px;
  }
  
  
  .text-aboutus ul li:last-of-type:after {
    display: none;
  }


  /* app-screen */
  
/* app-screen */


.app-screen{
  background: var(--color-Primary4);
  padding: 50px 0;
}
  .app-screen .owl-screen .item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    width: 100%;
    overflow: hidden;
  }
  .app-screen .owl-screen .item img {
    height: 100%;
    width: 100%;
  }
  .app-screen .owl-screen .owl-dots {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
  }
  .app-screen .owl-screen .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-Primary3);
  }
  
  .app-screen .owl-screen .owl-dot.active {
    background-color: var(--color-Primary1);
  }
  
  .app-screen .owl-screen .owl-item.center {
    transform: scale(1.1);
    transition: transform 0.5s ease;
    z-index: 2;
  }
  
  .app-screen .owl-screen.owl-carousel .owl-stage-outer {
    padding-top: 25px;
    padding-bottom: 25px;
    direction: ltr;
  }
  /* app-screen end */

  /* ask home */
  /* .ask-home {
    background-color: var(--color-Primary4);
  } */
  
.ask-aboutus {
  background-color: var(--color-Primary3);
}

.puls-que::before {
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: var(--color-Primary1);
  content: "";
  left: 20px;
  transform: translateY(-50%) rotate(90deg);
  margin: auto;
  top: 50%;
  transition: all 0.3s linear;
}

.puls-que::after {
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: var(--color-Primary1);
  content: "";
  left: 20px;
  margin: auto;
  top: 50%;
  transform: translateY(0%);
}

.text-ask-aboutus ul li {
  border-radius: 45px;
  margin: 15px 0;
}

.text-ask-aboutus ul li h2 {
  position: relative;
  cursor: pointer;
}

.text-ask-aboutus ul li.active .puls-que::before,
.text-ask-aboutus ul li.active .puls-que::after {
  background-color: var(--color-white);
}

.text-ask-aboutus ul li.active .puls-que::before {
  transform: translateY(-50%) rotate(0deg);
}

.text-ask-aboutus ul li.active h2 {
  color: var(--color-white);
  background-color: var(--color-Primary2);
}

.text-ask-aboutus ul li.active h2 img {
  filter: brightness(0) invert(1);
}

.text-ask-aboutus ul li.active {
  background-color: var(--color-white);
}

.text-ask-aboutus ul li h2 {
  padding: 20px;
  border-radius: 45px;
  user-select: none;
  font-size: 24px;
  transition: all 0.3s linear;
  background-color: var(--color-Primary3);
}

.text-ask-aboutus ul {
  margin: 40px 0;
}

.text-ask-aboutus ul li p {
  padding: 25px;
  display: none;
}

.text-ask-aboutus ul li h2 img {
  width: 25px;
}

.text-ask-aboutus > h2 {
  font-family: "semiBold";
  font-size: 24px;
}

.text-ask-aboutus > p {
  margin: 15px 0;
}
  
  /* ask home end */

  /* pooster */
  

.pooster {
  position: relative;
  background: linear-gradient(to bottom, #3A6E42, #5f6f3f, #8F743C);
  border-radius: 35px;
  width: 95%;
  margin: auto;
  padding: 20px 0 0 0;
}



.pooster-img {
  position: relative;
  text-align: center;
  height: 500px;
  width: 300px;
  overflow: hidden;
}

.pooster-img img {
  width: auto;
  display: block;
  transition: all 0.5s ease-in-out;
  animation: float 3s ease-in-out infinite;
}
.pooster-img img.sahpe {
  position: absolute;
  width: 170px;
  height: auto;
  top: 70px;
  right: -110px;
  z-index: -1;
}


.pooster-title {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.pooster-text h3 {
  color: var(--color-white);
  font-size: 50px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.pooster-text p {
  font-size: 30px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 30px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.pooster-title .download-app {
  display: flex;
  justify-content: start;
  gap: 20px;
}

.pooster-title .download-app a {
  width: 225px;
}

  /* pooster end */

  /* footer */
  .footer {
    overflow-x: hidden;
    padding-bottom: 0;
    padding: 40px 0;
    background: linear-gradient(to right, #846937,#b49457, #8F743C);
  }

  
  footer .main-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
    .footer-logo {
    width: 150px;
    margin: 0 auto;
  }
  
  .footer-logo img {
    width: 100%;
    height: 100%;
  }  

  
  .end-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    color: white;
  }
  .end-footer .footer-contact a{
    color: var(--color-white);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 1px;
    text-align: start;
    display: flex;
    transition: 0.4s;
  }
  .end-footer .footer-contact a:hover{
    color: var(--color-Primary5);
    text-decoration: underline;
  }
  .end-footer .footer-contact p span{
    color: red;
    padding: 0 5px;
    animation: heartBeat 2s infinite;
    display: block;
  }

  @keyframes heartBeat {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.25);
    }
  }
  .end-footer .footer-copyright p{
    color: var(--color-white);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 1px;
    text-align: end;
  }
  .end-footer .footer-copyright p span{
    color: var(--color-Primary5);
    padding: 0 5px;
  }
  
  .end-footer .jadara {
    display: flex;
    flex-direction: column;
    gap: 0px;
    justify-content: center;
    margin-right: 0px;
  }
  
  .end-footer .jadara ul {
    display: flex;
    gap: 10px;
  }






  .end-footer .jadara ul a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    overflow: hidden;
  }
.end-footer .jadara ul li a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background-color: var(--color-Primary1);
  border-radius: 50%;
  transition: 0.4s ease;
  z-index: 1;
}
.end-footer .jadara ul li a:hover::before {
  width: 100%;
  height: 100%;
}
.end-footer .jadara ul li a img {
  height: 25px;
  z-index: 2;
  transition: 0.4s;
}
.end-footer .jadara ul li a:hover img {
  filter: brightness(0) invert(1);
}
.end-footer .jadara ul li a:hover img {
  filter: brightness(0) invert(1);
  transform: rotate(360deg);
}









.end-footer .jadara ul a img {
  height: 25px;
}

  .end-footer .jadara i {
    color: red;
    animation: heartBeat 2s infinite;
  }
  
  /*  */
  
  .end-footer .logo {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .end-footer .logo img {
    width: 60px;
    height: 60px;
  }
  
  .end-footer .logo p {
    color: white;
  }

  /* footer end */


  /* BG-Hero */
.grid-bg {
  position: absolute;
  inset: 0;
  display: grid;

  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(5, 150px);

  z-index: 0;
}

/* مربع */
.grid-bg div {
  border: 1px solid #ffffff08;
  transition: 0.3s;
}
.grid-bg div:hover {
  background-color: rgba(0,0,0,0.05);
}



/* loader */
/* ================= Popup Coming Soon ================= */
/* ===== Lux Horse Popup ===== */
.lh-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  direction: rtl;
}

.lh-popup {
  background: #fffaf2;
  border-radius: 24px;
  padding: 40px 36px 36px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
  border: 1px solid #e4d4b8;
  box-shadow: 0 0 0 6px rgba(162, 130, 69, 0.08);
  animation: lhFadeIn 0.4s ease forwards;
}

@keyframes lhFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* الزوايا الزخرفية */
.lh-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  opacity: 0.35;
}
.lh-corner.tl {
  top: 14px;
  right: 14px;
  border-top: 2px solid #846937;
  border-right: 2px solid #846937;
  border-radius: 0 6px 0 0;
}
.lh-corner.br {
  bottom: 14px;
  left: 14px;
  border-bottom: 2px solid #846937;
  border-left: 2px solid #846937;
  border-radius: 0 0 0 6px;
}

/* الساعة الرملية */
.lh-hourglass-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 24px;
  position: relative;
  width: 72px;
  height: 72px;
}

.lh-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(162, 130, 69, 0.25);
  animation: lhPulse 2s ease-out infinite;
}

@keyframes lhPulse {
  0%   { transform: scale(0.85); opacity: 0.6; }
  70%  { transform: scale(1.1);  opacity: 0; }
  100% { transform: scale(0.85); opacity: 0; }
}

.lh-hourglass-svg {
  width: 52px;
  height: 52px;
  animation: lhFlip 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes lhFlip {
  0%,  49% { transform: rotate(0deg); }
  50%, 100% { transform: rotate(180deg); }
}

.sand-top {
  animation: lhSandFall 3s ease-in-out infinite alternate;
  transform-origin: top center;
}
.sand-bot {
  animation: lhSandFall 3s ease-in-out infinite alternate-reverse;
  transform-origin: bottom center;
}

@keyframes lhSandFall {
  0%   { height: 0%;   opacity: 1; }
  90%  { height: 100%; opacity: 1; }
  100% { height: 100%; opacity: 0.7; }
}

.grain {
  animation: lhGrain1 3s ease-in infinite;
}
.grain2 {
  animation: lhGrain2 3s ease-in infinite 0.3s;
}

@keyframes lhGrain1 {
  0%   { transform: translateY(0)    scaleX(1);   opacity: 1; }
  80%  { transform: translateY(14px) scaleX(0.6); opacity: 0.8; }
  100% { transform: translateY(16px) scaleX(0);   opacity: 0; }
}
@keyframes lhGrain2 {
  0%   { transform: translateY(0)    scaleX(1);   opacity: 1; }
  80%  { transform: translateY(14px) scaleX(0.4); opacity: 0.6; }
  100% { transform: translateY(16px) scaleX(0);   opacity: 0; }
}

/* النصوص */
.lh-badge {
  display: block;
  background: linear-gradient(90deg, #846937, #A28245, #FBEFDF, #A28245, #846937);
  background-size: 200% auto;
  animation: lhShimmer 3s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@keyframes lhShimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.lh-title {
  font-size: 26px;
  font-weight: 700;
  color: #0d0d0d;
  margin: 0 0 16px;
  line-height: 1.3;
}

.lh-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #846937, #A28245);
  margin: 0 auto 16px;
  border-radius: 2px;
}

.lh-body {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin: 0 0 28px;
}

/* الزر */
.lh-btn {
  display: inline-block;
  background: linear-gradient(45deg, #846937, #A28245);
  color: #fff;
  border: none;
  padding: 13px 44px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s;
  letter-spacing: 0.5px;
}
.lh-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.lh-btn:active {
  transform: scale(0.97);
}
/* ================= Popup Coming Soon ================= */

