* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

    html {
  scroll-behavior: smooth;
}
    html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
    font-family: "Tajawal", "Cairo", Arial, sans-serif !important;

}

body {
  background: #f7f7f7;
  color: #222;
    font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
     padding-top: 60px; /* Make space for the fixed navbar so it doesn't cover content */
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  background-color: #0b0b0b; /* Dark background */
  border-bottom: 1px solid rgba(25,198,192,0.35);

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 32px;
  z-index: 1000;
  max-height: 100px!important;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
 margin-top: 20px;
  padding: 14px 28px;
  background-color: #ffffff;
  color: #000000;

  font-family: "Tajawal", sans-serif;
  font-size: 18px;
  font-weight: 500;

  border-radius: 5px; /* fully rounded */
  border: 2px solid #1fb6aa;

  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}
.whatsapp-text{
  font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
  font-weight: 700;
  font-size: 20px !important;
  color: #000000 !important;
}
.whatsapp-btn i {
  font-size: 40px;
  color: #25d366; /* WhatsApp green */
  
}

.whatsapp-btn:hover {
  background-color: #1fb6aa;
  color: #ffffff;
}

.whatsapp-btn:hover i {
  color: #ffffff;
}

/* Logo */

.nav-logo img{
  width: 100px;
  height: 100px;
}
/* Nav links */
.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #cfdede; /* secondary text */
  font-weight: 500;
  transition: color 0.25s ease;
   font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}

.nav-links a:hover {
  color: #19c6c0;
}

.tittle_hero{
    font-family: "Tajawal", "Cairo", Arial, sans-serif !important;

}

/* Language button */
.nav-actions button {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(25,198,192,0.35);
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.nav-actions button:hover {
  background-color: rgba(25,198,192,0.15);
  color: #19c6c0;
}

/* Arabic support */
html[dir="rtl"] .navbar {
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}


.hero {
  margin-top: 30px;
  height: 70vh;
  background: url("img/hero\ image.png") center/cover no-repeat;
    background-position: top center; /* key line */
      background-repeat: no-repeat;
  animation: slideBg 15s infinite alternate;
}


.numbers-section {
  background: #0b0b0b;
  padding: 60px 20px;
  text-align: center;
}

.numbers-section h2 {
  color: #19c6c0;
  margin-bottom: 40px;
  font-size: 32px;

      font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}


.video-section {
  background: #000;
  padding: 80px 20px;
  text-align: center;
  direction: rtl;
}

.video-title {
  color: #19c6c0;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
  
      font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}

.video-container {
  max-width: 1000px;
  margin: auto;
}

.video-wrapper {
  position: relative;
  border: 1px solid rgba(25,198,192,0.4);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(25,198,192,0.15);
  transition: 0.3s ease;
}

.video-wrapper:hover {
  box-shadow: 0 0 60px rgba(25,198,192,0.3);
}

.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: 16px;
}
.video-wrapper iframe {
  width: 100%;
  height: 500px;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .video-wrapper iframe {
    height: 250px;
  }
}

.spasm-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: #111;
  border: 1px solid rgba(25,198,192,0.35);
  border-radius: 14px;
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px;
  gap: 20px;
}

.spasm-stat {
  flex: 1 1 180px;
  min-width: 160px;
}

.spasm-stat h4 {
  font-size: 36px;
  color: #19c6c0;
  margin-bottom: 10px;
  font-weight: 800;
      font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}

.spasm-stat p {
  font-size: 18px;
  color: #cfdede;
      font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}

.white-vertical-line {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
}

/* Mobile */
@media (max-width: 768px) {
  .spasm-stats {
    flex-direction: column;
    gap: 25px;
  }

  .white-vertical-line {
    display: none;
  }

  .spasm-stat {
    background: #111;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  }
}

@keyframes slideBg {
  0% { background-position: center; }
  100% { background-position: right; }
}

.overlay {
  height: 100%;
  background: rgba(0,0,0,0.5);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.services, .faq, .about {
  padding: 60px 20px;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
    font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}

footer {
  background: #111;
  color: white;
  padding: 30px;
  text-align: center;
}
footer p {
      font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
font-weight: 400;
}
.socials a {
  color: white;
  margin: 0 10px;
      font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}


.nano-services {
  background: #f1eeee;
  padding: 100px 20px;
  
  font-family: 'Tajawal', sans-serif;
}

.nano-services .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.nano-services h2 {
  font-size: 36px;
  color: #19c6c0;
  margin-bottom: 15px;
      font-family: "Tajawal", "Cairo", Arial, sans-serif !important;

}

.nano-services .subtitle {
  max-width: 800px;
  margin: 0 auto 60px;
 color: #19c6c0;
  line-height: 1.8;
  font-size: 20px !important;
      font-family: "Tajawal", "Cairo", Arial, sans-serif !important;

}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #19c6c0;
  border-radius: 18px;
  overflow: hidden;
  border: 8px solid rgba(25,198,192,0.25);
  transition: transform .4s ease, box-shadow .4s ease;
  }

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-card .content {
  padding: 25px;
  text-align: right;
}

.service-card .icon {
  display: inline-block;
  font-size: 28px;
  background: rgba(25,198,192,0.15);
  color: #19c6c0;
  padding: 10px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
      font-family: "Tajawal", "Cairo", Arial, sans-serif !important;

}

.service-card p {
  font-size: 17px;
  color: #ffffff;
  line-height: 1.7;
      font-family: "Tajawal", "Cairo", Arial, sans-serif !important;

}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(25,198,192,0.25);
}
.fa-brands img{
  width: 50px;
  height: 50px ;
}

.faq-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
    font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
  font-family: "Cairo", sans-serif;
  align-items: right;
}

.faq-title {
  text-align: center;
  font-size: 46px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #12a19d;
    font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}

.faq-item {
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #fff;
    font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}
.arrow-icon img{
  width: 70px;
  height: 70px;

}
.faq-question {
  width: 100%;
  text-align: right;
  padding: 15px 20px;
  background: #fff;
  border: none;
  color: #444444;
  font-weight: bold;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 24px;
  cursor: pointer;
    font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}
.faq-question summary{
  font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}

.arrow-icon {
  font-size: 1.2rem;
  color: #7a2a67;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
  background: #fafafa;
  font-size: 18px;
  text-align: right;
  direction: rtl;
    
}

.faq-answer p {
  margin: 15px 0;
  color: #444;
 font-size: 19px;
 font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px;
}

.faq-item.active .arrow-icon {
  transform: rotate(180deg);
}
.faq-list {
  list-style: none;
  padding: 0;
 font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
  text-align: right;
}

.faq-list li {
  
  font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
  
}


@media (max-width: 1024px) {
  .faq-section {
    padding: 15px;
  }

  .faq-title {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .faq-question {
    font-size: 20px;
    padding: 12px 16px;
  }

  .faq-answer p {
    font-size: 16px;
  }

  .arrow-icon img {
    width: 35px;
    height: 35px;
  }
}

/* Small tablets / large phones (480px - 767px) */
@media (max-width: 767px) {
  .faq-title {
    font-size: 28px;
  }

  .faq-question {
    font-size: 18px;
    padding: 10px 14px;
  }


  .arrow-icon img {
    width: 30px;
    height: 30px;
  }
}

/* Mobile phones (up to 479px) */
@media (max-width: 479px) {
  .faq-section {
    padding: 10px;
  }

  .faq-title {
    font-size: 24px;
  }

  .faq-question {
    font-size: 16px;
    padding: 8px 12px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .arrow-icon img {
    width: 25px;
    height: 25px;
  }
}


/* about */



.about {
  padding: 120px 20px 60px;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-card {
  background: #111;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03);
}

.about-card h1 {
  font-size: 42px;
  margin-bottom: 20px;
      font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}

.about-card h2 {
  font-size: 26px;
  margin-bottom: 15px;
      font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}

.about-card p {
  color: #cfdede;
  line-height: 1.9;
      font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
  font-size: 16px;
      font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  
}

.about-box {
  background: #111;
  padding: 30px;
  border-radius: 16px;
}
.about-box p {

  font-weight: 300;
  margin-bottom: 12px;
      font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}
.about ul {
  list-style: none;
  padding: 0;
  margin: 0;
      font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}

.about ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: #cfdede;
      font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}

.about ul li:last-child {
  border-bottom: none;
      font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}

.highlight {
  border: 1px solid rgba(255,255,255,0.08);
}

.tagline {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}


/* footer */

.site-footer {
  background-color: #0b0b0b;
  border-top: 1px solid rgba(25,198,192,0.35);
  padding: 25px 20px;

}

.footer-content {
  max-width: 1200px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
  color: #cfdede;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #111;
  border-radius: 50%;
  border: 1px solid rgba(25,198,192,0.35);

  color: #ffffff;
  font-size: 16px;

  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background-color: #19c6c0;
  color: #0b0b0b;
  transform: translateY(-2px);
}


/* float */

.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 40px;
  width: 60px;
  height: 60px;
  background: #19c6c0; /* Nano Teal */
  color: #0b0b0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(25,198,192,0.6);
  animation: pulse 2s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(25,198,192,0.8);
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(25,198,192,0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(25,198,192,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(25,198,192,0);
  }
}



.testimonials {
  position: relative;
  max-width: 700px;
  margin: 80px auto;
  text-align: center;
  direction: rtl;
  color: #000000;
  font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}

.testimonial-card {
  background: #c9c6c6;
  border: 1px solid rgba(25,198,192,0.35);
  border-radius: 14px;
  padding: 30px;
}

.stars {
  color: #ffc107;
  font-size: 22px;
  margin-bottom: 15px;
}

.testimonial-text {
  color: #111111;
  font-size: 20px;
  line-height: 1.8;
  transition: opacity 0.3s ease;
    font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
    font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
    font-size: 20px;
}

.testimonial-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #19c6c0;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 40%;
  background: none;
  border: none;
  font-size: 32px;
  color: #19c6c0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.arrow:hover {
  transform: scale(1.2);
}

.arrow.left { left: -50px; }
.arrow.right { right: -50px; }

/* Dots */
.testimonial-dots {
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #555;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
}

.dot.active {
  background: #19c6c0;
  transform: scale(1.3);
}



:root {
  --primary-color: #00bcd4; /* change to your brand color */
}
@media (max-width: 768px) {

  .testimonials {
    max-width: 95%;
  }

  .arrow {
    font-size: 26px;
    top: 50%;
    transform: translateY(-50%);
  }

  .arrow.left {
    left: 10px;   /* move inside */
  }

  .arrow.right {
    right: 10px;  /* move inside */
  }

}


.why-section {
  padding: 100px 0;
  background: #0f172a; /* dark premium background */
  color: #fff;
  direction: rtl;
}

.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 60px;
  position: relative;
      font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  display: block;
  margin: 15px auto 0;
  border-radius: 10px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.why-card {
  position: relative;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 0 30px rgba(0, 188, 212, 0.3);
}

.why-number {
  font-size: 60px;
  font-weight: 800;
  color: var(--primary-color);
  opacity: 0.15;
  position: absolute;
  top: 15px;
  left: 20px;
}

.why-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
      font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}

.why-card p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.85;
  position: relative;
  z-index: 2;
      font-family: "Tajawal", "Cairo", Arial, sans-serif !important;
}

/* Responsive */
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-number {
    font-size: 50px;
  }
}
