/* Start Global Rules */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap");
:root {
  --brand: #662e9b;
  --dark: #0a0908;
  --light: #ffffff;
  --main-transition: all 0.4s ease-in-out;
}
body {
  background-color: var(--dark);
  color: var(--dark);
  font-family: "IBM Plex Sans Arabic", sans-serif;
}
.section-title {
  color: var(--dark);
  text-align: center;
  font-weight: bold;
  font-size: 80px;
  padding-bottom: 30px;
  position: relative;
}
.section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 20px;
  background-color: var(--brand);
  width: 40%;
  height: 10px;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 40px;
    text-align: right;
  }
}
/* End Global Rules */

/* Start Navbar */
.navbar {
  background-color: #0a0908e0;
  backdrop-filter: blur(8px);
  min-height: 72px;
}
.navbar .navbar-brand img {
  width: 250px;
}
.navbar .navbar-nav .nav-link {
  padding: 10px 20px;
  color: var(--light);
  font-weight: 500;
  font-size: 18px;
  border-radius: 100px;
  transition: all 0.3s;
  position: relative;
}
.navbar .navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 20px;
  background-color: var(--brand);
  border-radius: 100%;
  width: 0;
  height: 1px;
  transition: all 0.4s;
  z-index: -1;
}
.navbar .navbar-nav .nav-item:hover .nav-link::before {
  width: 50px;
}
.navbar .navbar-nav .nav-link:hover {
  color: var(--brand);
}
.navbar .navbar-toggler {
  box-shadow: none !important;
  border: none !important;
  background-color: var(--light);
  padding: 10px;
  color: var(--dark);
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar .navbar-toggler i {
  font-size: 32px;
  color: var(--dark) !important;
}
.navbar .request-btn {
  background-color: var(--brand);
  color: var(--light);
  padding: 10px 25px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--main-transition);
}
.navbar .request-btn:hover {
  background-color: var(--light);
  color: var(--dark);
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    width: 180px;
  }
  .navbar .navbar-nav {
    margin-bottom: 20px !important;
  }
  .navbar .request-btn {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
}
/* End Navbar */

/* Start Hero Section */
.hero-section {
  padding: 20px 0;
  background-color: var(--dark);
  min-height: calc(100vh - 100px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
.bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff04;
  overflow: hidden;
  z-index: 1;
}

/* إعداد الفقاعات */
.bubbles span {
  position: absolute;
  display: block;
  bottom: -150px;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: floatBubble 20s ease-in-out infinite;
  opacity: 0.8;
}

/* حركة عشوائية لكل فقاعة */
.bubbles span:nth-child(1) {
  left: 10%;
  width: 15px;
  height: 15px;
  animation-duration: 18s;
  animation-delay: 0s;
}
.bubbles span:nth-child(2) {
  left: 20%;
  width: 25px;
  height: 25px;
  animation-duration: 25s;
  animation-delay: 2s;
}
.bubbles span:nth-child(3) {
  left: 35%;
  width: 12px;
  height: 12px;
  animation-duration: 22s;
  animation-delay: 4s;
}
.bubbles span:nth-child(4) {
  left: 50%;
  width: 30px;
  height: 30px;
  animation-duration: 28s;
  animation-delay: 1s;
}
.bubbles span:nth-child(5) {
  left: 65%;
  width: 18px;
  height: 18px;
  animation-duration: 24s;
  animation-delay: 3s;
}
.bubbles span:nth-child(6) {
  left: 75%;
  width: 22px;
  height: 22px;
  animation-duration: 26s;
  animation-delay: 5s;
}
.bubbles span:nth-child(7) {
  left: 80%;
  width: 12px;
  height: 12px;
  animation-duration: 20s;
  animation-delay: 7s;
}
.bubbles span:nth-child(8) {
  left: 90%;
  width: 28px;
  height: 28px;
  animation-duration: 30s;
  animation-delay: 6s;
}
.bubbles span:nth-child(9) {
  left: 5%;
  width: 10px;
  height: 10px;
  animation-duration: 21s;
  animation-delay: 9s;
}
.bubbles span:nth-child(10) {
  left: 55%;
  width: 24px;
  height: 24px;
  animation-duration: 27s;
  animation-delay: 4s;
}
.bubbles span:nth-child(11) {
  left: 15%;
  width: 16px;
  height: 16px;
  animation-duration: 23s;
  animation-delay: 6s;
}
.bubbles span:nth-child(12) {
  left: 40%;
  width: 20px;
  height: 20px;
  animation-duration: 29s;
  animation-delay: 8s;
}
.bubbles span:nth-child(13) {
  left: 70%;
  width: 14px;
  height: 14px;
  animation-duration: 25s;
  animation-delay: 10s;
}
.bubbles span:nth-child(14) {
  left: 85%;
  width: 26px;
  height: 26px;
  animation-duration: 32s;
  animation-delay: 12s;
}
.bubbles span:nth-child(15) {
  left: 30%;
  width: 18px;
  height: 18px;
  animation-duration: 28s;
  animation-delay: 9s;
}

/* حركة الفقاعات لحد فوق */
@keyframes floatBubble {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.2;
  }
  20% {
    transform: translate(20px, -20vh) scale(1.1);
    opacity: 0.6;
  }
  40% {
    transform: translate(-30px, -40vh) scale(1.2);
    opacity: 0.8;
  }
  60% {
    transform: translate(30px, -70vh) scale(1);
    opacity: 0.9;
  }
  80% {
    transform: translate(-20px, -100vh) scale(0.9);
    opacity: 0.5;
  }
  100% {
    transform: translate(10px, -120vh) scale(0.8);
    opacity: 0;
  }
}
.hero-section h1 {
  font-size: 55px;
  font-weight: 600;
  color: var(--light);
  width: 50%;
  margin: auto;
}
.hero-section h1 span {
  color: var(--brand);
}
.hero-section .lead {
  color: var(--light);
  text-align: center;
  width: 60%;
  margin: auto;
  margin-top: 30px;
}
.hero-section ul li {
  background-color: #ffffff04;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 100px;
}
.hero-section .hero-btns {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.hero-section .hero-btns a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  padding: 12px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
.hero-section .hero-btns i {
  margin-left: 10px;
  margin-right: 10px;
}
.hero-section .hero-btns .hire-btn {
  background-color: var(--brand);
  color: var(--light);
}
.hero-section .hero-btns .whatsapp-btn {
  background-color: #0ead69;
  color: var(--light);
}
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 40px;
    width: 100%;
  }
  .hero-section .lead {
    width: 100%;
  }
  .hero-section .hero-btns {
    flex-direction: column;
  }
  .hero-section .hero-btns a {
    width: 80%;
  }
}
/* End Hero Section */

/* Start Call To Action */
.cta {
  background-color: var(--brand);
  padding: 15px;
}
.cta .cta-text {
  color: var(--light);
  font-size: 25px;
  text-align: center;
  font-weight: bold;
}
.cta .cta-text span {
  font-size: 50px;
}
/* End Call To Action */

/* Start About */
.about {
  padding: 100px 0;
  background-color: var(--light);
}
.about .lead {
  font-weight: 400;
  padding-top: 10px;
  color: var(--dark);
  text-align: right;
}
.about h3 {
  color: var(--brand);
}
/* End About */

/* Start Services */
.services {
  background-color: #edf2f4;
  padding: 100px 0;
}
.services h3 {
  color: var(--brand);
}
.services img {
  mix-blend-mode: multiply;
}
/* End Services */

/* Start Contact */
.contact {
  padding: 100px 0;
}
.contact .section-title {
  color: var(--light) !important;
}
.contact h3 {
  color: var(--brand);
}
.contact p {
  color: var(--dark);
}
.contact .box {
  background-color: var(--light);
  border-top: solid 10px var(--brand);
  border-radius: 5px;
  padding: 20px 15px;
}
/* End Contact */

/* Start Footer */
footer {
  padding: 30px 15px;
}
footer p {
  color: var(--light);
  text-align: center;
}

/* End Footer */
