/* Arabic RTL Button Override */
.default-btn {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  padding: 14px 32px;
  line-height: 1;
  transition: all 0.3s ease;
  text-align: center;
  background: #4F46E5;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(79,70,229,0.3);
  cursor: pointer;
  margin-bottom: 0;
}

.default-btn:hover {
  color: #ffffff;
  background: #4338ca;
  box-shadow: 0 8px 25px rgba(79,70,229,0.4);
  transform: translateY(-2px);
}

.single-services-box {
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border-radius: 12px;
}

.services-img {
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

.services-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.services-img:hover img {
  transform: scale(1.05);
}

.single-services-box i {
  border-radius: 20px;
}

.navbar-area {
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  background-color: #ffffff;
}

.theme-dark .navbar-area {
  background-color: #1F2937;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item a {
  color: #1F2937;
}

.theme-dark .navbar-area .desktop-nav .navbar .navbar-nav .nav-item a {
  color: #ffffff;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  border-radius: 10px;
  background-color: #ffffff;
  border: none;
}

.theme-dark .navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  background-color: #374151;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: #1F2937;
}

.theme-dark .navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: #ffffff;
}

/* Splash Screen */
.splash-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: splashFadeIn 0.5s ease;
}

.splash-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
}

.splash-image {
  max-width: 100%;
  max-height: 85vh;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}

.splash-video {
  max-width: 100%;
  max-height: 85vh;
  width: 560px;
  height: 315px;
  border-radius: 4px;
  border: none;
}

.splash-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  z-index: 10;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.splash-close:hover {
  opacity: 1;
}

.splash-skip {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 30px;
  background: #4F46E5;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.splash-skip:hover {
  background: #4338ca;
}

.splash-fade-out {
  animation: splashFadeOut 0.5s ease forwards;
}

@keyframes splashFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes splashFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}