@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&display=swap");

body {
  margin: 0;
  background: hsl(240 20% 8%);
  color: #fff;
  font-family: "Tajawal", sans-serif;
}

/* الحاوية العامة */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* خلفيات التوهج */
.glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: pulse 4s infinite alternate ease-in-out;
}

.glow1 {
  background: hsl(280 100% 70%);
  top: 15%;
  right: 20%;
}
.glow2 {
  background: hsl(200 100% 70%);
  bottom: 20%;
  left: 20%;
  animation-delay: 1.5s;
}
.glow3 {
  background: hsl(320 100% 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.2;
}

/* عناصر طائرة */
.floating {
  position: absolute;
  width: 50px;
  opacity: 0.3;
  animation: float 6s infinite ease-in-out;
}

.icon1 {
  top: 80px;
  right: 80px;
}
.icon2 {
  bottom: 30px;
  left: 20px;
  animation-delay: 2s;
}
.icon3 {
  top: 40%;
  left: 25%;
  animation-delay: 1s;
}
.icon4 {
  top: 80%;
  left: 80%;
  animation-delay: 1s;
}

/* الحركات */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.8;
  }
}

/* المحتوى */
.content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 120px;
}

/* الشارة */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  padding: 8px 18px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge .dot {
  width: 8px;
  height: 8px;
  background: hsl(180 100% 50%);
  border-radius: 50%;
  animation: pulse 1s infinite;
}

/* العنوان */
.title {
  margin-top: 35px;
  font-size: 55px;
  font-weight: 900;
  line-height: 1.4;
}

.title-gradient {
  background: linear-gradient(
    135deg,
    hsl(200 100% 60%),
    hsl(280 100% 65%),
    hsl(320 100% 60%)
  );
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientMove 6s infinite alternate;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* الوصف */
.subtitle {
  margin-top: 18px;
  color: hsl(240 5% 70%);
  font-size: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* الأزرار */
.buttons {
  margin-top: 35px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  padding: 15px 38px;
  border: none;
  cursor: pointer;
  border-radius: 14px;
  font-size: 20px;
  font-weight: 800;
  overflow: hidden;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-icon {
  width: 22px;
}

.btn-primary {
  background: linear-gradient(to left, hsl(180 100% 50%), hsl(200 100% 60%));
  color: hsl(240 20% 8%);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.btn-secondary {
  background: linear-gradient(to left, hsl(280 100% 65%), hsl(320 100% 60%));
  color: #fff;
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.3);
}

.btn:hover {
  transform: scale(1.06);
}

.dots {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 50;
}

.dot-small {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, hsl(180 100% 50%), hsl(200 100% 60%));
  opacity: 0.7;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.dot-small:hover {
  opacity: 1;
  transform: scale(1.3);
}

.dot-small:nth-child(2) {
  animation-delay: 0.3s;
}
.dot-small:nth-child(3) {
  animation-delay: 0.6s;
}

/* استجابة للجوال */
@media (max-width: 768px) {
  .dots {
    bottom: 30px;
    gap: 10px;
  }

  .dot-small {
    width: 10px;
    height: 10px;
  }
}
.English-btn {
  background: linear-gradient(to left, hsl(67, 39%, 54%), hsl(204, 56%, 59%));
  color: #fff;
  box-shadow: 0 0 25px rgba(114, 154, 201, 0.87);
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 38px;
  border: none;
  cursor: pointer;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 400;
  overflow: hidden;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 100;
}
