/* Arabic font - Tajawal */
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap");

/* English font - Nunito */
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");

/********** Template CSS **********/
:root {
  --primary: #fea116;
  --light: #f1f8ff;
  --dark: #0f172b;
}

/* Default font for non-Arabic languages */
body {
  font-family: "Nunito", sans-serif;
}

/* Arabic font */
:lang(ar) {
  font-family: "Tajawal", sans-serif;
}

.ff-secondary {
  font-family: "Pacifico", cursive;
}

.fw-medium {
  font-weight: 600 !important;
}

.fw-semi-bold {
  font-weight: 700 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
  -webkit-transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  -moz-transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  -ms-transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  -o-transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  -moz-transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  -ms-transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  -o-transition: opacity 0.5s ease-out, visibility 0s linear 0s;
}

/*** Button ***/
.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  position: relative;
  margin-left: 25px;
  padding: 35px 0;
  font-size: 15px;
  color: var(--light) !important;
  text-transform: uppercase;
  font-weight: 500;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.navbar-dark .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top.navbar-dark .navbar-brand img {
  max-height: 45px;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-dark {
    position: relative;
  }

  .navbar-dark .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-dark .navbar-nav .nav-link,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
  }

  .navbar-dark .navbar-brand img {
    max-height: 45px;
  }
}

@media (min-width: 992px) {
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: transparent !important;
  }

  .sticky-top.navbar-dark {
    position: fixed;
    background: var(--dark) !important;
  }
}

/* لكل سكشن بعد الأول */
/* للـ sections بعد الأول فقط */
section + section::before {
  content: "";
  display: block;
  border-top: 2px solid #ccc;
  margin: -30px 0 60px 0;
}

/* للـ container-xxl بعد الأول فقط */
.container-xxl + .container-xxl::before {
  content: "";
  display: block;
  border-top: 2px solid #ccc;
  margin: -30px 0 60px 0;
}

/* للـ container-fluid بعد الأول فقط */
.container-fluid + .container-fluid::before {
  content: "";
  display: block;
  border-top: 2px solid #ccc;
  margin: -20px 0 60px 0;
}
/* للتأكد من أن الأقسام مش متلاصقة على الشاشات الصغيرة */
@media (max-width: 768px) {
  section,
  .container-xxl,
  .container-fluid {
    margin-bottom: 80px;
  }
}

/*** Hero Header ***/
.hero-header {
  background: linear-gradient(rgba(15, 23, 43, 0.9), rgba(15, 23, 43, 0.9)),
    url(../img/bg-hero.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-header img {
  animation: imgRotate 50s linear infinite;
  -webkit-animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
}
.light-orange-text {
  /* color: #e7b8708f ; */
  /* e7b870 */
  color: #ffc14dc1;
}

.section-title::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  left: -55px;
  margin-top: -1px;
  background: var(--primary);
}

.section-title::after {
  position: absolute;
  width: 45px;
  height: 2px;
  top: 50%;
  right: -55px;
  margin-top: -1px;
  background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
  display: none;
}

/*** Service ***/
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
}

.service-item:hover {
  background: var(--primary);
}

.service-item * {
  transition: 0.5s;
}

.service-item:hover * {
  color: var(--light) !important;
}

/*** Food Menu ***/
.nav-pills .nav-item .active {
  border-bottom: 2px solid var(--primary);
}

/*** Youtube Video ***/
.video {
  position: relative;
  width: 100%;
  height: 300px;
  min-height: 300px;
  background: url(../img/201.png) center center no-repeat;
  background-size: contain;
}

.m {
  background: url(../img/19.jpg) center center no-repeat;
  background-size: 500px 300px;
}

/* الزرار القديم */
.btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.btn-play span {
  display: block;
  width: 0;
  height: 0;
  border-left: 20px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

#contact .row {
  display: flex;
  align-items: stretch;
}

#contact .col-md-6 {
  display: flex;
  flex-direction: column;
}

#contact .video,
#contact .bg-dark {
  flex: 1;
  height: 100%;
}

.video .btn-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  transition: all 200ms;
}

.video .btn-play img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid var(--dark);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal {
  z-index: 99999;
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

/*** Team ***/
.team-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  /* height: calc(100% - 38px); */
  height: 100%;
  transition: 0.5s;
}

.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-item:hover {
  height: 100%;
}

.team-item .btn {
  border-radius: 38px 38px 0 0;
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
  color: var(--light) !important;
}

.testimonial-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border: 1px solid #cccccc;
  border-radius: 15px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

/* lang */
.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  border-radius: 4px;
  padding: 8px 12px;
  margin-left: 15px;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 80px;
  text-align: center;
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lang-dropdown-content {
  display: none;
  position: absolute;
  background-color: #1a1a1a;
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 4px;
  overflow: hidden;
  top: 100%;
  left: 0;
  margin-top: 5px;
}

.lang-dropdown-content.show {
  display: block;
}

.lang-dropdown-content a {
  color: white;
  padding: 10px 12px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-dropdown-content a:last-child {
  border-bottom: none;
}

.lang-dropdown-content a:hover {
  background-color: var(--primary);
}

/* RTL/LTR */
[dir="rtl"] .text-align-right {
  text-align: right;
}

[dir="ltr"] .text-align-right {
  text-align: left;
}

[dir="rtl"] .float-start {
  float: right !important;
}

[dir="ltr"] .float-start {
  float: left !important;
}

[dir="rtl"] .float-end {
  float: left !important;
}

[dir="ltr"] .float-end {
  float: right !important;
}

[dir="rtl"] .text-start {
  text-align: right !important;
}

[dir="ltr"] .text-start {
  text-align: left !important;
}

[dir="rtl"] .text-end {
  text-align: left !important;
}

[dir="ltr"] .text-end {
  text-align: right !important;
}

[dir="rtl"] .me-3 {
  margin-right: 0 !important;
  margin-left: 1rem !important;
}

[dir="ltr"] .me-3 {
  margin-right: 1rem !important;
  margin-left: 0 !important;
}

[dir="rtl"] .ms-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

[dir="rtl"] .ps-3 {
  padding-left: 0 !important;
  padding-right: 1rem !important;
}

[dir="ltr"] .ps-3 {
  padding-left: 1rem !important;
  padding-right: 0 !important;
}

[dir="rtl"] .ps-4 {
  padding-left: 0 !important;
  padding-right: 1.5rem !important;
}

[dir="ltr"] .ps-4 {
  padding-left: 1.5rem !important;
  padding-right: 0 !important;
}

[dir="rtl"] .border-start {
  border-left: none !important;
  border-right: 5px solid var(--primary) !important;
}

[dir="ltr"] .border-start {
  border-left: 5px solid var(--primary) !important;
  border-right: none !important;
}

@media (max-width: 768px) {
  .lang-toggle {
    min-width: 60px;
    padding: 6px 8px;
    font-size: 14px;
  }

  .lang-dropdown-content {
    min-width: 80px;
  }

  .lang-dropdown-content a {
    padding: 8px 10px;
    font-size: 14px;
  }
}

/* ===================================
   إضافات للـ Hero Section - Responsive
   ضعها في نهاية ملف style.css
   =================================== */

/* تصميم الكمبيوتر - الشاشات الكبيرة */
.hero-header .container .row {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-header .col-lg-6:first-child {
  order: 1;
}

.hero-header .col-lg-6:last-child {
  order: 2;
}

/* تصميم الموبايل - الشاشات الصغيرة */
@media (max-width: 991.98px) {
  /* ===== الـ Navbar ===== */
  .navbar {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 12px !important;
    flex-wrap: nowrap !important;
  }

  .navbar-brand {
    display: block !important;
    margin-bottom: 0 !important;
    flex: 0 0 auto;
    padding: 0 !important;
  }

  .navbar-brand h1 {
    font-size: 1.2rem !important;
    margin: 0 !important;
    font-weight: 700 !important;
    white-space: nowrap;
  }

  .navbar .collapse {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 5px;
    width: auto !important;
    flex: 0 0 auto;
    padding: 0 !important;
  }

  .navbar .dropdown {
    margin-bottom: 0;
  }

  .navbar .dropdown .btn {
    width: auto;
    padding: 6px 10px;
    font-size: 0.75rem;
    white-space: nowrap;
    min-width: 55px;
  }

  .navbar .btn-primary {
    width: auto;
    margin: 0 !important;
    padding: 6px 10px;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  /* ===== Hero Section ===== */
  .hero-header .row {
    display: flex;
    flex-direction: column;
  }

  .hero-header .col-lg-6:first-child .light-orange-text {
    display: none !important;
  }

  .hero-header .col-lg-6:last-child::before {
    content: "Dalam setiap titisan, ada cerita dari Bumi Suci";
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    margin-left: 0;
    color: #ffc14dc1;
    font-style: italic;
    text-align: center;
    margin-bottom: 25px;
    padding-left: 0;
    font-family: "Nunito", sans-serif;
  }

  .hero-header .col-lg-6:last-child {
    order: 2;
    margin-bottom: 30px;
  }

  .hero-header .col-lg-6:first-child {
    order: 3;
  }

  .hero-header h1 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
  }

  .hero-header p.text-white {
    font-size: 0.95rem !important;
    margin-bottom: 25px !important;
  }

  .hero-header .btn {
    width: 100%;
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
  }

  .hero-header .col-lg-6 img {
    max-width: 100%;
    height: auto;
  }
}

/* للشاشات الصغيرة جداً (أقل من 576px) */
@media (max-width: 575.98px) {
  /* ===== Navbar ===== */
  .navbar {
    padding: 8px 10px !important;
  }

  .navbar-brand h1 {
    font-size: 1rem !important;
  }

  .navbar .dropdown .btn,
  .navbar .btn-primary {
    padding: 5px 8px;
    font-size: 0.7rem;
    min-width: 50px;
  }

  .navbar .collapse {
    gap: 4px;
  }

  /* ===== Hero Section ===== */
  .hero-header h1 {
    font-size: 1.75rem !important;
  }

  .hero-header p.text-white {
    font-size: 0.9rem !important;
  }

  .hero-header .btn {
    padding: 10px 15px !important;
    font-size: 0.9rem !important;
  }
}

/* للشاشات 425px وأقل */
@media (max-width: 425px) {
  /* ===== Navbar ===== */
  .navbar {
    padding: 7px 8px !important;
  }

  .navbar-brand h1 {
    font-size: 0.9rem !important;
  }

  .navbar .dropdown .btn,
  .navbar .btn-primary {
    padding: 4px 7px;
    font-size: 0.65rem;
    min-width: 45px;
  }

  .navbar .collapse {
    gap: 3px;
  }
}

/* للشاشات 375px وأقل */
@media (max-width: 375px) {
  /* ===== Navbar ===== */
  .navbar {
    padding: 6px 6px !important;
  }

  .navbar-brand h1 {
    font-size: 0.8rem !important;
  }

  .navbar .dropdown .btn,
  .navbar .btn-primary {
    padding: 3px 6px;
    font-size: 0.6rem;
    min-width: 40px;
  }

  .navbar .collapse {
    gap: 2px;
  }
}

/* للشاشات 320px وأقل */
@media (max-width: 320px) {
  /* ===== Navbar ===== */
  .navbar {
    padding: 5px 5px !important;
  }

  .navbar-brand h1 {
    font-size: 0.7rem !important;
  }

  .navbar .dropdown .btn,
  .navbar .btn-primary {
    padding: 3px 5px;
    font-size: 0.55rem;
    min-width: 35px;
  }

  .navbar .collapse {
    gap: 2px;
  }
}

@media (max-width: 991.98px) {
  .container-xxl {
    padding-left: 20px;
    padding-right: 20px;
  }

  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

/* Hand Image Positioning */
.x {
  position: absolute;
  top: -260px;
  left: 50%;
  transform: translateX(-16%);
  z-index: 10;
  max-width: 500px;
  pointer-events: none;
  -webkit-transform: translateX(-16%);
  -moz-transform: translateX(-16%);
  -ms-transform: translateX(-16%);
  -o-transform: translateX(-16%);
  animation: none !important;
  -webkit-animation: none !important;
}

/* Water Drops Container */
.hero-header .col-lg-6.text-center.text-lg-end {
  position: relative;
}

/* Water Drop Animation - starts from bottom of hand */
@keyframes dropFall {
  0% {
    top: 280px;
    /* transform: translateY(1) scale(1);
        -webkit-transform: translateY(1) scale(1);
        -moz-transform: translateY(1) scale(1);
        -ms-transform: translateY(1) scale(1);
        -o-transform: translateY(1) scale(1); */
  }
  100% {
    top: 80%;
    opacity: 0;
    transform: translateY(0px) scale(0.8);
    -webkit-transform: translateY(0px) scale(0.8);
    -moz-transform: translateY(0px) scale(0.8);
    -ms-transform: translateY(0px) scale(0.8);
    -o-transform: translateY(0px) scale(0.8);
  }
}

/* Individual Water Drops */
/* Individual Water Drops - Olive Oil Style */
/* .water-drop {
  position: absolute;
  top: 210px;
  width: 12px;
  height: 18px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 215, 0, 0.95) 0%,
    rgba(128, 128, 0, 0.8) 100%
  );
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: dropFall 2s linear infinite;
  z-index: 5;
  box-shadow: 0 2px 4px rgba(85, 107, 47, 0.4);
  -webkit-animation: dropFall 2s linear infinite;
  -webkit-border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  -moz-border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  -ms-border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  -o-border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
} */

.water-drop {
  position: absolute;
  top: 210px;
  width: 14px;
  height: 20px;

  /* layered gradients for depth */
  background: radial-gradient(
    ellipse at 30% 25%,
    rgba(255, 245, 180, 0.95) 0%,
    rgba(255, 215, 0, 0.9) 25%,
    rgba(160, 140, 0, 0.85) 60%,
    rgba(95, 85, 0, 0.9) 100%
  );

  border-radius: 50% 50% 50% 50% / 65% 65% 35% 35%;
  animation: dropFall 2s linear infinite;
  z-index: 5;

  /* sharper, more realistic shadow */
  box-shadow: inset -1px -2px 3px rgba(0, 0, 0, 0.25),
    inset 1px 1px 2px rgba(255, 255, 255, 0.35),
    0 3px 6px rgba(85, 107, 47, 0.45);

  will-change: transform;
}
.water-drop::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  width: 4px;
  height: 6px;

  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.25) 60%,
    transparent 100%
  );

  border-radius: 50%;
  transform: rotate(-10deg);
}
.water-drop {
  transform: translateZ(0);
}

/* Multiple drops with different delays and positions - centered under hand */
.water-drop:nth-child(1) {
  left: 48%;
  animation-delay: 0s;
  animation-duration: 2s;
}

.water-drop:nth-child(2) {
  left: 50%;
  animation-delay: 0.4s;
  animation-duration: 2.3s;
}

.water-drop:nth-child(3) {
  left: 52%;
  animation-delay: 0.8s;
  animation-duration: 2.1s;
}

.water-drop:nth-child(4) {
  left: 49%;
  animation-delay: 1.2s;
  animation-duration: 1.9s;
}

.water-drop:nth-child(5) {
  left: 51%;
  animation-delay: 1.6s;
  animation-duration: 2.2s;
}

.water-drop:nth-child(6) {
  left: 50.5%;
  animation-delay: 2s;
  animation-duration: 2s;
}

/* Splash Effect when drop hits */
@keyframes splash {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  50% {
    width: 30px;
    height: 10px;
    opacity: 0.6;
  }
  100% {
    width: 40px;
    height: 2px;
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .sticky-top.navbar-dark {
    width: 100%;

    position: fixed;
    background: var(--dark) !important;
  }
  .x {
    max-width: 140px;
    top: -9px !important;
    transform: translateX(-16%);
    -webkit-transform: translateX(-41%);
    -moz-transform: translateX(-41%);
    -ms-transform: translateX(-41%);
    -o-transform: translateX(-41%);
  }
}

@media (min-width: 552px) and (max-width: 767px) {
  .sticky-top.navbar-dark {
    width: 100%;

    position: fixed;
    background: var(--dark) !important;
  }

  .x {
    max-width: 140px;
    top: -50px !important;
    transform: translateX(-16%);
    -webkit-transform: translateX(-42%);
    -moz-transform: translateX(-42%);
    -ms-transform: translateX(-42%);
    -o-transform: translateX(-42%);
  }
}
@media (min-width: 408px) and (max-width: 466px) {
  .sticky-top.navbar-dark {
    width: 100%;

    position: fixed;
    background: var(--dark) !important;
  }

  .x {
    max-width: 140px;
    top: 4px !important;
    transform: translateX(-16%);
    -webkit-transform: translateX(-41%);
    -moz-transform: translateX(-41%);
    -ms-transform: translateX(-41%);
    -o-transform: translateX(-41%);
  }
}
@media (min-width: 467px) and (max-width: 551px) {
  .sticky-top.navbar-dark {
    width: 100%;

    position: fixed;
    background: var(--dark) !important;
  }

  .x {
    max-width: 140px;
    top: -70px !important;
    transform: translateX(-16%);
    -webkit-transform: translateX(-39%);
    -moz-transform: translateX(-39%);
    -ms-transform: translateX(-39%);
    -o-transform: translateX(-39%);
  }
}
/* @media  (min-width:452px)  and (max-width: 767px) {
        .hero-header .col-lg-6 img {
            top: -350px;
            left: 370px;
            max-width: 100%;
            height: auto;
        }
    }   */
@media (max-width: 320px) {
  .sticky-top.navbar-dark {
    width: 100%;

    position: fixed;
    background: var(--dark) !important;
  }
  .x {
    max-width: 140px;
    top: -40px;
    transform: translateX(-16%);
    -webkit-transform: translateX(-16%);
    -moz-transform: translateX(-16%);
    -ms-transform: translateX(-16%);
    -o-transform: translateX(-16%);
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .sticky-top.navbar-dark {
    width: 100%;

    position: fixed;
    background: var(--dark) !important;
  }
  .hero-header .col-lg-6 img {
    top: -50px;
    left: 280px;
    max-width: 100%;
    height: auto;
  }
}
@media (min-width: 991.98px) {
  .sticky-top.navbar-dark {
    width: 100%;
    position: fixed;
    background: var(--dark) !important;
  }
  .hero-header .col-lg-6 img {
    top: -108px;
    left: 129px;
    max-width: 100%;
    height: auto;
  }
}
@media (min-width: 1200px) {
  .sticky-top.navbar-dark {
    width: 100%;

    position: fixed;
    background: var(--dark) !important;
  }
  .hero-header .col-lg-6 img {
    top: -79px;
    left: 211px;
    max-width: 100%;
    height: auto;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .sticky-top.navbar-dark {
    width: 100%;

    position: fixed;
    background: var(--dark) !important;
  }
  .hero-header .col-lg-6 img {
    top: -56px;
    left: 174px;
    max-width: 100%;
    height: auto;
  }
}

.navy-box {
  background-color: #0b1f3a; /* كحلي */
  color: #ffffff; /* أبيض */
  padding: 14px 20px;
  border-radius: 8px;
  font-style: italic; /* كتابة مائلة */
  font-size: 15px;
  text-align: center;
  max-width: 100%;
}
.watermark {
  display: none !important;
}
#media-container > div.player.player--rounded.controls.playing > a {
  display: none !important;
}
#media-container > div.player.player--rounded.controls.playing > a > img {
  display: none !important;
}
