html,
body {
  overflow: auto;
  height: auto;
}

@media (min-width: 1024px) {
  html,
  body {
    overflow: hidden;
    height: 100%;
  }
}

body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  background: linear-gradient(to bottom left, #ffffff, #fbeef1);
  color: #333;
  text-align: center;
  direction: rtl;
}

.container {
  padding: 50px 20px;
  max-width: 1240px;
  margin: auto;
}
.content {
  background-image: url("./Images/bgf/background.png");
  background-size: cover;
  background-position: center;
  opacity: 10;
}
.logo {
  width: 338px;
  height: 218px;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 20px;
  font-weight: 700;
}

.subtitle-en {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

.coming-soon {
  font-size: 18px;
  margin-bottom: 10px;
}

.main-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}
.descriptionWrraper {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
}
.description {
  font-size: 16px;
  color: #555;
  text-align: center;
  margin-bottom: 10px;
}

.launch {
  color: #b0171b;
  font-weight: bold;
  margin-bottom: 40px;
}

.social-icons img {
  width: 30px;
  margin: 0 8px;
  cursor: pointer;
}

.footer {
  margin-top: 60px;
  padding: 20px;
  font-size: 14px;
  color: #333;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer > div {
  flex: 1 1 300px;
  text-align: center;
}
.social_div {
  display: flex;
  flex-direction: row;
  align-items: center;

  gap: 4;
}
.socialcontact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.social-icons img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}
.contactIcon {
  width: 16px;
  height: 16px;
}
.social-icons img:hover {
  transform: scale(1.1);
}

/* Responsive footer layout */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .footer > div {
    flex: unset;
  }
}
.rtl-phone {
  direction: ltr;
  unicode-bidi: bidi-override;
}

.email,
.phone {
  font-weight: bold;
  text-decoration: none;
  color: #231f20;
}
