@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
:root {
  --primary-dark: #0d0217;
  --secondary-dark: #333;
  --primary-color: #714092;
  --primary-light: #b069e8;
  --secondary-color: #e8d27b; /* أصفر/برتقالي للحاجات المميزة */
  --accent-color: #ffffff;
  --secondary2-color: rgba(255, 255, 255, 0.616);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-light) var(--primary-dark);
}
body {
  font-family: "Tajawal", sans-serif;
  overflow-x: hidden;
  height: 100vh;
  background-color: var(--primary-dark);
}
.container {
  width: 92%;
  margin: auto;
}
/* **************************************************************************************** */
/* ====== Header Base ====== */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.068);
  z-index: 1000;
  transition: all 0.6s ease;
}
header.sticky {
  position: fixed;
  top: 0;
  animation: slideDown 0.6s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.logo {
  width: 10%;
}
.logo a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.logo a img {
  width: 100%;
}
#navMenu li a.active {
  color: var(--primary-light);
  font-weight: 600;
}
.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}
.menu li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
  display: block;
}
.menu li a:hover {
  color: var(--primary-light);
  transform: scale(1.1);
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.social-icons {
  gap: 12px;
  display: inline-flex;
}
.social-icons a {
  color: #b069e8;
  font-size: 18px;
  text-decoration: none;
  transition: 0.4s;
}
.social-icons a:hover {
  transform: scale(1.2);
  color: white;
}
.menu .social-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu .social-menu a {
  display: inline-flex;
  align-items: center;
  padding: 8px;
  text-decoration: none;
  font-size: 18px;
}
/* ====== Hamburger ====== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}
/* ====== Responsive ====== */
@media (max-width: 768px) {
  .logo {
    width: 26%;
  }
  header {
    padding: 0 20px;
  }
  .menu {
    position: fixed;
    top: 0;
    left: -260px;
    height: 100vh;
    width: 220px;
    background: #1110227c;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-right: 1px solid rgba(255, 255, 255, 0.068);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px;
    gap: 20px;
    transition: left 0.4s ease;
    z-index: 9999;
  }
  .menu.show {
    left: 0; /* تظهر */
  }
  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 999999;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .social-icons {
    display: none;
  }
  .menu .social-menu {
    display: flex;
    gap: 5px;
    justify-content: center;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
  .menu {
    flex-direction: column;
  }
}
/* ************************************************************************************************************************************ */
.hero {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 50px;
  padding-right: 60px;
  color: var(--accent-color);
  background: radial-gradient(
      circle 500px at 10% 0%,
      #5e40727b,
      transparent 60%
    ),
    radial-gradient(circle 500px at 100% 70%, #5e40727b, transparent 60%),
    radial-gradient(circle 700px at 10% 0%, #5e407249, transparent 70%),
    radial-gradient(circle 700px at 100% 80%, #5e407249, transparent 70%),
    #0d0217;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.hero__media {
  padding-top: 50px;
  overflow: hidden;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 25%,
    #714092 25%,
    #b069e8 75%,
    transparent 75%
  );
  text-align: center;
}
.hero__media img {
  width: 90%;
  object-fit: cover;
}
#slideshow {
  transition: opacity 0.5s ease-in-out;
}
/* content half */
.hero__content {
  padding-top: 50px;
  width: 50%;
  text-align: end;
}
.dad-kic {
  background: rgba(176, 106, 232, 0.12);
  padding: 8px 12px;
  border-radius: 999px;
  width: fit-content;
  display: inline-flex;
  margin-bottom: 20px;
}
.kicker {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(
    120deg,
    #ffffff 20%,
    #ffffff 40%,
    #b069e8 50%,
    #ffffff 60%,
    #ffffff 80%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
}
@keyframes shine {
  to {
    background-position: 200% center;
  }
}
.title {
  position: relative;
  font-size: 80px;
  line-height: 100px;
  color: var(--accent-color);
  z-index: 1;
  margin-bottom: 35px;
}
.title::before {
  content: attr(data-text);
  position: absolute;
  top: 0%;
  left: 40%;
  transform: translate(-50%, -50%);
  color: transparent;
  -webkit-text-stroke: 1px var(--primary-light);
  font-size: 80px;
  z-index: -1;
  opacity: 0.2;
  white-space: nowrap;
  animation: strokeColor 4s infinite alternate ease-in-out;
}
@keyframes strokeColor {
  0% {
    -webkit-text-stroke: 1px #b169e82d;
  }
  50% {
    -webkit-text-stroke: 1px var(--primary-light);
  }
  100% {
    -webkit-text-stroke: 1px #b169e82d;
  }
}
.gradient-text {
  background: linear-gradient(90deg, #25063f, #714092, #b069e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
p.lead {
  color: var(--secondary2-color);
  margin: 0 0 35px auto;
  font-size: 18px;
  line-height: 40px;
  max-width: 56ch;
}
.actions {
  display: inline-flex;
  gap: 12px;
  margin-bottom: 30px;
}
.store-badge {
  width: fit-content;
  height: 52px;
  overflow: hidden;
  box-shadow: 0 8px 24px #b169e834;
  border: 1px solid #b169e863;
  border-radius: 10px;
  transition: 0.4s;
}
.store-badge:hover {
  transform: scale(1.1);
}
.store-badge img {
  height: 100%;
}
.features-row {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: end;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.493);
}
.feature {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  opacity: 0.95;
}
.la-unlock-alt,
.la-haykal,
.la-scroll {
  color: #b069e8;
  font-size: 20px;
}
.dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  margin: 0 6px;
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    padding-right: 0px;
    height: fit-content;
  }
  .title {
    font-size: 35px;
    line-height: 50px;
    margin-bottom: 5px;
    text-align: center;
  }
  .title::before {
    left: 50%;
    font-size: 40px;
  }
  p.lead {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 30px;
    max-width: max-content;
  }
  .hero__content {
    padding-top: 100px;
    padding: 100px 10px 0 10px;
    width: 100%;
    text-align: center;
  }
  .store-badge {
    height: 42px;
  }
  .store-badge img {
    height: 100%;
  }
  .features-row {
    gap: 5px;
    justify-content: center;
    font-size: 10px;
  }
  .la-unlock-alt,
  .la-haykal,
  .la-scroll {
    font-size: 14px;
  }
  .hero__media {
    padding-top: 0px;

    width: 100%;
  }
  .hero__media img {
    width: 100%;
    margin-bottom: -10px;
    object-fit: cover;
  }
}
/* ************************************************************************************************************************************ */
.section-counter {
  background: radial-gradient(circle 500px at 10% 0%, #0d0217, transparent 60%),
    radial-gradient(circle 500px at 100% -70%, #5e40727b, transparent 60%),
    radial-gradient(circle 700px at 10% 0%, #0d0217, transparent 70%),
    radial-gradient(circle 700px at 100% -70%, #5e407249, transparent 70%),
    #0d0217;
  background-repeat: no-repeat;
  background-size: cover;
}
.counter-box {
  padding: 30px;
  width: 85%;
  border-radius: 15px;
  text-align: center;
  margin: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: white;
}
.counter-box h2 {
  margin-bottom: 30px;
  font-size: 38px;
  color: var(--secondary-dark);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
.counter {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.lan-box {
  width: 3px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-light),
    var(--primary-color)
  );
}
.counter-item {
  text-align: center;
  width: 150px;
}
.counter-item .number {
  font-size: 32px;
  font-weight: bold;
  color: var(--accent-color);
  padding: 20px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--primary-light),
    var(--primary-color)
  );
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}
.counter-item p {
  margin-top: 10px;
  font-size: 16px;
  color: #444;
}
@media (max-width: 768px) {
  .section-counter {
    padding: 0 10px;
  }
  .counter-box {
    padding: 20px;
    width: 100%;
  }
  .counter-box h2 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 900;
  }
  .counter {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .lan-box {
    width: 1px;
    height: 20px;
  }
  .counter-item {
    text-align: center;
    width: 50px;
  }
  .counter-item .number {
    font-size: 12px;
    padding: 15px 0;
    border-radius: 5px;
    margin-bottom: 5px;
  }
  .counter-item p {
    margin-top: 0px;
    font-size: 12px;
  }
}
/* ************************************************************************************************************************************ */
.about-us {
  width: 100%;
  padding: 100px 0 100px 0;
  background: var(--primary-dark);
  background-image: url("img/baaaak.png");
  background-repeat: no-repeat;
  background-position: -50% top;
  background-size: 40%;
  overflow: hidden;
}
.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.about-images {
  width: 50%;
  padding: 50px 0 50px 0;
  display: flex;
  background: linear-gradient(
    to top left,
    transparent 20%,
    var(--primary-dark) 20%,
    var(--primary-light) 80%,
    transparent 80%
  );
}
.about-images .img1 {
  width: 70%;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.574);
}
.about-images .img2 {
  width: 30%;
  position: relative;
  left: 70px;
  top: 80px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.574);
}
.about-content {
  width: 50%;
  direction: rtl;
}
.about-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: var(--accent-color);
}
.about-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--secondary2-color);
}
.about-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
  margin: 30px 0;
}
.icon-box {
  text-align: center;
}
.icon-box i {
  font-size: 28px;
  color: var(--primary-light);
  margin-bottom: 10px;
  border-radius: 50%;
  border: 1px solid var(--primary-light);
  padding: 15px;
}
.icon-box h4 {
  font-size: 16px;
  color: var(--secondary2-color);
}
.btn {
  display: inline-block;
  padding: 12px 25px;
  color: var(--primary-light);
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  border-radius: 20px 0 20px 0;
  border: 1px solid var(--primary-light);
}
.btn:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .about-us {
    width: 100%;
    padding: 50px 0 50px 0;
  }
  .about-wrapper {
    flex-direction: column;
  }
  .about-images {
    width: 100%;
    padding: 50px 0 50px 0;
  }
  .about-images .img1 {
    border-radius: 10px;
  }
  .about-images .img2 {
    left: 20px;
    top: 70px;
    border-radius: 10px;
  }
  .about-content {
    width: 100%;
    direction: rtl;
  }
  .about-content h2 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 10px;
  }
  .about-content p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .about-icons {
    gap: 20px 20px;
    margin: 20px 0;
  }
  .icon-box i {
    font-size: 14px;
    padding: 10px;
  }
  .icon-box h4 {
    font-size: 12px;
  }
  .btn {
    padding: 15px 15px;
    font-size: 14px;
  }
  .btn:hover {
    transform: scale(1.1);
  }
}
/* ************************************************************************************************************************************ */
.services {
  width: 100%;
  padding: 80px 0 0 0;
  background-color: var(--primary-dark);
  text-align: center;
  background-image: url("img/baaaak.png");
  background-repeat: no-repeat;
  background-position: 120% -10%;
  background-size: 40%;
  overflow: hidden;
}
.services h2 {
  font-size: 38px;
  margin-bottom: 15px;
  color: var(--accent-color);
}
.section-text {
  font-size: 16px;
  color: var(--secondary2-color);
  margin-bottom: 40px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 60px;
}
.service-item {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  background-color: #140322;
  padding: 20px 20px 30px 20px;
  transition: 0.4s;
  border-right: 3px solid var(--primary-light);
}
.service-item:hover {
  z-index: 10;
  transform: translateY(-10px);
  box-shadow: 0 5px 15px rgba(115, 9, 148, 0.44);
}
.service-img {
  position: relative;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  transition: transform 0.4s ease, opacity 0.4s ease;
  border-radius: 20px;
  margin-bottom: 20px;
  opacity: 0.6;
}
.service-img:hover img {
  opacity: 1;
}
.service-img h3 {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  transition: 0.4s;
}
.service-img:hover h3 {
  color: var(--primary-light);
}
.service-img p {
  color: var(--secondary2-color);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .services {
    padding: 50px 0 50px 0;
    background-position: 120% 0%;
  }
  .services h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .section-text {
    font-size: 12px;
    margin-bottom: 30px;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
  }
  .service-item {
    width: 100%;
    padding: 10;
    border-radius: 10px;
  }
  .service-img img {
    border-radius: 10px;
    margin-bottom: 10px;
  }
  .service-img h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .service-img p {
    font-size: 10px;
    margin-bottom: 0px;
  }
}
/* ************************************************************************************************************************************ */
.fa {
  width: 100%;
  overflow: hidden;
  text-align: center;
  background-color: var(--primary-dark);
}
.fa img {
  width: 70%;
  transform: rotate(20deg);
}
/* ************************************************************************************************************************************ */
.app-section {
  width: 100%;
  padding: 80px 0;
  margin-top: -130px;
  background: var(--primary-dark);
  text-align: center;
  overflow: hidden;
}
.app-section h2 {
  font-size: 38px;
  margin-bottom: 15px;
  color: var(--accent-color);
}
.phgraf-app {
  font-size: 16px;
  color: var(--secondary2-color);
  margin-bottom: 35px;
}
.section-switch {
  margin-bottom: 50px;
}
.section-switch button {
  padding: 10px 20px;
  margin: 0 5px;
  border: none;
  background: var(--accent-color);
  color: var(--primary-dark);
  cursor: pointer;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Tajawal", sans-serif;
  transition: background 0.3s;
}
.section-switch button.active {
  background: var(--primary-light);
  color: var(--accent-color);
}
.timeline {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95) translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); /* منحنى ناعم */
  position: relative;
  height: 0;
  overflow: hidden;
}
.timeline.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
  height: fit-content;
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: center;
  gap: 20px;
}
.feature-image {
  background: linear-gradient(
    135deg,
    var(--primary-light),
    var(--primary-color)
  );
  padding: 40px;
  border-radius: 100%;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(115, 9, 148, 0.44);
}
.feature-image img {
  width: 100%;
  border-radius: 20px;
  transition: transform 0.4s ease;
  text-align: center;
}
.feature-image img:hover {
  transform: scale(1.05);
}
.timeline-line {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-line::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  background: var(--primary-light);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  border-radius: 20px;
}
.circle {
  width: 50px;
  height: 50px;
  background: var(--primary-dark);
  color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 1;
  border: 2px solid var(--primary-light);
}
.feature-text {
  text-align: center;
}
.feature-text h3 {
  color: var(--accent-color);
  font-size: 20px;
  margin-bottom: 10px;
}
.feature-text p {
  color: var(--secondary2-color);
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .app-section {
    padding: 50px 0;
    margin-top: -70px;
  }
  .app-section h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .phgraf-app {
    font-size: 12px;
    margin-bottom: 30px;
  }
  .feature-image {
    padding: 10px;
    margin-bottom: 20px;
  }
  .feature-text h3 {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .feature-text p {
    font-size: 10px;
    margin-bottom: 20px;
  }
}
/* ************************************************************************************************************************************ */
.fa2 {
  width: 100%;
  overflow: hidden;
  text-align: center;
  background-color: var(--primary-dark);
}
.fa2 img {
  width: 70%;
  transform: rotate(-20deg);
}
/* ************************************************************************************************************************************ */
.join-artzone {
  padding: 80px 0;
  text-align: center;
  background: var(--primary-dark);
  margin-top: -130px;
  background-image: url("img/baaaak.png");
  background-repeat: no-repeat;
  background-position: -50% top;
  background-size: 40%;
  overflow: hidden;
}
.join-artzone h2 {
  font-size: 38px;
  margin-bottom: 15px;
  color: var(--accent-color);
}
.join-artzone .desc {
  font-size: 18px;
  margin-bottom: 50px;
  color: var(--secondary2-color);
}
.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 130px;
}
.feature-item {
  max-width: 220px;
}
.feature-item i {
  font-size: 30px;
  color: var(--primary-light);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 1px solid var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
}
.feature-item h3 {
  color: var(--accent-color);
  font-size: 20px;
  margin-bottom: 10px;
}
.feature-item p {
  font-size: 14px;
  color: var(--secondary2-color);
}
.app-promo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-light),
    var(--primary-color)
  );
  border-radius: 20px;
  padding: 40px 40px 0 40px;
  color: var(--accent-color);
  width: 80%;
  margin: auto;
  height: 450px;
}
.mobile-image {
  background-color: var(--accent-color);
  border-radius: 50%;
  text-align: center;
  width: 40%;
  height: 100%;
}
.mobile-image img {
  width: 75%;
  height: 124.5%;
  margin-top: -100px;
}
.promo-text {
  width: 60%;
  text-align: center;
}
.promo-text h3 {
  font-size: 44px;
  margin-bottom: 25px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.301);
}
.promo-text p {
  font-size: 16px;
  margin-bottom: 40px;
}
.download-buttons {
  display: inline-flex;
  gap: 20px;
}
.download-buttons img {
  width: 180px;
  transition: 0.4s;
}
.download-buttons img:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .join-artzone {
    padding: 50px 0;
    margin-top: -70px;
  }
  .join-artzone h2 {
    font-size: 22px;
    margin-bottom: 0px;
  }
  .join-artzone .desc {
    font-size: 12px;
    margin-bottom: 40px;
  }
  .features {
    gap: 20px;
    width: 100%;
    margin-bottom: 40px;
  }
  .feature-item {
    width: 45%;
  }
  .feature-item i {
    font-size: 20px;
  }
  .feature-item h3 {
    font-size: 14px;
  }
  .feature-item p {
    font-size: 10px;
  }
  .app-promo {
    flex-direction: column-reverse;
    padding: 30px 10px 0 10px;
    width: 100%;
    height: max-content;
    overflow: hidden;
  }
  .mobile-image {
    border-radius: 50%;
    width: 80%;
    height: 100%;
  }
  .mobile-image img {
    width: 60%;
    margin-bottom: -6px;
    margin-top: 0;
  }
  .promo-text {
    width: 100%;
    margin-bottom: 20px;
  }
  .promo-text h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .promo-text p {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .download-buttons img {
    width: 80%;
  }
  .download-buttons {
    gap: 0px;
  }
}
/* ************************************************************************************************************************************ */
.footer {
  background: linear-gradient(
    150deg,
    var(--primary-dark) 40%,
    var(--primary-light) 100%
  );
}
.footer-container {
  display: grid;
  padding: 50px 0px;
  grid-template-columns: repeat(auto-fit, minmax(20px, 1fr));
  gap: 30px;
  width: 100%;
}
.footer-column {
  text-align: end;
}
.footer-column h3 {
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--accent-color);
}
.footer-column ul {
  list-style: none;
}
.footer-column ul li {
  margin: 10px 0;
  color: var(--accent-color);
}
.footer-column ul li a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.4s;
}
.footer-column ul li a:hover {
  color: var(--primary-dark);
}
.download-buttons2 {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
}
.download-buttons2 img {
  width: 50%;
  margin-bottom: 10px;
  transition: 0.4s;
}
.download-buttons2 img:hover {
  transform: scale(1.1);
}
.footer-rows {
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: center;
}
.footer-rows img {
  width: 50%;
  margin-bottom: 10px;
  transition: 0.4s;
}
.footer-rows img:hover {
  transform: scale(1.1);
}
.logo-column {
  text-align: right;
  color: var(--accent-color);
}
.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}
.footer-smoll-up {
  width: 100%;
  background-color: var(--primary-dark);
}
.footer-smoll {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-dark);
}
.payment {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 10px 0;
}
.payment img {
  height: 35px;
  width: auto;
  object-fit: cover;
}
.footer-bottom {
  font-size: 14px;
  text-align: center;
  padding: 10px;
  color: var(--accent-color);
}
.abo {
  margin-bottom: 10px;
}
.social-icons--footer {
  gap: 12px;
  display: inline-flex;
}
.social-icons--footer a {
  color: var(--accent-color);
  font-size: 18px;
  text-decoration: none;
  transition: 0.4s;
}
.social-icons--footer a:hover {
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .footer-container {
    display: flex;
    flex-direction: column-reverse;
    padding: 30px 0px;
  }
  .footer-column h3 {
    font-size: 18px;
  }
  .footer-column ul li {
    font-size: 14px;
  }
  .download-buttons2 img {
    width: 40%;
  }
  .payment img {
    height: 15px;
  }
  .footer-bottom {
    font-size: 12px;
  }
}
/* ************************************************************************************************************************************ */
.loader-center {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-dark);
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader-center.hidden {
  opacity: 0;
  visibility: hidden;
}
.spinner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--primary-light); /* لون الدوران */
  animation: spin 0.9s linear infinite;
  box-shadow: 0 0 18px #b300ff33;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}