/* @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap'); */


@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/outfit-v15-latin-100.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/outfit-v15-latin-200.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/outfit-v15-latin-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/outfit-v15-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/outfit-v15-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/outfit-v15-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/outfit-v15-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/outfit-v15-latin-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/outfit-v15-latin-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: #F6F4FF;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}



.btn-gradient {
  background: #3827C7;
}

@media (max-width: 1023px) {
  .cards-deck {
    height: auto !important;
  }

  .card-item {
    position: relative !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.testimonial-card {
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.testimonial-card.active-card {
  background: #3827c7 !important;
  color: #fff !important;
  border-color: transparent !important;
}

.testimonial-card.active-card p,
.testimonial-card.active-card span,
.testimonial-card.active-card .text-gray-600,
.testimonial-card.active-card .text-gray-400,
.testimonial-card.active-card .text-gray-800 {
  color: #fff !important;
}

.testimonial-card.active-card .border-b {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@keyframes swipe {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-10px);
  }
}

.animate-swipe {
  animation: swipe 3.5s ease-in-out infinite;
}

.brand-track {
  animation: brand-marquee 25s linear infinite;
}

@keyframes brand-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


.custom-scrollbar::-webkit-scrollbar {
  width: 2px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(56, 39, 199, 0.7);
  border-radius: 999px;
}

.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #3827C7 transparent;
}

/* ==========================================================================
   ACCESSIBILITY & KEYBOARD FOCUS STYLES
   ========================================================================== */

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: #3827C7;
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-weight: 600;
  transition: top 0.2s ease;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.skip-link:focus {
  top: 0;
  outline: 3px solid #EDA1F5;
  outline-offset: 2px;
}

/* Keyboard Focus Ring */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid #3827C7;
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: none;
}

/* Ensure checkbox and other interactive labels meet 44px touch target guidelines */
label.cursor-pointer {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.word-wrapper {
  display: inline-block;
  white-space: nowrap;
  margin-right: 0.25em;
}

.scroll-char {
  display: inline-block;
  letter-spacing: 0.02em;
}

.thankyou-wrapper {
  max-width: 80rem; /* max-w-5xl equivalent would be 64rem, but your design is wider */
  margin-inline: auto;
  padding-inline: 1rem;
  padding-bottom: 2.5rem;
  padding-top: 160px;
  position: relative;
  z-index: 20;
}

.thankyou-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding-inline: 3rem;
  padding-block: 100px;

  min-height: 550px;

  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);

  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.thankyou-icon {
  width: 210px;
  height: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.thankyou-title {
  color: #ffffff;
  font-size: 70px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1rem;
}

.thankyou-description {
  max-width: 800px;

  color: rgba(255, 255, 255, 0.8);

  font-size: 22px;
  line-height: 1.8;

  margin-bottom: 2rem;
}

.thankyou-footer {
  color: rgba(255, 255, 255, 0.6);

  font-size: 20px;
  line-height: 1.6;
}

.thankyou-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.3s ease;
}

.thankyou-link:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .thankyou-wrapper {
    padding-top: 120px;
  }

  .thankyou-card {
    padding-inline: 1.5rem;
    padding-block: 60px;
    min-height: auto;
  }

  .thankyou-icon {
    width: 140px;
  }

  .thankyou-title {
    font-size: 42px;
  }

  .thankyou-description {
    font-size: 18px;
  }

  .thankyou-footer {
    font-size: 16px;
  }
}

.inner-nav p{
  max-width: 260px;
}
/* ===== COUNTRY DROPDOWN FIX ===== */
/* position:fixed breaks out of every overflow:hidden ancestor */
.custom-country-menu {
  position: fixed !important;
  width: 300px;
  max-height: 260px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #f0eeff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(56,39,199,0.10), 0 2px 8px rgba(0,0,0,0.06);
  z-index: 9999;
  /* hidden by default — JS adds .is-open */
  display: none;
  /* smooth open */
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.custom-country-menu.is-open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* scrollbar */
.custom-country-menu::-webkit-scrollbar { width: 5px; }
.custom-country-menu::-webkit-scrollbar-track { background: #f4f3ff; border-radius: 10px; }
.custom-country-menu::-webkit-scrollbar-thumb { background: #a78bfa; border-radius: 10px; }
.custom-country-menu::-webkit-scrollbar-thumb:hover { background: #7c3aed; }

/* search input sticky at top */
.country-search-wrap {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
  padding: 8px 10px;
  border-bottom: 1px solid #f0eeff;
}
.country-search-input {
  width: 100%;
  padding: 7px 12px;
  font-size: 13px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  outline: none;
  color: #0D0C22;
  box-sizing: border-box;
  background: #f9f8ff;
}
.country-search-input::placeholder { color: #9ca3af; }

/* each option */
.country-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  cursor: pointer;
  transition: background 0.12s;
}
.country-option:hover { background: #f4f3ff; }
.country-option .opt-iso  { font-size: 13px; font-weight: 600; color: #0D0C22; width: 28px; flex-shrink: 0; }
.country-option .opt-dial { font-size: 13px; font-weight: 500; color: #6b7280; width: 42px; flex-shrink: 0; }
.country-option .opt-name { font-size: 13px; font-weight: 500; color: #374151; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.country-option.hidden-option { display: none !important; }

/* caret rotation */
.dropdown-caret { transition: transform 0.18s ease; }
.dropdown-caret.open { transform: rotate(180deg); }
