:root {
  --black: black;
  --white: white;
  --primary: #30d9b7;
  --dark-menu: #a5a5a5;
  --light-purple: #6366f1;
  --dark-purple: #4f46e5;
  --darkest-purple: #3730a3;
  --green: #2f855a;
  --light-green: #38a169;
  --dark-green: #276749;
}

/*--------------------------------------------------------------
# HOME Page
--------------------------------------------------------------*/

section {
  padding-top: 70px;
  padding-bottom: 60px;
}

.section-heading {
  font-family: "League Spartan Variablefont Wght", sans-serif;
  font-size: 49px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
  text-align: center;
}
.section-text {
  font-family: "Questrial", sans-serif;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
}
@media (width < 576px) {
  .section-heading {
    font-family: "League Spartan Variablefont Wght", sans-serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
  }
  .section-text {
    font-family: "Questrial", sans-serif;
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
  }
}

/* navbar-start */
.section__navbar_ver2 {
  background-color: #fff;
  z-index: 9999;
  padding: 3px 40px;
  border-bottom: 1px solid rgb(212, 212, 212);
}
.section__navbar_ver2 .nav-right {
  display: flex;
  gap: 2rem;
}
.nav__logo-wrapper {
  width: 200px;
}
.img-full {
  width: 100%;
  height: 100%;
  display: block;
}
.desktop-navbar__links .nav__link-3 {
  color: #5e5e5e;
  padding: 0.25em 1em;
  text-decoration: none;
  /* font-family: 'Questrial', sans-serif; */
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  transition: color 0.2s;
}
.desktop-navbar__links .nav__link-3:hover {
  color: var(--dark-purple);
}
.p-small-3 {
  font-size: 17px;
  line-height: 1.55;
  font-weight: 600;
  display: block;
  /* font-family: 'Questrial', sans-serif; */
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
.button-secondary-small {
  background-color: var(--light-purple);
  color: #fff;
  text-transform: uppercase;
  border: 3px solid transparent;
  border-radius: 50px;
  padding: 6px 26px;
  /* font-family: 'League Spartan Variablefont Wght', sans-serif; */
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  text-decoration: none;
}
.button-secondary-small:hover {
  background-color: var(--dark-purple);
}
.mobile-nav {
  color: #000;
  font-size: 24px;
}
.offcanvas {
  background-color: #4d4d62;
}
.offcanvas-header {
  justify-content: end;
}
.offcanvas ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.offcanvas ul li .nav__link-3 {
  color: #fff;
  text-decoration: none;
  font-family: "Questrial", sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 10px;
  line-height: 40px;
}

.offcanvas-header .btn-close {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'><path d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/></svg>");
  opacity: 1;
}
@media (width < 576px) {
  .section__navbar_ver2 {
    background-color: #fff;
    z-index: 9999;
    padding: 3px 20px;
  }
  .mobile-nav {
    color: #000;
    font-size: 24px;
  }
}
/* navbar-end */

/* login-button-dropdown */

.login-dropdown {
  position: relative;
  display: inline-block;
}

.login-btn {
  background: var(--light-purple);
  color: #fff;
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: 600;
}
.login-btn:hover{
  background-color: var(--dark-purple);
  color: #fff;
}

/* Dropdown Box */
.login-menu {
  position: absolute;
  top: 120%;
  right: 0;
  width: 260px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
  z-index: 1000;
}

/* Show on hover */
.login-dropdown:hover .login-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Menu Items */
.menu-item {
  display: flex;
  gap: 12px;
  padding: 15px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #eee;
  transition: 0.2s;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:hover {
  background: #f8f9fa;
}

/* Text styling */
.menu-item strong {
  display: block;
  font-size: 14px;
}

.menu-item small {
  color: #888;
  font-size: 12px;
}

/* Colored dots */
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 5px;
}

.blue { background: #4c6ef5; }
.green { background: #2f9e44; }
.orange { background: #f08c00; }

@media (max-width: 1199px) {
  .login-dropdown {
    display: none;
  }
}

/* login-button-dropdown-end */

/*--------------------------------------------------------------
# HERO Section
--------------------------------------------------------------*/
.hero-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, #eef2ff 0%, #fff 100%);
}

a.text-decoration-none {
  color: inherit;
  display: block;
}

.section-label {
  font-family: system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--light-purple);
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.main-title {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.subtitle {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  max-width: 700px;
  margin: auto;
  color: #45484b;
  font-size: 18px;
  margin-bottom: 60px;
}

.hero-card {
  border-radius: 16px;
  padding: 40px;
  text-align: left;
  height: 100%;
  border: 1px solid #dcdcdc;
}
.hero-card .path-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.card-law {
  background: #f4f4f4;
}
.card-law:hover {
  border: 2px solid var(--light-purple);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.12);
  transform: translateY(-2px);
}

.card-health {
  background: #dfeee6;
  border: none;
}
.card-health:hover {
  border: 2px solid var(--green);
  box-shadow: 0 8px 30px rgba(47, 133, 90, 0.12);
  transform: translateY(-2px);
}

.card-icon {
  font-size: 28px;
  margin-bottom: 15px;
}

.card-title {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.card-text {
  font-size: 16px;
  color: #3a3f46;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.learn-link {
  color: var(--dark-purple);
  font-weight: 600;
  text-decoration: none;
}

.start-link {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 0;
  margin-top: 48px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  background: white;
}

/* Responsive */

@media (max-width: 992px) {
  .main-title {
    font-size: 38px;
  }

  .hero-card {
    margin-bottom: 25px;
  }
}

/*--------------------------------------------------------------
# ECO Section
--------------------------------------------------------------*/

.ecosystem-section {
  padding: 110px 0;
  background: #f8f9fa;
}

.section-label {
  font-family: system-ui, sans-serif;
  text-align: center;
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--light-purple);
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.main-title {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  padding-bottom: 25px;
  max-width: 720px;
  margin: auto;
}

.subtitle {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  max-width: 720px;
  margin: auto;
  text-align: center;
  font-size: 17px;
  color: #464e57;
  margin-bottom: 70px;
}

.steps {
  max-width: 720px;
  margin: auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #d9d9d9;
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}

.green {
  background: var(--green);
}
.purple {
  background: var(--light-purple);
}

.step-title {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 18px;
}

.step-text {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-size: 16px;
  color: #5f6b7a;
}

/* Responsive */

@media (max-width: 992px) {
  .main-title {
    font-size: 38px;
  }

  .subtitle {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .section-label {
    font-family: system-ui, sans-serif;
    text-align: center;
    font-size: 16px;
    letter-spacing: 2px;
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
  }
  .main-title {
    font-size: 38px;
  }

  .subtitle {
    font-size: 20px;
  }
  .step-title {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 20px;
  }

  .step-text {
    font-size: 18px;
    color: #5f6b7a;
  }
}

/*--------------------------------------------------------------
# Solution Section
--------------------------------------------------------------*/
.solutions-section {
  padding: 110px 20px;
}

/* Label */
.solutions-label h4 {
  color: var(--light-purple);
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  text-align: center;
}

/* Heading */
.solutions-title {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 600;
  color: #111;
  text-align: center;
}

.solutions-desc {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 18px;
  color: #5c5c5c;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

/* solution Card */
.solution-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #cfd4da;
  height: 100%;
}

/* Icon Box */
.solution-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

/* Icon Colors */
.card-icon.purple {
  background: #eef2ff;
}
.card-icon.green {
  background: #e6f6ed;
}
.card-icon.blue {
  background: #e7f0ff;
}
.card-icon.orange {
  background: #fff1e5;
}

/* Title */
.solution-title {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Text */
.solution-text {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  color: #444;
  font-size: 17px;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
  .solutions-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .solutions-section {
    padding: 50px 5px;
  }

  .solutions-title {
    font-size: 32px;
  }
  .solutions-desc {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 20px;
    color: #5c5c5c;
  }
  .solution-card {
    padding: 30px;
  }
  .solution-title {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
  }
  .solution-text {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    color: #444;
    font-size: 18px;
    line-height: 1.8;
  }
}

/* contact-section-start */

.contact-section {
  padding: 70px 20px;
  background: #f8f9fa;
}

.contact-label {
  font-family: system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-purple);
  margin-bottom: 12px;
  display: inline-block;
}

.contact-title {
  font-size: 3rem;
  font-weight: 900;
  color: #0a0a2a;
  margin-bottom: 20px;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
}

.contact-text {
  font-size: 16px;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-weight: 400;
  margin-bottom: 30px;
}

/* Contact Methods */
.contact-info .contact-methods {
  margin-bottom: 60px;
}

.contact-info .contact-method {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 35px;
}

.contact-info .contact-method .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info .contact-method .contact-details .method-label {
  font-size: 16px;
  font-weight: 700;
  color: #636161;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
  font-family: "Inter", sans-serif;
}

.contact-info .contact-method .contact-details p {
  font-size: 15px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 0;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

/* Right-side Contact Form */
.contact-box {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.form-label {
  font-weight: 600;
  color: #0a0a2a;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
.form-control {
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: none !important;
  font-size: 15px;
  padding: 12px 12px;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
.form-control:focus {
  border-bottom: 2px solid var(--light-purple);
}
.submit-btn {
  margin-top: 10px !important;
  align-items: center;
  background: var(--light-purple);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: system-ui, sans-serif;
}

/* ---------------------- Responsive Styles ---------------------- */

/* Tablets (768px–991px) */
@media (max-width: 992px) {
  .contact-title {
    font-size: 30px;
  }

  .contact-method p,
  .contact-text {
    font-size: 15px;
  }

  .contact-methods {
    margin-bottom: 40px;
  }

  .contact-box {
    padding: 30px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 15px;
  }

  .contact-title {
    font-size: 28px;
    text-align: center;
  }

  .contact-text {
    text-align: center;
    margin-bottom: 25px;
  }

  .contact-info .contact-method {
    margin-bottom: 25px;
  }

  .contact-box {
    padding: 25px;
  }

  .submit-btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 575px) {
  .contact-title {
    font-size: 32px;
  }

  .contact-info .contact-method {
    gap: 10px;
  }

  .contact-method .contact-details p {
    font-size: 15px;
  }

  .contact-box {
    padding: 20px;
  }
  .submit-btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }
}

/* contact-section-end */

/* Footer-start */
.footer {
  background-color: #1e1e2a;
  padding-top: 60px;
  padding-bottom: 20px;
}
.footer .footer-divider {
  background-color: #b0b0b1;
  width: 100%;
  max-width: 1260px;
  height: 2px;
}
.footer img {
  width: 250px;
}
.footer-text {
  color: #cfcfcf;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  padding-bottom: 20px;
}
.footer-heading {
  color: #fff;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-link {
  color: #cfcfcf;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 40px;
  text-decoration: none;
  margin: 0;
}
.footer-link:hover {
  color: #6366f1;
}
.footer-btn {
  background-color: #6366f1;
  color: #fff;
  border: 3px solid;
  border-color: #6366f1;
  border-radius: 10px;
  padding: 10px 80px;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}
.footer-bottom {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}
/* footer-end */

/*--------------------------------------------------------------
# Legal Hero Page Section
--------------------------------------------------------------*/

.legal-hero-section {
  padding: 120px 20px;
  text-align: center;
  background: linear-gradient(180deg, #eef2ff 0%, #fff 100%);
}

.legal-hero-top-text {
  letter-spacing: 2px;
  font-size: 15px;
  color: var(--light-purple);
  font-weight: 700;
  text-transform: uppercase;
  font-family: system-ui, sans-serif;
}

.legal-hero-title {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: 56px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-top: 20px;
  max-width: 800px;
  margin: auto;
}

.legal-hero-title span {
  color: var(--light-purple);
}

.legal-hero-desc {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  max-width: 700px;
  margin: 20px auto 40px;
  color: #414244;
  font-size: 17px;
  line-height: 1.7;
}

.legal-hero-btn-primary-custom {
  background: var(--light-purple);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  transition: 0.3s;
  font-family: system-ui, sans-serif;
  text-decoration: none;
}

.legal-hero-btn-primary-custom:hover {
  background: var(--dark-purple);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.legal-hero-btn-outline-custom {
  border: 1px solid #d1d5db;
  padding: 14px 28px;
  border-radius: 50px;
  color: #1f2937;
  font-weight: 500;
  background: transparent;
  font-family: system-ui, sans-serif;
  text-decoration: none;
}

.legal-hero-btn-outline-custom:hover {
  border: 2px solid var(--light-purple);
  color: var(--light-purple);
}

.legal-badge-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e5e7eb;
  padding: 8px 16px;
  border-radius: 50px;
  margin: 5px;
  font-weight: 500;
  font-size: 14px;
  background: #fff;
}

.legal-badges {
  margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-hero-title {
    font-size: 36px;
  }

  .legal-hero-desc {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .legal-hero-section {
    padding: 80px 15px;
  }

  .legal-hero-title {
    font-size: 32px;
  }
  .legal-hero-desc {
    font-size: 17px;
  }

  .btn-group {
    flex-direction: column;
    gap: 10px;
  }
}

/*--------------------------------------------------------------
# the-problem Section
--------------------------------------------------------------*/
.legal-problems-section {
  padding: 110px 20px;
  background-color: #eef2ff;
}

/* Label */
.legal-problems-label h4 {
  color: var(--light-purple);
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

/* Heading */
.legal-problems-title {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 600;
  color: #111;
}
.legal-problems-desc {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 18px;
  color: #5c5c5c;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* legal-problem Card */
.legal-problem-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #cfd4da;
  height: 100%;
  text-align: center;
}

/* Title */
.legal-problem-title-red {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #c9453a;
}
.legal-problem-title-gold {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #d4872e;
}
.legal-problem-title-purple {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #7c5cbf;
}
.legal-problem-title-blue {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #2f855a;
}

.legal-problem-text {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  color: #444;
  font-size: 16px;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
  .legal-problems-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .legal-problems-section {
    padding: 50px 5px;
  }
  .legal-problems-title {
    font-size: 30px;
  }
  .legal-problems-desc {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 20px;
    color: #5c5c5c;
  }
  .legal-problem-card {
    padding: 30px;
  }
  .legal-problem-text {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    color: #444;
    font-size: 18px;
    line-height: 1.8;
  }
}
/* the-problem-end */

/*--------------------------------------------------------------
# legal-Solution Section
--------------------------------------------------------------*/
.legal-solutions-section {
  padding: 110px 20px;
}

/* Label */
.legal-solutions-label h4 {
  color: var(--light-purple);
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

/* Heading */
.legal-solutions-title {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 600;
  color: #111;
}

.legal-solutions-desc {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 18px;
  color: #5c5c5c;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* legal-solution Card */
.legal-solution-card {
  background: #fff;
  padding: 20px 20px;
  border-radius: 16px;
  border: 1px solid #cfd4da;
  height: 100%;
}

/* Icon Box */
.legal-solution-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

/* Icon Colors */
.card-icon.purple {
  background: #eef2ff;
}
.card-icon.green {
  background: #e6f6ed;
}
.card-icon.blue {
  background: #e7f0ff;
}
.card-icon.orange {
  background: #fff1e5;
}

/* Title */
.legal-solution-title {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Text */
.legal-solution-text {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  color: #444;
  font-size: 17px;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
  .legal-solutions-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .legal-solutions-section {
    padding: 50px 5px;
  }

  .legal-solutions-title {
    font-size: 32px;
  }
  .legal-solutions-desc {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 20px;
    color: #5c5c5c;
  }
  .legal-solution-card {
    padding: 30px;
  }
  .legal-solution-title {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
  }
  .legal-solution-text {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    color: #444;
    font-size: 18px;
    line-height: 1.8;
  }
}
/* Legal-Solution-end */

/*--------------------------------------------------------------
# Legal How it Works Section
--------------------------------------------------------------*/
.legal-how-section {
  background-color: #eef1f5;
  padding: 120px 20px;
}

/* small heading */
.legal-how-small-title h4 {
  color: var(--light-purple);
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* main heading */
.legal-how-main-title {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
}

/* subtitle */
.legal-how-subtitle {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  color: #5c5c5c;
  font-size: 18px;
  margin-bottom: 60px;
}

/* cards */
.legal-how-process-card {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  position: relative;
  height: 100%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* number circle */
.legal-how-step-number {
  position: absolute;
  top: -22px;
  left: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light-purple);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
}

/* card title */
.legal-how-card-title {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 22px;
  margin-top: 10px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* text */
.legal-how-card-text {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  color: #333;
  font-size: 17px;
  line-height: 1.7;
}

/* responsive */

@media (max-width: 992px) {
  .legal-how-main-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .legal-how-section {
    padding: 50px 5px;
  }
  .legal-how-main-title {
    font-size: 32px;
  }
  .legal-how-subtitle {
    font-size: 20px;
    padding-bottom: 20px;
  }
  .legal-how-process-card {
    margin-bottom: 30px;
  }
  .legal-how-card-title {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 15px;
    font-weight: 600;
  }
  .legal-how-card-text {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    color: #333;
    font-size: 20px;
    line-height: 1.7;
  }
}
/* How it works-end */

/*--------------------------------------------------------------
# legal-Portal Section Start
--------------------------------------------------------------*/
.legal-portal-section {
  padding: 100px 0;
}

/* Label */
.legal-portal-label {
  font-family: system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--light-purple);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Title */
.legal-portal-main-title {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  color: #1a1a1a;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Subtitle */
.legal-portal-subtitle {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  color: #475569;
  font-size: 17px;
  margin-bottom: 35px;
  max-width: 520px;
}

/* List */
.legal-portal-feature-list {
  list-style: none;
  padding: 0;
}

.legal-portal-feature-list li {
  padding: 14px 0;
  border-bottom: 1px solid #dcdcdc;
  font-size: 17px;
  color: #475569;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
}

.legal-portal-feature-list li:last-child {
  border-bottom: none;
}

.legal-portal-feature-list i {
  color: var(--dark-green);
  margin-right: 10px;
}

/* Image Container */
.legal-portal-image-box {
  border: 1px solid #d1d1d1;
  border-radius: 18px;
}

/* Image */
.legal-portal-image-box img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .legal-portal-main-title {
    font-size: 38px;
  }

  .legal-portal-image-box {
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# legal-CTA Section Start
--------------------------------------------------------------*/
.legal-cta-section {
  padding: 100px 20px;
  text-align: center;
  background: var(--darkest-purple);
  margin-bottom: 20px;
}

/* Heading */
.legal-cta-heading {
  margin: 0 0 20px;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  padding: 0 100px;
  line-height: 1.2;
}

/* Subtext */
.legal-cta-subtext {
  margin: 0 auto;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 17px;
  color: #fff;
  max-width: 900px;
  line-height: 1.6;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Buttons */
.legal-btn-primary-custom {
  background-color: #fff;
  border-radius: 50px;
  padding: 15px 35px;
  border: none;
  color: var(--light-purple);
  font-weight: 600;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 17px;
  text-decoration: none;
}
.legal-btn-primary-custom:hover{
  background-color: #fff;
  color: var(--dark-purple);
}

.legal-btn-outline-custom {
  border-radius: 50px;
  padding: 13px 35px;
  border: 2px solid rgb(201, 201, 201);
  color: #fff;
  font-weight: 600;
  background: #ffffff00;
  font-size: 17px;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  text-decoration: none;
}
.legal-btn-outline-custom:hover {
  background-color: #fff;
  color: var(--light-purple);
}

/* ------------------ Mobile Responsive ------------------ */
@media (max-width: 992px) {
  .legal-cta-heading {
    font-size: 42px;
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .legal-cta-section {
    padding: 80px 20px;
    max-width: 735px;
  }

  .legal-cta-heading {
    font-size: 32px;
    padding: 0;
  }

  .legal-cta-subtext {
    font-size: 16px;
    padding: 0 10px;
  }

  .legal-btn-primary-custom,
  .legal-btn-outline-custom {
    width: 100%;
    max-width: 350px;
    padding: 14px 20px;
    font-size: 16px;
    text-decoration: none;
  }
}

@media (max-width: 575px) {
  .legal-cta-section {
    padding: 80px 20px;
  }
  .legal-cta-heading {
    font-size: 32px;
  }
  .legal-cta-subtext {
    margin: 0 auto;
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    max-width: 900px;
    line-height: 1.6;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
/* legal-cta section-end */

/*--------------------------------------------------------------
# provider Hero Page Section
--------------------------------------------------------------*/

.provider-hero-section {
  padding: 120px 20px;
  text-align: center;
  background: linear-gradient(180deg, #E6F6ED 0%, #fff 100%);
}

.provider-hero-top-text {
  letter-spacing: 2px;
  font-size: 15px;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  font-family: system-ui, sans-serif;
}

.provider-hero-title {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: 56px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-top: 20px;
  max-width: 800px;
  margin: auto;
}

.provider-hero-title span {
  color: var(--green);
}

.provider-hero-desc {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  max-width: 700px;
  margin: 20px auto 40px;
  color: #414244;
  font-size: 17px;
  line-height: 1.7;
}

.provider-hero-btn-primary-custom {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  transition: 0.3s;
  font-family: system-ui, sans-serif;
  text-decoration: none;
}

.provider-hero-btn-primary-custom:hover {
  background: var(--dark-green);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.provider-hero-btn-outline-custom {
  border: 1px solid #d1d5db;
  padding: 14px 28px;
  border-radius: 50px;
  color: #1f2937;
  font-weight: 500;
  background: transparent;
  font-family: system-ui, sans-serif;
  text-decoration: none;
}

.provider-hero-btn-outline-custom:hover {
  border: 2px solid var(--green);
  color: var(--green);
}

.provider-badge-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e5e7eb;
  padding: 8px 16px;
  border-radius: 50px;
  margin: 5px;
  font-weight: 500;
  font-size: 14px;
  background: #fff;
}

.provider-badges {
  margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .provider-hero-title {
    font-size: 36px;
  }

  .provider-hero-desc {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .provider-hero-section {
    padding: 80px 15px;
  }

  .provider-hero-title {
    font-size: 32px;
  }
  .provider-hero-desc {
    font-size: 17px;
  }

  .btn-group {
    flex-direction: column;
    gap: 10px;
  }
}


/*--------------------------------------------------------------
# provider the-problem Section
--------------------------------------------------------------*/
.provider-problems-section {
  padding: 110px 20px;
  background-color: #E6F6ED;
}

/* Label */
.provider-problems-label h4 {
  color: var(--green);
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

/* Heading */
.provider-problems-title {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--dark-green);
}
.provider-problems-desc {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 18px;
  color: #5c5c5c;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* provider-problem Card */
.provider-problem-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #cfd4da;
  height: 100%;
  text-align: center;
}

/* Title */
.provider-problem-title-red {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #c9453a;
}
.provider-problem-title-gold {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #d4872e;
}
.provider-problem-title-purple {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #7c5cbf;
}
.provider-problem-title-blue {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #2f855a;
}

.provider-problem-text {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  color: #444;
  font-size: 16px;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
  .provider-problems-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .provider-problems-section {
    padding: 50px 5px;
  }
  .provider-problems-title {
    font-size: 30px;
  }
  .provider-problems-desc {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 20px;
    color: #5c5c5c;
  }
  .provider-problem-card {
    padding: 30px;
  }
  .provider-problem-text {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    color: #444;
    font-size: 18px;
    line-height: 1.8;
  }
}
/* provider the-problem-end */


/*--------------------------------------------------------------
# provider-Solution Section
--------------------------------------------------------------*/
.provider-solutions-section {
  padding: 110px 20px;
}

/* Label */
.provider-solutions-label h4 {
  color: var(--green);
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

/* Heading */
.provider-solutions-title {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 600;
  color: #111;
}

.provider-solutions-desc {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 18px;
  color: #5c5c5c;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* provider-solution Card */
.provider-solution-card {
  background: #fff;
  padding: 20px 20px;
  border-radius: 16px;
  border: 1px solid #cfd4da;
  height: 100%;
}

/* Icon Box */
.provider-solution-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

/* Icon Colors */
.card-icon.purple {
  background: #eef2ff;
}
.card-icon.green {
  background: #e6f6ed;
}
.card-icon.blue {
  background: #e7f0ff;
}
.card-icon.orange {
  background: #fff1e5;
}

/* Title */
.provider-solution-title {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Text */
.provider-solution-text {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  color: #444;
  font-size: 17px;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
  .provider-solutions-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .provider-solutions-section {
    padding: 50px 5px;
  }

  .provider-solutions-title {
    font-size: 32px;
  }
  .provider-solutions-desc {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 20px;
    color: #5c5c5c;
  }
  .provider-solution-card {
    padding: 30px;
  }
  .provider-solution-title {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
  }
  .provider-solution-text {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    color: #444;
    font-size: 18px;
    line-height: 1.8;
  }
}
/* provider-Solution-end */

/*--------------------------------------------------------------
# provider How it Works Section
--------------------------------------------------------------*/
.provider-how-section {
  background-color: #E6F6ED;
  padding: 120px 20px;
}

/* small heading */
.provider-how-small-title h4 {
  color: var(--green);
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* main heading */
.provider-how-main-title {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
}

/* subtitle */
.provider-how-subtitle {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  color: #5c5c5c;
  font-size: 18px;
  margin-bottom: 60px;
}

/* cards */
.provider-how-process-card {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  position: relative;
  height: 100%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* number circle */
.provider-how-step-number {
  position: absolute;
  top: -22px;
  left: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
}

/* card title */
.provider-how-card-title {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 22px;
  margin-top: 10px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* text */
.provider-how-card-text {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  color: #333;
  font-size: 17px;
  line-height: 1.7;
}

/* responsive */

@media (max-width: 992px) {
  .provider-how-main-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .provider-how-section {
    padding: 50px 5px;
  }
  .provider-how-main-title {
    font-size: 32px;
  }
  .provider-how-subtitle {
    font-size: 20px;
    padding-bottom: 20px;
  }
  .provider-how-process-card {
    margin-bottom: 30px;
  }
  .provider-how-card-title {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 15px;
    font-weight: 600;
  }
  .provider-how-card-text {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    color: #333;
    font-size: 20px;
    line-height: 1.7;
  }
}
/* How it works-end */

/*--------------------------------------------------------------
# provider-Portal Section Start
--------------------------------------------------------------*/
.provider-portal-section {
  padding: 100px 0;
}

/* Label */
.provider-portal-label {
  font-family: system-ui, sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Title */
.provider-portal-main-title {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  color: #1a1a1a;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Subtitle */
.provider-portal-subtitle {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  color: #475569;
  font-size: 17px;
  margin-bottom: 35px;
  max-width: 520px;
}

/* List */
.provider-portal-feature-list {
  list-style: none;
  padding: 0;
}

.provider-portal-feature-list li {
  padding: 14px 0;
  border-bottom: 1px solid #dcdcdc;
  font-size: 17px;
  color: #475569;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
}

.provider-portal-feature-list li:last-child {
  border-bottom: none;
}

.provider-portal-feature-list i {
  color: var(--dark-green);
  margin-right: 10px;
}

/* Image Container */
.provider-portal-image-box {
  border: 1px solid #d1d1d1;
  border-radius: 18px;
}

/* Image */
.provider-portal-image-box img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .provider-portal-main-title {
    font-size: 38px;
  }

  .provider-portal-image-box {
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# provider-CTA Section Start
--------------------------------------------------------------*/
.provider-cta-section {
  padding: 100px 20px;
  text-align: center;
  background: var(--dark-green);
  margin-bottom: 20px;
}

/* Heading */
.provider-cta-heading {
  margin: 0 0 20px;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  padding: 0 100px;
  line-height: 1.2;
}

/* Subtext */
.provider-cta-subtext {
  margin: 0 auto;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 17px;
  color: #fff;
  max-width: 900px;
  line-height: 1.6;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Buttons */
.provider-btn-primary-custom {
  background-color: #fff;
  border-radius: 50px;
  padding: 15px 35px;
  border: none;
  color: var(--green);
  font-weight: 600;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 17px;
  text-decoration: none;
}

.provider-btn-outline-custom {
  border-radius: 50px;
  padding: 13px 35px;
  border: 2px solid rgb(201, 201, 201);
  color: #fff;
  font-weight: 600;
  background: #ffffff00;
  font-size: 17px;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  text-decoration: none;
}
.provider-btn-outline-custom:hover {
  background-color: #fff;
  color: var(--green);
}

/* ------------------ Mobile Responsive ------------------ */
@media (max-width: 992px) {
  .provider-cta-heading {
    font-size: 42px;
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .provider-cta-section {
    padding: 80px 20px;
    max-width: 735px;
  }

  .provider-cta-heading {
    font-size: 32px;
    padding: 0;
  }

  .provider-cta-subtext {
    font-size: 16px;
    padding: 0 10px;
  }

  .provider-btn-primary-custom,
  .provider-btn-outline-custom {
    width: 100%;
    max-width: 350px;
    padding: 14px 20px;
    font-size: 16px;
    text-decoration: none;
  }
}

@media (max-width: 575px) {
  .provider-cta-section {
    padding: 80px 20px;
  }
  .provider-cta-heading {
    font-size: 32px;
  }
  .provider-cta-subtext {
    margin: 0 auto;
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    max-width: 900px;
    line-height: 1.6;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
/* provider-cta section-end */