:root {
    --primary-color: #16404D;
    --gold:#DDA853;
    --primary-color-500:#16404d84 ;
    /* --bg-white:#FBF5DD; */
    --bg-sec : #A6CDC6;
   }
body{
  font-family: 'Bebas Neue', sans-serif;
  font-family: 'Amiri', serif;
}
.bg-primary{
    background-color: var(--primary-color) !important ;
}
.bg-gold{
  background-color: var(--gold) !important;
}
.bg-primary-500{
  background-color: var( --primary-color-500) !important;
}

.primary-border{
  border-color:var( --primary-color) !important ;
}

.sec-border{
  border-color:var( --bg-sec) !important ;
}

.gold-border{

    border-color:var( --gold) !important ;
  
}
/* .bg-white{
  background-color: var(--bg-white) !important;
} */

.bg-sec{
  background-color: var(--bg-sec) !important;
}

.text-glod{
  color:var(--gold) !important;
}

.text-sec{
  color: var(--bg-sec) !important;
}


/* Body and overall page styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  padding: 20px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: white;
  font-size: 24px;
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Hover effect for scaling */
.whatsapp-float i {
  margin: 0;
}

/* Make sure the loader takes full screen */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  z-index: 9999;
  opacity: 1;
  animation: fadeInOut 3s ease-out;
}

/* Animation for fade-in and fade-out */
@keyframes fadeInOut {
  0% {
      opacity: 1;
  }
  50% {
      opacity: 0.7;
  }
  100% {
      opacity: 0;
  }
}

/* Add animation to the logo (e.g., spinning effect) */
#logo {
  width: 100px;
  animation: spin 3s linear infinite;
}

/* Spinning animation */
@keyframes spin {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

/* Main Content */
#main-content {
  text-align: center;
  padding-top: 50px;
}
.swiper-container {
  width: 100% !important;
}
.swiper-slide img {
  width: 100% !important;
}
html{
  height: 100%;
}

html, body {
  width: 100%;
  overflow-x: hidden; /* لمنع ظهور شريط التمرير الأفقي */
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) { /* Adjust breakpoint as needed */
  h1[data-translate="title"] {
    white-space: nowrap;
    overflow: hidden; /* Prevent text from overflowing */
    text-overflow: ellipsis; /* Add ellipsis (...) if text is too long */
    font-size: 0.9rem; /* Reduced font size */
  }
}