/* Success stories */
.services-deck {
  direction: ltr;
    overflow-x: clip;
  }
  
  .services-deck .services-container {
    direction: ltr;
    justify-content: center;
    overflow-x: clip;
}

.services-deck .service {
  direction: rtl;
  text-align: right;
  min-width: 0;
}

.services-deck .service h3,
.services-deck .service p {
  direction: rtl;
}

.services-deck .icon {
  display: grid;
  place-items: center;
  direction: ltr;
}

.services-deck .circle-icon,
.services-deck .negcircle-icon {
  position: relative;
  left: auto;
  right: auto;
  transform: none;
  margin: 0 auto;
}
.stats-container {
  direction: rtl;
}

 .negcircle-icon {
  width: 70px;
  height: 70px;
  background-color: red;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.negcircle-icon {
  position: relative;
}

.service:nth-child(1) .negcircle-icon::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z"/></svg>');
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: contain;
}

.service:nth-child(2) .negcircle-icon::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46A7.93 7.93 0 0020 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74A7.93 7.93 0 004 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z"/></svg>');
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: contain;
}

.service:nth-child(3) .negcircle-icon::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z"/><path d="M9 13l-3-3 3-3" stroke="white" stroke-width="2" fill="none"/><path d="M15 13l3-3-3-3" stroke="white" stroke-width="2" fill="none"/></svg>');
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: contain;
}

.testimonials {
  background: linear-gradient(135deg, #101f4d, #0c101a) no-repeat;
  padding: 88px 20px 64px;
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

section.testimonials > h2 {
  text-align: center;
  color: var(--primary-color);
  margin: 0 0 36px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  display: block;
  width: 100%;
}

.testimonials .testimonial-grid {
  display: block;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
}

.testimonial-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  align-items: center;
  gap: clamp(24px, 4vw, 46px);
  padding: clamp(28px, 4vw, 40px);
  border-radius: 26px;
  border: 1px solid rgba(79, 110, 230, 0.5);
  background: linear-gradient(145deg, rgba(34, 37, 47, 0.96), rgba(17, 19, 29, 0.98));
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  isolation: isolate;
  direction: rtl;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 215, 0, 0.16), transparent 38%),
    linear-gradient(270deg, rgba(79, 110, 230, 0.12), transparent 36%);
  z-index: 0;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 10px;
  background: linear-gradient(to bottom, rgba(255, 215, 0, 0.9), rgba(79, 110, 230, 0.9));
  opacity: 0.9;
  z-index: 0;
}

.testimonial-profile,
.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-profile {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-end;
}

.testimonial-image {
  width: clamp(132px, 15vw, 172px);
  height: clamp(132px, 15vw, 172px);
  border-radius: 32px;
  padding: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 215, 0, 0.18), rgba(79, 110, 230, 0.28));
  border: 1px solid rgba(255, 215, 0, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 18px 35px rgba(0, 0, 0, 0.26);
}

.testimonial-image picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  margin-bottom: 0;
  display: block;
  background: #0f1526;
}

.testimonial-meta {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.client-name {
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.testimonial-location-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.client-location {
  margin: 0;
  font-size: 1rem;
  color: rgb(250, 242, 20);
  letter-spacing: 0.02em;
}

.testimonial-flag {
  width: 32px;
  height: 22px;
  border-radius: 999px;
  margin-left: 0;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: right;
}

.quote {
  position: relative;
  margin: 0;
  font-size: clamp(1.08rem, 1.8vw, 1.4rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
  max-width: 46ch;
  padding-top: 18px;
}

.quote::before {
  content: "\201D";
  position: absolute;
  top: -28px;
  right: -6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(255, 215, 0, 0.18);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 14px;
}

.testimonial-nav-btn {
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.22);
  color: var(--primary-color);
  font-size: 1.35rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.testimonial-nav-btn:hover {
  background: var(--primary-color);
  color: #000;
  border-color: var(--primary-color);
  transform: translateY(-1px);
}

.indicators {
  display: flex;
  align-items: center;
  gap: 10px;
}

.indicator {
  appearance: none;
    border: 0;
    padding: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator:focus-visible,
.testimonial-nav-btn:focus-visible {
  outline: 2px solid rgba(255, 215, 0, 0.72);
  outline-offset: 3px;
}
.indicator.active {
  width: 30px;
  background: linear-gradient(90deg, #ffd700, #f4be0a);
  transform: none;
}

@media (max-width: 900px) {
  .testimonial-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-card::after {
    inset: 0 0 auto 0;
    width: auto;
    height: 8px;
  }

  .testimonial-profile {
    align-items: center;
  }

  .testimonial-meta {
    justify-items: center;
  }

  .testimonial-location-row {
    justify-content: center;
  }

  .testimonial-content {
    text-align: center;
  }

  .quote {
    max-width: none;
  }

  .quote::before {
    right: 50%;
    transform: translateX(50%);
    top: -34px;
  }
}

@media (max-width: 640px) {
  .testimonials {
    padding: 60px 16px 44px;
  }

  section.testimonials > h2 {
    margin-bottom: 28px;
    font-size: 1.75rem;
  }

  .testimonial-card {
    padding: 24px 18px 22px;
    border-radius: 22px;
  }

  .testimonial-image {
    width: 108px;
    height: 108px;
    border-radius: 24px;
    padding: 10px;
  }

  .testimonial-image img {
    border-radius: 18px;
  }

  .quote {
    font-size: 1rem;
    line-height: 1.75;
    padding-top: 12px;
  }

  .testimonial-nav-btn {
    width: 44px;
    height: 44px;
  }
}

    /* Disclaimer Modal Styles */
    .disclaimer-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 20000;
      padding: 20px;
      box-sizing: border-box;
    }

    .disclaimer-content {
      background: #0f1a3d;
      border: 1px solid var(--primary-color);
      border-radius: 10px;
      padding: 30px;
      max-width: 600px;
      max-height: 80vh;
      overflow-y: auto;
      color: white;
      position: relative;
      z-index: 1;
    }

    .disclaimer-content h3 {
      color: var(--primary-color);
      margin-top: 0;
      font-size: 1.5rem;
    }

    .disclaimer-text {
      margin-bottom: 25px;
      line-height: 1.6;
    }

    .disclaimer-btn {
      background: var(--primary-color);
      color: #000;
      border: none;
      padding: 12px 25px;
      font-size: 1rem;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: block;
      margin: 0 auto;
      width: 80%;
      max-width: 200px;
      position: relative;
      z-index: 1;
    }

    .disclaimer-btn:hover {
      background: #e6c200;
      transform: translateY(-2px);
    }

@media (max-width: 600px) {
      .disclaimer-content {
        padding: 20px;
      }

      .disclaimer-btn {
        width: 100%;
      }
    }

    /* 🔹 Mini Services Section */
.mini-services {
  padding: 60px 20px;
  background: #0c101a;
  color: white;
  text-align: center;
}

.mini-services h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: 2rem;
  margin-top: -40px; /* Moves the title UP */
}

.mini-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.mini-service-card {
  background: #1a1f2e;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
}

.mini-service-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.mini-service-card h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.mini-service-card h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.0rem;
}

.mini-service-card p {
  font-size: 0.95rem;
  color: #ccc;
}

.mini-services .btn {
  background: var(--primary-color);
  color: #000;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.mini-services .btn:hover {
  background: #ffd700cc;
}

   /* Terms of Service */
    .form-group.terms {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 10px;
      margin-top: 30px;
    }

    .form-group.terms label {
      margin: 0;
      color: var(--primary-color);
      font-size: 0.95em;
    }

    .form-group.terms input[type="checkbox"] {
      width: auto;
      transform: scale(1.2);
      cursor: pointer;
    }

    .form-group.terms a {
      color: var(--primary-color);
      text-decoration: underline;
    }

    .form-group.terms a:visited {
      color: var(--primary-color);
    }

    .form-group.terms a:hover {
      color: var(--secondary-color);
    }

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background-color: #1a1a1a;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 60%;
  color: #fff;
}

 .close {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 1.8em;
      cursor: pointer;
      color: var(--primary-color);
    }

    #accept-terms {
      background: var(--secondary-color);
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 20px;
    }

    /* capctha style */

.whatsapp-icon {
  width: 35px;
  height: 35px;
  margin-right: 8px;
  vertical-align: middle;
}

/* css for our partners */

/* Partners section */
.our-partners {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 215, 0, 0.14), transparent 32%),
    linear-gradient(225deg, #47350f, #0c101a 58%, #101f4d);
  color: white;
  text-align: center;
  padding: 84px 20px 72px;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.our-partners::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 215, 0, 0.08);
  border-radius: 28px;
  pointer-events: none;
}

.our-partners h2 {
  position: relative;
  color: var(--primary-color);
  margin-bottom: 34px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
}

.partners-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.partner-card,
.partner-card-link {
  text-decoration: none;
  color: inherit;
}

.partner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  min-height: 300px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(200deg, rgba(24, 28, 40, 0.95), rgba(42, 32, 12, 0.94));
  border: 1px solid rgba(255, 215, 0, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  opacity: 0;
  transform: translateY(24px);
  text-align: right;
}

.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 38%);
  pointer-events: none;
}

.partner-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.partner-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.36);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.34);
}

.partner-card__logo {
  width: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.partner-card img {
  width: min(100%, 170px);
  height: 120px;
  object-fit: contain;
  margin-bottom: 0;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.24));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.partner-card:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 14px 28px rgba(255, 215, 0, 0.18));
}

.partner-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.partner-card__status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.12);
  color: #f3d367;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-card h3 {
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.35;
  margin: 0;
}

@media (max-width: 900px) {
  .our-partners {
    padding: 64px 16px 56px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .partner-card {
    min-height: 270px;
    padding: 18px;
  }

  .partner-card__logo {
    min-height: 154px;
    padding: 18px;
  }

  .partner-card img {
    width: min(100%, 140px);
    height: 96px;
  }
}

@media (max-width: 640px) {
  .our-partners::before {
    inset: 10px;
    border-radius: 20px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .partner-card {
    min-height: 0;
  }
}

/* Hide reCAPTCHA badge and any visible elements */
.grecaptcha-badge {
  visibility: hidden !important;
}

/* Hide any potential reCAPTCHA iframes */
iframe[src*="recaptcha"] {
  display: none !important;
}

/* drop down language menue css */ 
.language-menu {
  position: relative;
}

.lang-dropdown {
  position: absolute;
  top: 40px;
  right: 0;
  background: #4f6ee6;
  border: 1px solid #4f6ee6;
  border-radius: 6px;
  list-style: none;
  padding: 10px 0;
  display: none;
  min-width: 100px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.lang-dropdown li a {
  display: block;
  padding: 8px 15px;
  text-decoration: none;
  color: black;
}

.lang-dropdown li a:hover {
  background: #4f6ee6;
}
nav ul, nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}
