* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Font Families */
  --font-heading: "AYMAN", sans-serif;
  --font-body: "AYMAN", sans-serif;

  /* Font Sizes */

  --fs-h1: 98px;
  --fs-h2: 34px;
  --fs-h3: 28px;
  --fs-body: 16px;
  --fs-small: 14px;
  --fw-regular: 400;
  --fw-bold: 700;
  --lh-heading: 1.3;
  --lh-body: 1.8;
}


html {
  direction: rtl;
}

@font-face {
  font-family: "AYMAN";
  src: url("../assest/fonts/AYMAN.TTF");
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: "AYMAN", sans-serif;
  background-color: #f1f5fd;
  color: #333;
  line-height: 1.7;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

p {
  color: var(--light-gray);
  font-size: 16px;
}

button {
  font-family: "Almarai", sans-serif;
}
h1,
h2,
h3 {
  color: var(--dark-gray);
}

:root {
  --light-blue: #1195ff;
  --title-color: #cf8902;
  --dark-gray: #2c2d3f;
  --light-gray: #757575;
  --bg-white: #fafafa;
  --bg-newsletter: #edf2ff;
}

/* Commen Var */
.container {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Small */
@media (min-width: 768px) {
  .container {
    width: 100%;
  }
}

/* Meduim */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

/* Large */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

/* Home Start */
.home {
  position: relative;
  width: 100%;
  background-color: #03a9f4;
}

.home .bubbles-header-under img {
  width: 100%;
  padding-top: 60px;
  position: absolute;
}

.home .home-effects .image-line-right img {
  height: 100vh;
}

.container-home {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 100px;
}

.container-home .home-text {
  color: white !important;
  /* padding: 0 30px; */
}

.container-home .home-text h1 {
  font-weight: 850;
  margin-bottom: 10px;
  color: #faa700;
}

.container-home .home-text h5{
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 30px;
}

@media (min-width: 901px) and (max-width: 2000px) {
  .container-home .home-text h1 {
    font-size: 85px !important;
  margin-top: 50PX;
  line-height: 1.1;

  }
}

@media (max-width: 901px) {
  .container-home {
    display: block;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 100px 0 0 0;
  }

  .container-home .home-text {
    text-align: center;
    padding-top: 30px;
    width: auto;
    justify-content: center;
  }

  .container-home .home-text h1 {
    font-size: 60px !important;
    line-height: 1.1;
    /* margin-top: 0px; */
  }
}

/* Home End */

/* ===== Orbit Section ===== */
.orbit-section {
  /* padding: 80px 0; */
  display: flex;
  justify-content: center;
  background: transparent;
  /* width: 500px; */
}

/* متغيرات عامة */
.orbit-wrapper {
  --size: 480px;
  --thumb: 68px;
  --border-thumb: 3px;
  --step-speed: 3.2s;

  width: var(--size);
  height: var(--size);
  position: relative;
  color: #fff;
}

/* أنصاف دوائر داخلية (بيضاء ناعمة) */
.orbit-decor {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.orbit-decor .semi {
  position: absolute;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.55);
  clip-path: inset(0 0 50% 0); /* نصف دائرة علوي */
  animation: semi-rotate 12s linear infinite;
}

.semi-1 {
  inset: 26%;
  border-top-color: rgba(255, 255, 255, 0.45);
}
.semi-2 {
  inset: 34%;
  border-top-color: rgba(255, 255, 255, 0.7);
  animation-duration: 9s;
}
.semi-3 {
  inset: 42%;
  border-top-color: rgba(255, 255, 255, 0.6);
  animation-duration: 7s;
  animation-direction: reverse;
}

@keyframes semi-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* الكارد في المنتصف – أزرق متناسق */
.orbit-center-card {
  position: absolute;
  inset: 12.5%;
  border-radius: 50%;
  box-shadow: 1px 1px 5px 1px #f9f9f954;
  background-color: rgba(6, 134, 246, 0.442);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  transform-origin: center;
}

/* أنيميشن ناعم للكارد عند تغيير الصورة */
.orbit-center-card.card-animate {
  animation: card-swap 0.32s ease-out;
}

@keyframes card-swap {
  0% {
    opacity: 0.85;
    transform: translateY(4px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.orbit-center-avatar {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0 !important;
  /* box-shadow: 0 12px 24px rgba(0,0,0,0.25); */
}
.orbit-center-avatar img {
  width: 100%;
  height: 100%;
  padding: 0;

  object-fit: fill;
}
.orbit-name {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: #ffffff;
}
.orbit-role {
  font-size: 0.85rem;
  color: #e7f3ff;
  margin-bottom: 12px;
}


.orbit-social {
  bottom: 12px; /* مكانها فوق الصورة */
  left: 50%;
  display: flex;
  gap: 8px;
  z-index: 5;
  margin: 10px 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.orbit-social a {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.8rem;
  transition: background 0.22s ease, color 0.22s ease;
}

.orbit-social a:hover {
  background: #ffffff;
  color: #008cff;
}


.orbit-social.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  pointer-events: none;
  display: none; /* هذا هو المفتاح */
}

/* الحلقة الخارجية التي تتحرك عليها الصور
   inset يجعل الحلقة أصغر قليلاً لتكون في منتصف الصور الصغيرة */
.orbit-ring {
  position: absolute;
  inset: 12%; /* تحكم في حجم المسار */
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.75); /* خط واحد واضح */
  z-index: 2;
  transform-origin: 50% 50%;
  transform: rotate(0deg);
  transition: transform var(--step-speed) cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

/* العنصر الحامل للصورة الصغيرة */
.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--thumb);
  height: var(--thumb);
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;

  transform: translate(-50%, -50%);
}

/* الدائرة الصغيرة نفسها */
.orbit-thumb {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: var(--border-thumb) solid #ffffff;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  display: block;
  transform: scale(1);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease, filter 0.25s ease;
}
.orbit-thumb img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  filter: grayscale(100%);
}

/* الصورة النشطة (التي في الأعلى) */
.orbit-item.active .orbit-thumb {
  transform: scale(1.26);
  border-color: #ff0058;
  filter: grayscale(0%);
}

/* لمعات بسيطة – تقدر تبقيها أو تشيلها */
.sparkles {
  position: absolute;
  inset: -30px;
  pointer-events: none;
  z-index: 1;
}
.sparkles span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  opacity: 0;
  animation: sparkle 3s ease-in-out infinite;
}
.sparkles span:nth-child(1) {
  top: 12%;
  left: 22%;
  animation-delay: 0.3s;
}
.sparkles span:nth-child(2) {
  top: 28%;
  right: 18%;
  animation-delay: 1s;
}
.sparkles span:nth-child(3) {
  bottom: 20%;
  left: 16%;
  animation-delay: 1.7s;
}
.sparkles span:nth-child(4) {
  bottom: 32%;
  right: 24%;
  animation-delay: 2.3s;
}

@keyframes sparkle {
  0%,
  100% {
    transform: scale(0.6);
    opacity: 0;
  }
  35% {
    transform: scale(1.6);
    opacity: 0.9;
  }
  60% {
    transform: scale(0.9);
    opacity: 0.4;
  }
}

@media (min-width: 418px) and (max-width: 484px) {
  .container-home {
    display: block;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 50px 0 10px 0;
  }

  .orbit-wrapper {
    --size: 400px;
  }
}

@media (max-width: 417px) {
  .orbit-wrapper {
    --size: 300px;
    --thumb: 50px;
  }

  .orbit-social {
    gap: 5px;
  }
  .orbit-social a {
    width: 20px;
    height: 20px;
  }
}

.orbit-thumb img,
.orbit-center-avatar img {
  display: block;
}


/* Say Customer Start */
.customer-say {
  text-align: center;
  margin-bottom: 20px;
}

.customer-say .say-text h2 {
  font-weight: 800;
  color: var(--title-color);
  font-size: 34px;
}

.customer-say .say-wrapper .say-track {
  justify-content: center;
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.say-container {
  width: 260px;
  background-color: white;
  position: relative;
  border: 1px solid rgb(233, 233, 233);
  border-radius: 4px;
  padding: 0 20px;
  margin-top: 40px;
}

.say-container:hover {
  background-color: var(--light-blue);
  color: white;
}

.say-container:hover .say-text-container h3,
.say-container:hover .say-text-container p {
  color: white;
}

.say-container .say-image img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  left: 48%;
  transform: translate(-50%, -50%);
  position: absolute;
  border: 1px solid rgb(233, 233, 233);
  overflow: visible;
  overflow: hidden;
}

.say-container .say-text-container {
  padding-top: 30px;
}

.say-container .say-text-container p {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* عدد الأسطر */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}

.say-container .say-text-container h5 {
  color: black;
}

.say-container .say-start {
  color: goldenrod;
  padding-bottom: 10px;
  padding-top: 10px;
}

.mySwiper .swiper-pagination {
  margin-top: 30px !important;
  position: relative;
  color: var(--light-blue) !important;
}

/* النقطة المفعّلة */
.mySwiper .swiper-pagination-bullet-active {
  background: #2196f3; 
  width: 46px !important;
  height: 7px !important;
  align-items: center;
  text-align: center;
  border-radius: 4px !important;
  text-align: center;
  outline-color: red !important;
}
/* Say Customer End */

/* Contact Start */
.contact {
  width: 100%;
  background-color: #fafcff;
  padding: 30px 0;
  text-align: center;
}

.contact h2 {
  font-weight: 800;
  color: var(--title-color);
  margin-bottom: 30px;
  font-size: 34px;
}
.contact .con-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact .con-contact .contact-form .form input,
.contact .con-contact .contact-form .form textarea,
.contact .con-contact .contact-form .form button {
  display: block;
  padding: 20px;
  width: 100%;
  margin-bottom: 20px;
  background-color: white;
  border: 1px solid var(--light-blue);
  font-family: "Almarai", sans-serif;
  border-radius: 3px;
  outline: none;
  justify-content: space-between;
}

.contact .con-contact .contact-form .form button {
  background-color: var(--light-blue);
  color: white;
  font-size: 20px;
  padding: 10px;
  margin-top: 20px !important;
  cursor: pointer;
}

.contact .con-contact .map iframe {
  height: 100%;
  width: 100%;
  border-radius: 3px;
  padding-bottom: 20px;
}

@media (max-width: 680px) {
  .contact .con-contact {
    display: flex;
    grid-template-columns: 3fr 1fr;
    flex-direction: column-reverse;
  }

  .contact .con-contact .map iframe {
    height: 50vh;
    width: 100%;
    border-radius: 3px;
    padding-bottom: 20px;
  }
}

.contact .social {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.contact .social .so-item {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
}

.contact .social .so-item .item-text {
  align-items: start;
  text-align: end;
}

.contact .social .so-item i {
  color: rgb(252, 68, 68);
  font-size: 30px;
}

/* Email Send */
.contact .email-contact {
  display: flex;
  background-color: var(--light-blue);
  align-items: center;
  padding: 2rem 0;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  margin-top: 40px;
}

.contact .email-contact .em-text {
  text-align: left;
  align-items: center;
  padding-left: 20px;
  align-items: end;
  justify-content: start;
}
.contact .email-contact .em-text h2 {
  color: white;
  margin-bottom: -10px;
  font-size: 30px;
}

.contact .email-contact .em-text p {
  color: white;
}

.contact .email-contact .email-send {
  width: 40%;
  align-items: end;
  text-align: start;
  height: 30px;
  margin-right: 10px;
}
.contact .email-contact .email-send input {
  border: 1px solid white;
  background-color: var(--light-blue);
  padding: 5px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  text-align: left;
  outline: none;
  width: 85%;
  height: 100%;
  color: white;
}

.contact .email-contact .email-send button {
  background-color: white;
  color: var(--light-blue);
  padding: 6px 10px;
  margin-left: -10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border: 1px solid white;
  outline: none;
  height: 101%;
  cursor: pointer;
}

.error {
  color: red;
  font-size: 14px;
  text-align: right;
  margin-top: -15px;
  margin-bottom: 10px;
  display: block;
}


@media (max-width: 658px) {
  .contact .email-contact {
    display: flex;
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
  }

  .contact .email-contact .email-send {
    width: 100%;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-right: 0;
  }

  .contact .email-contact .email-send input {
    width: 60%;
  }

  .contact .email-contact .em-text {
    text-align: center;
    padding: 0 10px;
  }
}

@media (min-width: 505px) and (max-width: 654px) {
  .contact .social .so-item {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
  }

  .contact .social .so-item .item-text {
    text-align: center;
  }
}

@media (max-width: 504px) {
  .contact .social {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 20px;
  }

  .contact .social .so-item {
    flex-direction: column-reverse;
    text-align: center;
    margin-bottom: -50px;
  }

  .contact .social .so-item .item-text {
    text-align: center;
    margin-bottom: 0px;
    flex-direction: column-reverse;
  }

    .contact .social .so-item .item-text h5{
      font-size: 30px !important;
    }
}
/* Contact End */


/* Footer Start */
.site-footer {
  background-color: #121c3a;
  color: #fff;
  padding-top: 40px;
  font-size: 0.95rem;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.1fr;
  gap: 10px;
  padding-bottom: 25px;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 16px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 55px;
  height: 2px;
  background-color: #fff;
  opacity: 0.7;
}


/* تواصل معنا */
.footer-contact {
  margin-bottom: 10px;
  color: #d4d8ea;
}

.footer-contact .icon {
  margin-left: 6px;
}

/* الروابط */
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #d4d8ea;
  text-decoration: none;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-logo  {
  max-width: 400px;
  /* margin-bottom: 5px; */
  height: 200px;
}

.footer-logo img {
  width: auto;
  height: 100%;
  /* margin-right: 10px; */
}

.footer-hours {
  color: #d4d8ea;
  line-height: 1.5;
}

/* السوشال ميديا */
.footer-social {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}

.footer-social a img {
  width: 32px;
  border-radius: 50%;
  border: 1px solid #4d5a87;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: 0.2s;
  background-color: white;
}

.footer-social a img:hover {
  background-color: #1195ff;
}

/* الجزء السفلي */
.footer-bottom {
  border-top: 1px solid #2a3355;
  padding: 12px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #9ba4c9;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .footer-social {
    margin-top: 0px;
    align-items: center;
  }
}

@media (min-width: 300px) and (max-width: 340px) {
  .footer-social  {
    gap: 5px;
}
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .container {
    width: 100%;
  }

  .footer-logo img {
    margin-right: 0;
  }
}




.toast {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
}

.toast-box {
  background: #1e1e1e;
  color: white;
  padding: 25px 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  animation: scaleIn 0.4s ease;
}

.toast-icon {
  background: #22c55e;
  color: white;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}

.whatsapp-box {
  position: fixed;
  bottom: 95px;
  right: 20px;
  width: 280px;
  background: #f4fff8;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  overflow: hidden;
  display: none;
  z-index: 9999;
}

.whatsapp-box.show {
  display: block;
  animation: fadeUp .3s ease;
}

.wa-header {
  background: #25d366;
  color: #fff;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.wa-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.wa-body {
  padding: 15px;
}

.wa-message {
  background: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  margin-bottom: 15px;
  font-size: 14px;
}

.wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #25d366;
  color: #fff;
  padding: 7px 10px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  gap: 10PX;
  width: 140PX;
}
