* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ffcc00;
  --secoundary-color: #f1e6bb;
  --nav-item-color: black;
  --white-color: rgb(255, 255, 255);
}

body {
  font-family: "Rubik", sans-serif;
  background-color: #fbf5dd;
}

html,
body {
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  background-color: var(--white-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-color);
}

/*  start header section */
.hero_section nav,
.hero_section .hero_contant {
  /* position: relative; */
}

.navbar {
  padding-bottom: 0rem;
  padding-top: 0.5em;
  background: var(--primary-color);
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--secoundary-color) 100%
  );

  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.logo {
  width: 120px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.25));
  transform: translateY(-5px);
}

.logo:hover {
  transform: translateY(-8px) scale(1.08);
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.3));
}

.nav-item {
  padding: 0 8px;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  font-size: 22px;
  font-weight: bold;
}

.nav-link {
  color: var(--nav-item-color) !important;
}

.nav-link:hover {
  color: var(--nav-item-color);
}

.nav-item:hover {
  border-bottom: 3px solid black;
}

.nav-item.active {
  border-bottom: 3px solid black;
}

.nav-item:hover {
  cursor: pointer;
}

.nav-item.active:hover {
  border-bottom: 3px solid black;
}

.change_lang {
  position: relative;
  cursor: pointer;
}
.change_lang .lanuage_icon {
  font-size: 30px;
  color: var(--nav-item-color);
}

.language-options {
  position: absolute;
  inset-inline-end: 0px; /* بدل right */
  top: 40px;
  background-color: var(--secoundary-color);
  border: 1px solid var(--nav-item-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: auto;
  width: auto;
  border-radius: 2px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 15px;
}

.language-options a {
  padding: 10px 8px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.language-options a:hover {
  color: #fff;
  background: linear-gradient(100deg, var(--primary-color), #f2b84d);
  transform: scale(1.05);
}

.navbar-toggler-icon {
  color: black !important;
  font-size: 30px;
  padding: 10px;
}

.navbar-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
}

/*  end header  section*/

/* start hero section */
.hero_content .row {
  padding: 40px 0;
}

.hero-logo-container {
  position: relative;
}

.hero_logo_wrapper {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.glow_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, #fff3c5 85%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: glowRotate 8s linear infinite;
}

.logo_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.logo_inner img {
  width: 180px;
}

.ring {
  position: absolute;
  border: 4px solid transparent;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.ring1 {
  width: 300px;
  height: 300px;
  border-top-color: #ffd700;
  animation: spin 4s linear infinite;
}

.ring2 {
  width: 320px;
  height: 320px;
  border-top-color: #ff8c00;
  animation: spinReverse 5s linear infinite;
}

.ring3 {
  width: 340px;
  height: 340px;
  border-top-color: #038b1f;
  animation: spin 6s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spinReverse {
  0% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes glowRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero-text {
  font-size: 25px;
  max-width: 700px;
  text-align: center;
  padding: 20px 0;
  color: black;
  font-weight: bold;
}

.download_btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 100px;
  font-size: 20px;
  font-weight: 700;
  color: var(--nav-item-color);
  text-decoration: none;
  border-radius: 35px;
  background: var(--primary-color);
  border: 2px solid var(--nav-item-color);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.download_btn i {
  font-size: 20px;
  transition: transform 0.4s ease;
}

.download_btn:hover {
  background: var(--nav-item-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--primary-color);
}

.download_btn:hover i {
  transform: translateY(-2px) rotate(-10deg);
}

.download_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(253, 151, 18, 0.2);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.download_btn:hover::before {
  left: 125%;
}
/* ************************* */
.features,
.faq,
.about {
  padding: 30px 0;
  background-color: #fdfbef;
}
.section-title .title {
  font-size: 35px;
  padding: 20px 0;
}
.features-row {
  margin-top: 30px;
  gap: 25px;
  align-items: center;
  justify-content: center;
}

.feature-box {
  background: #ffffff;
  border: none;
  border-radius: 20px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.feature-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--secoundary-color),
    var(--primary-color)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: inherit;
  z-index: 0;
}

.feature-box:hover::before {
  opacity: 1;
}

.feature-box i,
.feature-box .features-text {
  position: relative;
  z-index: 1;
}

.feature-box i {
  font-size: 22px;
  color: var(--primary-color);
  transition: transform 0.4s ease, color 0.3s ease;
}

.feature-box:hover i:first-child {
  transform: rotate(-20deg) scale(1.2);
  color: black;
}

.feature-box:hover i:last-child {
  transform: translateX(-5px);
  color: black;
}

.features-text {
  margin: 0;
  font-weight: 600;
  font-size: 17px;
  color: #333;
  transition: color 0.3s ease;
}

.feature-box:hover .features-text {
  color: black;
}
.feature-icon-img{
  width: 32px;
}
.feature-box:hover .feature-icon-img {
  transform: scale(1.2) rotate(-10deg);
  transition: transform 0.4s ease;
  filter: brightness(0) saturate(100%);
}



/* ******************************* */

.offers {
  padding: 20px 0;
  --radius: 14px;
  --shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  --border: rgba(0, 0, 0, 0.08);
  direction: rtl; 
}
.feature-container {
  background-color: #fffcf1;
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.offer-text {
  font-size: 25px;
  line-height: 1.4;
  margin-bottom: 18px;
  font-weight: 800;
  color: var(--nav-item-color);
  letter-spacing: 0.2px;
}


.offer-text span {
  display: inline-block;
  margin-inline-start: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 700;
  background: var(--primary-color);
  color: var(--nav-item-color);
  vertical-align: middle;
}


.offers-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}


.offers-features li {
  position: relative;
  padding: 14px 16px 14px 18px;
  background: var(--white-color); 
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 16px;
  color: var(--nav-item-color);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.offers-features li:nth-child(2n) {
  background: var(--secoundary-color);
}
.offers-features li:nth-child(3n) {
  background: #fff8e1;
} /* درجة أفتح من الأصفر */
.offers-features li:nth-child(4n) {
  background: var(--white-color);
}
.offers-features li:nth-child(5n) {
  background: var(--secoundary-color);
}

.offers-features li::before {
  content: "✔";
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--nav-item-color);
  font-weight: 900;
  border: 1px solid var(--nav-item-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.offers-features li::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
  background: var(--primary-color);
  opacity: 0.9;
}


.offers-features li:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.12);
}


@keyframes flash-highlight {
  0% {
    box-shadow: 0 0 0px 0 rgba(246, 211, 70, 0.9);
  }
  50% {
    box-shadow: 0 0 25px 8px rgba(235, 217, 147, 0.9);
  }
  100% {
    box-shadow: 0 0 0px 0 rgba(255, 204, 0, 0);
  }
}

.feature-container.flash {
  animation: flash-highlight 1.2s ease-in-out 2; 
  border-radius: 12px;
}
/* ******** */
.faq-item {
  margin-bottom: 15px;
}

.question {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  cursor: pointer;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.question:hover {
  background-color: #e9ecef;
  transform: translateY(-2px);
}

.question::before {
  content: "+";
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 24px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-item input[type="checkbox"]:checked ~ .question::before {
  content: "−";
  transform: rotate(180deg);
}

.answer {
  max-height: 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  padding: 0 15px;
  background-color: #f1f3f5;
  border-radius: 8px;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item input[type="checkbox"]:checked ~ .answer {
  max-height: 150px;
  padding: 15px;
}
/* ********************* */

.opinion {
  padding: 35px 0;
}
.opinion_card {
  position: relative;
  padding-top: 50px;
  text-align: center;
  background-color: #fff9e5;
  background-size: 800% 800%;
  border-radius: 15px;
  padding-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: black;
  margin: 50px 0;
}

.opinion_img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  border: 3px solid var(--primary-color);
  background-color: var(--white-color);
}

.opin_name {
  font-size: 20px;
  font-weight: bold;
}

.opinion_text {
  font-size: 18px;
}

.about-img {
  width: 200px;
}

/* ------------------------ */

.footer {
  background: var(--primary-color);
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--secoundary-color) 100%
  );
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 20px 0;
  margin-top: 20px;
}

.logo-footer {
  width: 150px;
}
.btn-footer {
  display: inline-block;
  padding: 12px 25px;
  background: black;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 8px 0;
}

.btn-footer:hover {
  background: #e6ad03;
  color: black;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.social_icon {
  font-size: 22px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  margin: 5px;
  text-align: center;
  border-radius: 50%;
  background-color: #ffffff10;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

.social_icon:hover {
  transform: scale(1.2) rotate(5deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.social_icon.telegram:hover {
  background-color: #0088cc;
  color: var(--white-color);
}

.social_icon.email:hover {
  background-color: #dc3545;
  color: var(--white-color);
}

.footer ul li {
  margin-bottom: 10px;
}

.footer .btn {
  border-radius: 30px;
  padding: 8px 30px;
  font-size: 20px;
  margin: 5px 0;
}

.btn:focus {
  box-shadow: none !important;
  border-color: transparent !important;
  outline: none !important;
}
.copyright {
  border-top: 1px solid black;
}

.hidden {
  display: none;
}
.Coming-Soon {
  color: #ff0000;
  font-weight: bold;
  font-size: 16px;
  margin-left: 8px;
  position: relative;
  animation: flashes 1.2s infinite;
}

/* أنيميشن الفلاش */
@keyframes flashes {
  0% { color: #ff0000; text-shadow: 0 0 5px #ff0000; }
  50% { color: #ffd700; text-shadow: 0 0 15px #ffd700; }
  100% { color: #ff0000; text-shadow: 0 0 5px #ff0000; }
}


/*  start responsive design */
@media (max-width: 767px) {

  .hero-text {
    font-size: 18px;
  }
  .section-title .title {
    font-size: 30px;
  }

  .hero_logo_wrapper {
    width: 200px;
    height: 200px;
  }

  .glow_bg {
    width: 180px;
    height: 180px;
  }

  .logo_inner img {
    width: 120px;
  }

  .ring1 {
    width: 200px;
    height: 200px;
  }

  .ring2 {
    width: 220px;
    height: 220px;
  }

  .ring3 {
    width: 240px;
    height: 240px;
  }
  .offer-text {
    font-size: 20px;
  }
  .language-options {
  inset-inline-start: 0px; 
    width: 25%;
}
.logo {
  width: 100px;
  padding-top: 5px;
}
.download_btn {
  padding: 14px 50px;
  font-size: 18px;

}

}
@media (max-width: 400px) {
  .footer .row > div {
    text-align: center;
    margin-bottom: 30px;
  }

  .footer .row {
    flex-direction: column;
    align-items: center;
  }

  .footer .social_icon {
    margin: 0 5px;
  }

  .footer .list-unstyled {
    padding-left: 0;
  }

  .footer .btn {
    margin: 20px 0 0px 0px;
  }

  .social_media {
    align-items: center;
    justify-content: center;
  }
   .hero-text {
    font-size: 18px;
  }
  .section-title .title {
    font-size: 30px;
  }

  .hero_logo_wrapper {
    width: 200px;
    height: 200px;
  }

  .glow_bg {
    width: 180px;
    height: 180px;
  }

  .logo_inner img {
    width: 120px;
  }

  .ring1 {
    width: 200px;
    height: 200px;
  }

  .ring2 {
    width: 220px;
    height: 220px;
  }

  .ring3 {
    width: 240px;
    height: 240px;
  }
  .offer-text {
    font-size: 20px;
  }
  .language-options {
  inset-inline-start: 0px; 
    width: 25%;
}
.logo {
  width: 100px;
  padding-top: 5px;
}
}

@media (max-width: 767px) {
  .footer .row > div {
    text-align: center;
    margin-bottom: 30px;
  }

  .footer .row {
    flex-direction: column;
    align-items: center;
  }

  .footer .social_icon {
    margin: 0 5px;
  }

  .footer .list-unstyled {
    padding-left: 0;
  }

  .footer .btn {
    margin: 20px 0 0px 0px;
  }

  .social_media {
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer .row > div {
    text-align: center;
    margin-bottom: 30px;
  }

  .footer .btn {
    margin: 20px 0 0px 0px;
  }

  .social_media {
    align-items: center;
    justify-content: center;
  }
  .features-row {
  margin-top: 30px;
  gap: 0px;
  align-items: start;
  justify-content: space-between;
}
.feature-box{
  margin-bottom: 10px;
}
}

@media (min-width: 992px) and (max-width: 1199px) {
}

@media (min-width: 1200px) and (max-width: 1400px) {
}

/*  end responsive design */






