/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #000;
    overflow-x: hidden;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(3px);
    z-index: -1;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
    color: #fff;
    padding-bottom: 130px; /* Add padding to avoid footer overlap */
}

header {
    margin-bottom: 20px;
}

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 10px;
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}

.tagline {
    font-size: 24px;
    margin-bottom: 20px;
}

.description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 550px;
    margin-bottom: 30px;
}

footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-info p {
    font-size: 18px;
}

.contact-info a {
    color: #00ffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}
/* .arabic {
    font-family: 'Cairo', sans-serif;
} */
.arabic {
    font-family: 'Tajawal', sans-serif;
}

#scrollingFooter {
  position: fixed;      /* Keeps it glued to the screen */
  bottom: 0;            /* Sticks to the bottom */
  left: 0;              /* Full width */
  right: 0;
  width: 100%;          /* Ensures full width */
  z-index: 1000;        /* Always on top of other content */
  background-color: #f8f8f8;
  padding: 15px 0;
  color: #000;
  /* text-decoration: none; */
  font-size: clamp(16px, 2.5vw, 22px);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.footer-container {
  width: 100%;
  overflow: hidden;
}

.footer-content {
  display: inline-flex;
  gap: clamp(20px, 4vw, 50px); /* Responsive gap */
  padding: 0 20px;
  white-space: nowrap;
  will-change: transform;
}

/* Enhanced edge fading */
/* #scrollingFooter::before,
#scrollingFooter::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
} */

#scrollingFooter::before {
  left: 0;
  background: linear-gradient(90deg, #f8f8f8 20%, rgba(248,248,248,0) 100%);
}

#scrollingFooter::after {
  right: 0;
  background: linear-gradient(270deg, #f8f8f8 20%, rgba(248,248,248,0) 100%);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  #scrollingFooter {
    padding: 12px 0;
  }
  
  .footer-content {
    gap: 25px;
  }
  
  #scrollingFooter::before,
  #scrollingFooter::after {
    width: 60px;
  }
}