*,
*::before,
*::after {
  box-sizing: border-box;
}

/*general pages and header style*/
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
body {
  font-family: Gotham, Arial, sans-serif;
  font-size: 16px;
  padding-top: 90px;
  color: #333333;
  background-color: white;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}

.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: #E9EEF5;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

/* Hover effect on full header */
.site-header:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  opacity: 0.97;  /* slightly transparent for depth */
}


.header-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  transition: transform 0.3s ease;
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: 1.5rem;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.25s ease;
}

.nav-links a:hover {
  color: #111;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0%; height: 2px;
  background: #111;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.header-buttons {
  margin-left: auto;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-buttons .username {
  font-weight: bold;
  margin-right: 1rem;
  color: #333;
}

.btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.login-btn {
  background: transparent;
  border: 1px solid #666;
  color: #333;
}

.signup-btn {
  background: #0056ff;
  color: white;
  border: 1px solid transparent;
}

/* Hover Lift Effect */
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  opacity: 0.95;
}



/*recurent style for pages*/
.main-content {
  width: 100%;
}

p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

.section {
  padding: 5rem 0;
  width: 100%;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50%;
  margin-right: -50%;
}

.section-color {
  background: #E9EEF5;
}

.section-color2 {
  background: #4c67ff;
}

.container {
  width: 1450px;
  max-width: 90vw;
  margin: auto;
}

.seperator {
  width: 75%;
  height: 2px;
  background-color: #f2f2f2; /* light gray */
  margin: 20px auto; /* centers it horizontally */
  border-radius: 1px; /* optional for smooth edges */
}



/*home page style*/
.home-section1 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2.5rem;
}

.home-section1-1 {
  flex: 1 1 0;
  min-width: 0;
}

.home-section1-1 .tittle {
  font-size: 3rem;
  padding: 2rem 0;
  color: #00346B;
}

.home-section1-1 .sub-text {
  padding-bottom: 1.5rem;
}

.home-section1-1 .sub-btn {
  display: inline-block;
  padding: 1.2rem 2rem;
  background: #0056ff;
  color: white;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 0;
  font-size: 1.1rem;
}

.home-section1-1 .sub-btn-demo {
  margin-left: 2rem;
}

.home-section1-1 .sub-btn:hover {
  background: #003bb5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transform: translateY(-2px) scale(1.04);
  opacity: 0.97;
}

.home-section1-2 {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-section1-2 img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 25px;
}

.home-section2 {
  text-align: center;
}

.home-section2-1 h1 {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 4rem;
  font-size: 2.4rem;
  color: #00346B;
}

.home-section2-2 {
  padding-bottom: 4rem;
}

.home-section2-2 img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  border-radius: 25px;
}

.home-section2-3 {
  display: flex;
  flex-direction: row;
  gap: 5rem;
  justify-content: center;
  align-items: stretch;
}

.home-section2-3 .cards {
  text-align: left;
  max-width: 340px;
}

.home-section2-3 .cards h2 {
  font-size: 1.7rem;
  padding-bottom: 2rem;
  color: #00346B;
}

.home-section2-3 .cards p {
  font-size: 1.2rem;
  color: #666;
}

.home-section3 {
  text-align: center;
}

.home-section3-1 h1 {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 2rem;
  font-size: 3rem;
  color: #00346B;
}

.home-section3-2 p {
  max-width: 1050px;
  margin: 0 auto;
  padding-bottom: 2rem;
  font-size: 1.2rem;
}

.home-section3-3 {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.home-section3-3 .cards {
  text-align: left;
  width: auto !important;
  height: 100%;
  background: #E9EEF5;
  border-radius: 24px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 1rem;
}

.home-section3-3 .cards .card-header {
  height: 100px;
}

.home-section3-3 .cards .card-header h1 {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: black;
}

.home-section3-3 .cards .card-header .green_tick {
  color: green;
  font-size: 3rem;
  line-height: 1;
}

.home-section3-3 .cards .card-body {
  background-color: #000000ce;
  border-radius: 24px;
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.home-section3-3 .cards .card-body p {
  color: #E9EEF5;
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.home-section4 {
  text-align: center;
  padding-bottom: 5rem;
}

.home-section4-1 h1 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 0;
  font-size: 3rem;
  color: #00346B;
}

.home-section4-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.home-section4-2 .cards {
  justify-items: stretch;
  align-items: stretch;
  margin: 0 auto;
  max-width: 350px;
}

.home-section4-2 .cards h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00346B;
}

.home-section4-2 .cards p {
  font-size: 1.2rem;
}

.home-section5 {
  margin-top: 3rem;
}

.home-section5-1 {
  text-align: center;
}

.home-section5-1 h1 {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 4rem;
  font-size: 3rem;
  color: #00346B;
}

.home-section-nav {
  width: 100%;
  margin-bottom: 2.5rem;
  overflow: visible;
}
.step-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.step-nav .step {
  background: #f3f3f3;
  color: #333;
  border: none;
  border-radius: 20px;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.step-nav .step.active,
.step-nav .step:hover {
  background: #0056ff;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,86,255,0.13);
}
.step-presentation {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
.step-content {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  max-width: 1200px;
  width: 100%;
}
.step-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.step-text h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: #0056ff;
}
.step-text p {
  font-size: 1.15rem;
  color: #333;
  line-height: 1.7;
}
.step-image {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-image img {
  max-width: 550px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,86,255,0.09);
}


/*contact page style*/
.contact_page .contact-nav {
  justify-content: center;
  display: flex;
  gap: 10rem;
  padding-bottom: 5rem;
}

.contact_page .contact-nav button {
  padding: 1rem 2rem;
  cursor: pointer;
  border: 1px solid #ccc;
  background: #0056ff;
  border-radius: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.contact_page .contact-nav button:hover {
  background: #003bb5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px) scale(1.02);
}

.contact_page .contact-form-section {
  display: none; /* hidden by default */
  padding: 2rem;
  background: #f7f7f7;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact_page .contact-form-section.active {
  display: flex; /* only the active one shows */
}

.contact_page .contact-form-section h1 {
  font-size: 2.5rem;
  color: #00346B;
  margin-bottom: 1.5rem;
}
/* Contact page grid form layout */
.contact_page .contact-grid-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact_page .contact-grid-form .form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact_page .contact-grid-form .form-row-single {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact_page .contact-grid-form label {
  display: flex;
  flex-direction: column;
}
.contact_page .contact-grid-form input[type="text"],
.contact_page .contact-grid-form input[type="email"],
.contact_page .contact-grid-form input[type="tel"],
.contact_page .contact-grid-form textarea,
.contact_page .contact-grid-form select {
  padding: 0.7rem 1rem;
  border-radius: 16px;
  border: 1px solid #ccc;
  font-size: 1.1rem;
  background: #e9eef5;
  margin-top: 0.2rem;
  box-shadow: 0 2px 8px rgba(0,86,255,0.07);
  transition: border 0.2s;
}
.contact_page .contact-grid-form input:focus,
.contact_page .contact-grid-form textarea:focus {
  border-color: #0056ff;
  outline: none;
}
.contact_page .contact-grid-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact_page .contact-submit-btn {
  width: 100%;
  padding: 1rem 0;
  background: #0056ff;
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(0,86,255,0.13);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  margin-top: 0.5rem;
}
.contact_page .contact-submit-btn:hover {
  background: #003bb5;
  box-shadow: 0 6px 18px rgba(0,86,255,0.18);
  transform: translateY(-2px) scale(1.03);
}

/* === Contact layout overrides (navigation left 30%, content right 70%) with sticky nav === */
.contact_page .section.section-color > .container {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

/* Navigation (left, 30% of container, sticky and vertically centered) */
.contact_page .section.section-color > .container .contact-nav {
  order: 1;
  flex: 0 0 30%;
  max-width: 30%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  height: fit-content;
}

/* Buttons centered inside nav */
.contact_page .section.section-color > .container .contact-nav button {
  margin: 0 auto;
}

/* Content (right, 70% of container) */
.contact_page .section.section-color > .container .contact-form-section {
  order: 2;
  flex: 0 0 70%;
  max-width: 70%;
  box-sizing: border-box;
  display: none;
}

/* Only show active content section */
.contact_page .section.section-color > .container .contact-form-section.active {
  display: block;
}

/* Responsive: stack on small screens */
@media (max-width: 930px) {
  .contact_page .section.section-color > .container {
    display: block;
  }
  .contact_page .section.section-color > .container .contact-nav,
  .contact_page .section.section-color > .container .contact-form-section {
    order: initial;
    flex: 0 0 100%;
    max-width: 100%;
    position: static;
    transform: none;
    align-items: flex-start;
  }
}
/* === End contact layout overrides === */


/* === Form presentation enhancements === */
.contact_page .contact-form-section h1 {
  text-align: center;
}

/* Field wrapper */
.contact_page .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* Labels and required indicator */
.contact_page .form-label {
  font-weight: 600;
  color: #111827;
}
.contact_page .form-label.required::before {
  content: "*";
  color: #e11d48;
  margin-right: 0.25rem;
}
/* === End form enhancements === */

/* === Label/required indicator fix === */
.contact_page .form-label { 
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  color: #111827;
}
.contact_page .form-label.required::before {
  content: "*";
  color: #e11d48;
}
/* If any legacy <span class="req">* exists, hide it */
.contact_page .form-label .req { display: none; }
/* Optional: keep field wrapper vertical layout without affecting label inline layout */
.contact_page .form-field { display: flex; flex-direction: column; gap: 0.25rem; }
/* === End label/required fix === */


/* Center form section headings */
.contact_page .contact-form-section h1 { text-align: center; }

/* === Consolidated form label & required indicator rules === */
.contact_page .contact-form-section h1 {
  text-align: center; /* only headings centered */
}
/* ensure any generic label rules don't center content */
.contact_page .contact-grid-form,
.contact_page .form-row-grid,
.contact_page .form-row-single {
  text-align: left;
}
/* labels: inline row with star + text on the same line */
.contact_page .form-label,
.contact_page .contact-grid-form label {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
  text-align: left;
  white-space: nowrap; /* make sure star + text never break onto different lines */
}
.contact_page .form-label {
  font-weight: 600;
  color: #111827;
}
.contact_page .form-label.required::before {
  content: "*";
  color: #e11d48;
}
/* Hide any legacy inline star spans */
.contact_page .form-label .req { display: none; }
/* === End consolidated rules === */

@media (max-width: 668px) {
  .contact_page .contact-grid-form .form-row-grid {
    display: grid !important;          /* in case something flips it to flex */
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  /* Make sure columns don’t overflow */
  .contact_page .contact-grid-form .form-field {
    min-width: 0;
    width: 100%;
  }

  .contact_page .contact-grid-form input,
  .contact_page .contact-grid-form select,
  .contact_page .contact-grid-form textarea {
    width: 100%;
    box-sizing: border-box;
  }

  /* Optional: make the Send button full-width */
  .contact_page .contact-grid-form .contact-submit-btn {
    width: 100%;
  }
}


/*resource page style*/
.resource_page .resources-nav {
  justify-content: center;
  display: flex;
  gap: 10rem;
  padding-bottom: 5rem;
}

.resource_page .resources-nav button {
  padding: 1rem 2rem;
  cursor: pointer;
  border: 1px solid #ccc;
  background: #0056ff;
  border-radius: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.resource_page .resources-nav button:hover {
  background: #003bb5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px) scale(1.02);
}

.resource_page .resources-section1 {
/* background-color: #E9EEF5; */
  background-color: white;
  border-radius: 24px;
  padding: 0.5rem;
  color: #00346B;
}

.resource_page .resources-section1-1 {
  text-align: center;
  font-size: 1.5rem;
  padding-bottom: 2rem;
}

.resource_page .resources-section1 .resource {
  padding: 1rem;
}

.resource_page .resources-section1 .resource h3 {
  font-size: 1.5rem;
  padding-bottom: 1rem;
}

.resource_page .resources-section1 .resource a {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  background: #0056ff;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,86,255,0.13);
  cursor: pointer;
}
.resource_page .resources-section1 .resource a:hover {
  background: #003bb5;
  box-shadow: 0 6px 18px rgba(0,86,255,0.18);
  transform: translateY(-2px) scale(1.04);
  color: #fff;
}
/* --- Scoped styles for the Tips guide (won't clash with site CSS) --- */
.resource_page .tips-guide { background: #f7f8fb; padding: 3rem 1rem; }
.resource_page .tips-guide .tips-wrap { max-width: 1100px; margin: 0 auto; color: #1f2937; }
.resource_page .tips-guide h2 { font-size: clamp(1.8rem, 2.5vw, 2.25rem); margin: 0 0 .5rem; font-weight: 800; }
.resource_page .tips-guide p.lead { color: #4b5563; margin: 0 0 2rem; font-size: 1.125rem; }

.resource_page .tips-card, .resource_page .tips-benefits, .resource_page .tips-purpose {
  background: #fff; border-radius: 16px; box-shadow: 0 6px 24px rgba(0,0,0,.06);
}
.resource_page .tips-purpose { padding: 1.5rem; margin: 0 0 1.5rem; }
.resource_page .tips-purpose h3 { color: #2563eb; margin: 0 0 .5rem; font-size: 1.375rem; }

.resource_page .tips-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .resource_page .tips-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.resource_page .tips-card { padding: 1.25rem; }
.resource_page .tips-card h4 { margin: 0 0 .5rem; color: #3b82f6; font-size: 1.125rem; }
.resource_page .tips-card p { margin: 0 0 .5rem; color: #374151; }
.resource_page .tips-card em, .tips-card .eg { color: #6b7280; font-style: italic; }

.resource_page .tips-card.span-2 { grid-column: 1 / -1; }
.resource_page .tips-benefits { padding: 1.5rem; margin-top: 1.5rem; background: #eef5ff; }
.resource_page .tips-benefits h3 { color: #1d4ed8; margin: 0 0 .75rem; font-size: 1.375rem; }
.resource_page .tips-benefits ul { display: grid; gap: .5rem; padding-left: 1rem; margin: 0; }
@media (min-width: 768px) { .tips-benefits ul { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.resource_page .tips-benefits li { color: #1f2937; }

/* Optional: tidy the resources cards a touch to match tips */
.resource_page .resources-section1-2 { display: grid; gap: 1rem; }
@media (min-width: 768px) { .resource_page .resources-section1-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.resource_page .resources-section1-2 .resource {
  background: #E9EEF5; border-radius: 14px; padding: 1rem 1.25rem;
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
}
.resource_page .resources-section1-2 .resource h3 { margin: 0 0 .25rem; }
.resource_page .resources-section1-2 .resource a { color: white; text-decoration: none; font-weight: 600; }
.resource_page .resources-section1-2 .resource a:hover { text-decoration: underline; }

/* Ensure only one resource panel is visible, mirroring contact page behavior */
.resource_page .contact-form-section{ display:none; background:#fff; border-radius:16px; padding:2.5rem; box-shadow: 0 6px 24px rgba(0,0,0,.06); }
.resource_page .contact-form-section.active{ display:block; }


.resource_page .section.section-color > .container {
  display: flex;
  align-items: flex-start;
}

/* Navigation (left, 30% of container, sticky and centered) */
.resource_page .section.section-color > .container .resources-nav {
  order: 1;
  flex: 0 0 30%;
  max-width: 30%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  height: fit-content;
}

/* Buttons align centrally inside nav */
.resource_page .section.section-color > .container .resources-nav button {
  margin: 0 auto;
}

/* Content (right, 70% of container) */
.resource_page .section.section-color > .container .contact-form-section {
  order: 2;
  flex: 0 0 70%;
  max-width: 70%;
  box-sizing: border-box;
  display: none;
}

/* Only show active content section */
.resource_page .section.section-color > .container .contact-form-section.active {
  display: block;
}

/* Responsive: stack on small screens */
@media (max-width: 1200px) {
  .resource_page .section.section-color > .container {
    display: block;
  }
  .resource_page .section.section-color > .container .resources-nav,
  .resource_page .section.section-color > .container .contact-form-section {
    order: initial;
    flex: 0 0 100%;
    max-width: 100%;
    position: static;
    transform: none;
    align-items: flex-start;
  }
}



/*about page style*/
.about-section1-1 {
  padding: 2rem;
  text-align: center;
}

.about-section1-1 h1 {
  font-size: 2.5rem;
  color: #00346B;
  margin-bottom: 1rem;
}

.about-section1-2 {
  width: 75%;
  margin: auto;
  font-size: 1.2rem;
}



/*old pricing css do not touch
.pricing-section1 {
  background-color: white;
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  color: #00346B;
}

.pricing-section1 h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pricing-section1 p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.pricing-section1 .monthly-yearly {
  width: 250px;
  margin: auto;
}

.toggle-container {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 1.5rem 0 0.5rem 0;
}
.toggle-selector {
  position: relative;
  display: flex;
  background: #e9eef5;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0,86,255,0.07);
  padding: 4px;
  width: 220px;
  justify-content: space-between;
}
.toggle-btn {
  flex: 1;
  background: none;
  border: none;
  color: #00346B;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 20px;
  padding: 0.7rem 0;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}
.toggle-btn.active {
  color: #fff;
}
.toggle-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 50%;
  height: calc(100% - 8px);
  background: #0056ff;
  border-radius: 20px;
  transition: left 0.3s cubic-bezier(.4,2,.3,1);
  z-index: 1;
}
.toggle-btn:not(.active):hover {
  color: #0056ff;
}
*/

/*pricing page style*/
.pricing-scope {
  --accent: #00346B;           /* Main brand blue for titles/buttons */
  --accent-light: #195b9e;     /* Lighter shade for gradients */
  --background: #ffffff;       /* White page background */
  --surface: #E9EEF5;          /* Soft gray for contrast cards */
  --text: #1B1F23;             /* Primary text */
  --muted: #5C6B80;            /* Secondary text */
  --radius: 14px;
  --shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* ===== Hero ===== */
.pricing-scope .hero {
  background: linear-gradient(180deg, #f9fbfd 0%, #ffffff 100%);
  padding: 32px 0 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-scope .hero h1 {
  margin: 10px 0 8px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.2px;
}

.pricing-scope .helper-text {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* ===== Two-Column Layout ===== */
.pricing-scope .content-two-col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
  margin-top: 24px;
}

/* ===== Cards ===== */
.pricing-scope .card {
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.1s ease, box-shadow 0.2s ease;
}

.pricing-scope .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.pricing-scope .section {
  padding: 24px;
}

.pricing-scope .section h2 {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: clamp(18px, 2vw, 22px);
}

/* ===== Inputs & Controls ===== */
.pricing-scope input[type="number"] {
  width: 140px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  color: var(--text);
  transition: border-color 0.2s ease;
}
.pricing-scope input[type="number"]:focus {
  border-color: var(--accent);
}

.pricing-scope .checks {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.pricing-scope .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #ffffff;                     /* white background inside light theme */
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);  /* subtle shadow for depth */
  transition: box-shadow 0.2s ease, transform 0.1s ease;
}

.pricing-scope .check:hover {
  box-shadow: 0 5px 15px rgba(0, 52, 107, 0.15);  /* slight accent tint on hover */
  transform: translateY(-2px);
}

.pricing-scope .check input[type="checkbox"] {
  margin-top: 2px;
  transform: scale(1.1);
  accent-color: #00346B;                   /* brand accent for checkbox tick */
}

.pricing-scope .check label {
  color: #00346B;
  font-weight: 600;
  font-size: 14px;
}

.pricing-scope .check .help {
  color: #5C6B80;
  font-size: 12px;
  margin-top: 2px;
}

.pricing-scope input[type="range"] {
  width: 100%;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
}
.pricing-scope input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

/* ===== Buttons ===== */
.pricing-scope .btn {
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  color: #ffffff;
  font-weight: 600;
  border: none;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.05s ease;
}
.pricing-scope .btn:hover {
  box-shadow: 0 4px 14px rgba(0, 52, 107, 0.25);
}
.pricing-scope .btn:active {
  transform: translateY(1px);
}
.pricing-scope .btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

/* ===== Stats & Results ===== */
.pricing-scope .results {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.pricing-scope .stat {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 14px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.02);
}
.pricing-scope .stat .help {
  display: block;
  margin-top: 6px;
  line-height: 1.4;
}
.pricing-scope .kpi {
  color: var(--accent);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
}

/* ===== Tier Table ===== */
.pricing-scope .tier-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 13px;
}
.pricing-scope .tier-table th,
.pricing-scope .tier-table td {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.pricing-scope .tier-table tr.highlight td {
  background: rgba(0, 52, 107, 0.08);
}

/* ===== Notice ===== */
.pricing-scope .notice {
  font-size: 12px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 12px;
  border-radius: 10px;
}

.pricing-scope .row {
  display: flex;
  align-items: center;
  padding-top: 10px;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

/* For rows that explicitly spread elements apart */
.pricing-scope .row[style*="justify-content:space-between"] {
  justify-content: space-between !important;
}

.pricing-scope .sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.pricing-scope .card-option {
  display: block;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 12px;
  transition: box-shadow .15s, border-color .15s;
}

.pricing-scope .card-option:hover { box-shadow: 0 2px 10px rgba(0,0,0,.06); }

/* Hidden by default */
.pricing-scope .badge {
  display: none;
  position: absolute;
  top: 8px; right: 8px;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 999px;
  background: #eef2ff;      /* light indigo */
  color: #3730a3;           /* indigo-800 */
  font-weight: 600;
}

/* Show badge & highlight card when selected */
.pricing-scope .card-option input:checked + .stat {
  border-color: #4f46e5;
  box-shadow: 0 0 0 2px rgba(79,70,229,.15) inset;
}
.pricing-scope .card-option input:checked + .stat .badge {
  display: inline-flex;
}

.pricing-scope .buy-form { padding-top: 22px; }   /* “padding at the top” of the parent */
.pricing-scope .buy-form .btn {
  display: block;                 /* full-width capable */
  width: 100%;
  height: 48px;
  font-size: 16px;
  box-sizing: border-box;         /* include padding in width */
  text-align: center;
}

/* hover/active you already have */
.pricing-scope .btn:hover { box-shadow: 0 4px 14px rgba(0, 52, 107, 0.25); }
.pricing-scope .btn:active { transform: translateY(1px); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .pricing-scope .content-two-col {
    grid-template-columns: 1fr;
  }
  .pricing-scope aside.sticky {
    position: static;
  }
}


/*old terms and privacy css do not touch
.terms-and-privacy-nav {
  justify-content: center;
  display: flex;
  gap: 10rem;
  padding-bottom: 5rem;
}

.terms-and-privacy-nav button {
  padding: 1rem 2rem;
  cursor: pointer;
  border: 1px solid #ccc;
  background: #0056ff;
  border-radius: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.terms-and-privacy-nav button:hover {
  background: #003bb5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px) scale(1.02);
}

.terms-and-privacy-section {
  display: none;
  padding: 2rem;
  background: #f7f7f7;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.terms-and-privacy-section.active {
  display: flex;
}

.terms-and-privacy-section h1 {
  font-size: 2.5rem;
  color: #00346B;
  margin-bottom: 1.5rem;
}
*/

/*Terms and conditions style*/
/* 1) Tabs/Nav */
.tap_page .terms-and-privacy-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0 2rem 0;
  flex-wrap: wrap; /* allow wrap on small screens */
}

.tap_page .terms-and-privacy-nav button {
  appearance: none;
  border: 1px solid #cfd6e4;
  background: #f5f7fb;
  color: #0f172a;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 140ms ease, box-shadow 140ms ease, color 140ms ease, border-color 140ms ease;
  outline: none;
}

.tap_page .terms-and-privacy-nav button:hover,
.tap_page .terms-and-privacy-nav button:focus-visible {
  background: #e9eef5;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.08);
}

/* If you also toggle .active on the clicked button, this will show a selected state */
.tap_page .terms-and-privacy-nav button.active {
  background: #0056ff;
  color: #ffffff;
  border-color: #0056ff;
}

/* 2) Section toggle (JS adds .active to the visible section) */
.tap_page .terms-and-privacy-section {
  display: none;
}
.tap_page .terms-and-privacy-section.active {
  display: block;
}
.tap_page .terms-and-privacy-section:first-of-type { display: block; }

/* 3) Typography & readable width */
.tap_page .terms-and-privacy-section h1 {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem);
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

.tap_page .terms-and-privacy-section h2 {
  font-size: clamp(1.2rem, 1rem + 0.6vw, 1.5rem);
  margin: 1.5rem 0 0.5rem 0;
}

.tap_page .terms-and-privacy-section h3 {
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
  margin: 1.2rem 0 0.4rem 0;
}

.tap_page .terms-and-privacy-section p,
.tap_page .terms-and-privacy-section li {
  font-size: clamp(0.98rem, 0.92rem + 0.3vw, 1.075rem);
  line-height: 1.65;
  color: #101828;
}

.tap_page .terms-and-privacy-section p + p {
  margin-top: 0.6rem;
}

/* Limit line length for comfort */
.tap_page .terms-and-privacy-section {
  --measure: 72ch;
}
.tap_page .terms-and-privacy-section > * {
  max-width: var(--measure);
}

/* Lists */
.tap_page .terms-and-privacy-section ul,
.tap_page .terms-and-privacy-section ol {
  padding-left: 1.25rem;
  margin: 0.4rem 0 1rem 0;
}
.tap_page .terms-and-privacy-section li + li { margin-top: 0.3rem; }

/* Links */
.tap_page .terms-and-privacy-section a {
  color: #0f4fff;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

/* 4) Spacing */
.tap_page .section.section-color {
  padding-top: 2.2rem;
  padding-bottom: 3rem;
}

/* 5) Tablet breakpoint (≤ 1024px) */
@media (max-width: 1024px) {
  .tap_page .terms-and-privacy-nav {
    gap: 0.75rem;
    margin-bottom: 1.6rem;
  }
  .tap_page .terms-and-privacy-nav button {
    font-size: 0.98rem;
    padding: 0.65rem 1rem;
  }
  .tap_page .section.section-color .container {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .tap_page .terms-and-privacy-section { --measure: 68ch; }
}

/* 6) Phone breakpoint (≤ 600px) */
@media (max-width: 600px) {
  .tap_page .terms-and-privacy-nav {
    justify-content: stretch;
  }
  /* Make the buttons span the width in two neat columns or single if tight */
  .tap_page .terms-and-privacy-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
  .tap_page .terms-and-privacy-nav button {
    width: 100%;
    text-align: center;
    padding: 0.65rem 0.75rem;
    font-size: 0.96rem;
  }
  /* If very tight, drop to one column */
  @media (max-width: 380px) {
    .tap_page .terms-and-privacy-nav { grid-template-columns: 1fr; }
  }

  .tap_page .terms-and-privacy-section h1 { margin-bottom: 0.8rem; }
  .tap_page .terms-and-privacy-section { --measure: 100%; } /* full width on small screens */
  .tap_page .section.section-color {
    padding-top: 1.4rem;
    padding-bottom: 2rem;
  }
}

/* 7) Optional: subtle divider below the nav */
.tap_page .terms-and-privacy-nav + .terms-and-privacy-section::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(to right, rgba(0,0,0,0.06), rgba(0,0,0,0));
  margin: 0.5rem 0 1.2rem 0;
}

/* 8) Print-friendly (optional but handy) */
@media print {
  .tap_page .terms-and-privacy-nav { display: none !important; }
  .tap_page .terms-and-privacy-section { display: block !important; }
  .tap_page .section.section-color .container { max-width: none; }
}


/*footer style*/
.footer {
  background: #111;
  color: #fff;
  padding: 1.2rem 0 0.7rem 0;
  width: 100%;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-links {
  margin-top: 0.5rem;
  font-size: 0.98rem;
}
.footer-links a {
  color: #fff;
  text-decoration: underline;
  margin: 0 0.5rem;
}
.footer-links a:hover {
  color: #38b2ac;
}

/* =========================================================
   Responsive enhancements (added by ChatGPT, Oct 2025)
   - Mobile-first fixes for header & navigation (hamburger)
   - Flexible media (images/videos)
   - Stack multi-column layouts on small screens
   - Typography scaling
   ========================================================= */

/* 1) Base fluid media & typography */
img, video {
  max-width: 100%;
  height: auto;
}
.tittle, .home-section3-1 h1, .home-section4-1 h1, .home-section5-1 h1 {
  /* Keep large on desktop but scale down on mobile */
  font-size: clamp(1.6rem, 3.5vw + 0.5rem, 3rem);
}
h1 { font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem); }
h2 { font-size: clamp(1.25rem, 2.3vw + 0.4rem, 2rem); }
p, li { font-size: clamp(0.98rem, 1.2vw + 0.4rem, 1.15rem); }

/* === Hamburger → Close "X" animation === */
.menu-toggle {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  width: 40px; height: 40px;
  display: none; align-items: center; justify-content: center;
  position: relative; cursor: pointer;
  padding: 0; margin: 0; line-height: 0;
}

/* Tweak outline look */
.menu-toggle:focus-visible { outline: 2px solid #333; outline-offset: 3px; }

/* Use CSS vars so spacing is easy to tweak */
.menu-toggle { --bar-w: 24px; --bar-h: 2.5px; --bar-gap: 7px; }

/* Bars: perfectly centered baseline */
.menu-toggle .bar {
  position: absolute;
  top: 50%; left: 50%;
  width: var(--bar-w); height: var(--bar-h);
  background: #111; border-radius: 2px;
  transform-origin: 50% 50%;
  /* center each bar, then we’ll nudge Y per line */
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 160ms ease, background-color 160ms ease;
}

/* Place the three lines relative to center */
.menu-toggle .bar:nth-child(1) {
  transform: translate(-50%, calc(-50% - var(--bar-gap)));
}
.menu-toggle .bar:nth-child(2) {
  transform: translate(-50%, -50%);
}
.menu-toggle .bar:nth-child(3) {
  transform: translate(-50%, calc(-50% + var(--bar-gap)));
}

/* Morph to a centered "X" when open */
.site-header.is-open .menu-toggle .bar:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.site-header.is-open .menu-toggle .bar:nth-child(2) {
  opacity: 0;
}
.site-header.is-open .menu-toggle .bar:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Optional: color tweak when open */
.site-header.is-open .menu-toggle .bar {
  background: #111;                /* or your brand color while open */
}

/* Accessibility niceties */
.menu-toggle:focus-visible {
  outline: 2px solid #333;
  outline-offset: 3px;
}

@media (max-width: 1550px) {
  .home-section3-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1300px) {
  body { padding-top: 78px; }

  .header-container {
    justify-content: space-between;
  }

  /* Show hamburger */
  .menu-toggle { display: block; }

  /* Collapse nav by default */
  .nav-links {
    position: absolute;
    top: 100%;
    margin-left: 0;
    left: 0;
    right: 0;
    background: #D3DBE8;
    padding: 0.8rem 5vw 1.2rem 5vw;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: none;
    flex-direction: column;
    gap: 1rem;
    z-index: 998;
  }
  /* Hover underline isn’t great on stacked nav */
  .nav-links a::after { display: none; }

  /* Keep right-side buttons inside the dropdown to avoid crowding */
  .header-buttons {
    display: none;
    align-items: center;
    gap: 1rem;
  }

  /* When header has .is-open, reveal menus */
  .site-header.is-open .nav-links,
  .site-header.is-open .header-buttons {
    display: flex !important;
  }

  /* Make logo a bit smaller on mobile */
  .logo img { height: 48px; }

  .header-buttons .btn {
    flex: 1 1 48%;
    text-align: center;
    white-space: nowrap;
  }

  /* If a username is present, let it sit full-width above the buttons on mobile */
  .header-buttons .username {
    flex: 0 0 100%;
    margin-bottom: 0.25rem;
    text-align: left; /* or center if you prefer */
  }
  /* Mobile-only hover/focus styles for hamburger menu items */
  .nav-links a {
    padding: 0.75rem 1rem;          /* bigger touch target */
    border-radius: 10px;            /* soft corners for the highlight */
    outline: none;                  /* we'll handle focus visuals */
    transition: background 140ms ease, box-shadow 140ms ease;
    border-bottom: 1px solid #BDC9DB;
  }
  .nav-links a:last-child {
    border-bottom: none;
  }

  /* Only when hamburger is open: show hover & keyboard focus styles */
  .site-header.is-open .nav-links a:hover,
  .site-header.is-open .nav-links a:focus-visible {
    background: rgba(0, 0, 0, 0.06);                  /* subtle background */
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.25);  /* outline effect */
  }

  /* Pressed state (optional, feels nice) */
  .site-header.is-open .nav-links a:active {
    background: rgba(0, 0, 0, 0.10);
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.35);
  }

  /* Accessibility: if you prefer a traditional outline */
  .site-header.is-open .nav-links a:focus-visible {
    outline: 2px solid #333;
    outline-offset: 2px;
  }
}

/* 3) Layout stacking for home sections */
@media (max-width: 1100px) {
  .home-section2-3,
  .home-section3-3 { gap: 2rem; }
}

@media (max-width: 992px) {
  .home-section1 { flex-direction: column; }

  .home-section2-3 {
    flex-wrap: wrap;
    justify-content: center;
  }
  .home-section2-3 .cards {
    max-width: 520px;
    width: 100%;
  }

  .home-section4-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step-content {
    flex-direction: column;
  }
  .step-image img {
    max-width: 100%;
  }
}

/* 4) Tight phones */
@media (max-width: 600px) {
  body { padding-top: 59px; }

  .header-container {
    display: flex;               /* ensure we're in a flex row */
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
  }

  /* Important: allow the center area to shrink */
  .logo {
    flex: 1 1 auto;              /* logo can grow and shrink */
    min-width: 0;                /* lets it actually shrink in flex */
  }
  .logo a { display: block; max-width: 100%; }
  .logo img {
    display: block;
    max-width: 100%;             /* scale by width */
    height: auto;                /* preserve aspect ratio */
    max-height: 32px;            /* keep header height tidy */
  }

  /* Keep controls at natural width so the logo flexes between them */
  .menu-toggle { flex: 0 0 40px; }
  .header-buttons { flex: 0 0 auto; }

  .nav-links { gap: 0.6rem; }
  .header-buttons .btn { flex: 1 1 48%; } 

  .home-section1-1 .tittle { padding: 1.2rem 0; }
  .home-section1-1 .sub-btn { width: 100%; text-align: center; }
  .home-section1-1 .sub-btn-demo { margin-left: 0; margin-top: 0.8rem; }

  .home-section2-1 h1,
  .home-section3-1 h1,
  .home-section4-1 h1,
  .home-section5-1 h1 {
    padding-bottom: 1.2rem;
  }

  .step-presentation { padding: 0 0.4rem; }
  .step-content { padding: 1.2rem; }

  .home-section3-3 {
    grid-template-columns: 1fr;
  }
}

/* 5) Utility: hide-only/ show-only helpers if needed */
.only-desktop { display: block; }
.only-mobile { display: none; }
@media (max-width: 1024px) {
  .only-desktop { display: none !important; }
  .only-mobile { display: block !important; }
}

/* 6) Smooth overflow handling for wide images/videos inside cards */
.home-section3-3 .cards .card-body {
  overflow: hidden;
}


