.nav-outer {}

.logo-box .logo img {
  height: 85px;
}

.news-box-items .news-content .link-btn {
  justify-content: space-between;
}

.why-choose-us-content-1 .sec-title {
  padding-top: 40px;
}

.footer-logo img {
  filter: brightness(0) invert(1);
  height: 60px;
}

.global-toast {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 10000;
  min-width: 300px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border: none;
  border-left: 5px solid #28a745;
  animation: slideInToast 0.5s ease-out;
  background-color: white;
  color: #333;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-radius: 4px;
}

[dir="rtl"] .global-toast {
  right: auto;
  left: 20px;
  border-left: none;
  border-right: 5px solid #28a745;
  animation: slideInToastRtl 0.5s ease-out;
}

.global-toast.alert-danger {
  border-left-color: #dc3545;
}

[dir="rtl"] .global-toast.alert-danger {
  border-right-color: #dc3545;
}

@keyframes slideInToast {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInToastRtl {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.global-toast .btn-close {
  margin-left: auto;
  padding: 0;
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  color: #999;
  cursor: pointer;
}

[dir="rtl"] .global-toast .btn-close {
  margin-left: 0;
  margin-right: auto;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 92px;
  right: 25px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: #fff;
}

[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 25px;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Fix Sticky Header Missing Elements */
.sticky-header .outer-box {
  display: flex !important;
  align-items: center;
  gap: 20px;
}

.sticky-header .outer-box .ui-btn-outer,
.sticky-header .outer-box .lang-switcher-toggle,
.sticky-header .outer-box .theme-btn {
  display: flex !important;
}

.sticky-header .btn-style-one {
  padding: 10px 20px !important;
  font-size: 14px;
}

.sticky-header .main-menu .navigation>li {
  padding: 15px 0;
}

/* Fix disappearing content (WOW.js + ScrollSmoother conflict) */
.wow {
  visibility: visible !important;
}

/* Ensure elements are visible by default */
.animated {
  visibility: visible !important;
}

/* Adjust scroll to top if needed */
.scroll-to-top {
  bottom: 40px;
  right: 33px;
}

[dir="rtl"] .scroll-to-top {
  right: auto;
  left: 33px;
}

.header-style-one.header-3.fixed-header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  top: 0;
  background-color: #fff;
}