:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito", sans-serif;
  --nav-font: "Inter", sans-serif;
}

:root {
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #2d465e;
  --accent-color: #0d83fd;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #212529;
  --nav-hover-color: #0d83fd;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #0d83fd;
}

.light-background {
  --surface-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
}

a {
  color: #28a745;
  text-decoration: none;
  transition: 0.3s;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  letter-spacing: -.03em;
}

.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #fff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #28a745;
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 20px;
  box-shadow: 0 2px 15px rgb(0 0 0 / .1);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.header .btn-getstarted, .header .btn-getstarted:focus {
  color: var(--bs-emphasis-color);
  background: #fff0;
  font-size: 15px;
  padding: 8px 26px;
  margin: 0 0 0 30px;
  transition: 0.3s;
}

.header .btn-getstarted:hover, .header .btn-getstarted:focus:hover {
  background: color-mix(in srgb,#fff0,transparent 15%);
}

@media (max-width:1200px) {
  .header {
    padding-top: 10px;
  }
}

@media (max-width:1200px) {
  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }
}

@media (max-width:1200px) {
  .header .logo {
    order: 1;
  }
}

@media (max-width:1200px) {
  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }
}

@media (max-width:1200px) {
  .header .navmenu {
    order: 3;
  }
}

@media (min-width:1200px) {
  .navmenu {
    padding: 0;
  }
}

@media (min-width:1200px) {
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
}

@media (min-width:1200px) {
  .navmenu li {
    position: relative;
  }
}

@media (min-width:1200px) {
  .navmenu a, .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
}

@media (min-width:1200px) {
  .navmenu li:last-child a {
    padding-right: 0;
  }
}

@media (min-width:1200px) {
  .navmenu li:hover > a, .navmenu .active, .navmenu .active:focus {
    color: #28a745;
  }
}

@media (min-width:1200px) {
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0 0 30px rgb(0 0 0 / .1);
  }
}

@media (min-width:1200px) {
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
}

@media (min-width:1200px) {
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
}

@media (min-width:1200px) {
  .navmenu .dropdown ul a:hover, .navmenu .dropdown ul .active:hover, .navmenu .dropdown ul li:hover > a {
    color: #28a745;
  }
}

@media (min-width:1200px) {
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

@media (max-width:1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
}

@media (max-width:1199px) {
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
}

@media (max-width:1199px) {
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0 0 30px rgb(0 0 0 / .1);
  }
}

@media (max-width:1199px) {
  .navmenu a, .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
}

@media (max-width:1199px) {
  .navmenu a:hover, .navmenu .active, .navmenu .active:focus {
    color: #28a745;
  }
}

@media (max-width:1199px) {
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb,var(--default-color),transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }
}

.page-title {
  color: var(--default-color);
  background-color: #f3f2ef;
  padding: 170px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb,var(--default-color),transparent 70%);
}

section, .section {
  color: var(--default-color);
  background-color: #fff0;
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width:1199px) {
  section, .section {
    scroll-margin-top: 66px;
  }
}

.section-title h2 {
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #28a745;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

.hero {
  position: relative;
  padding-top: 160px;
  background: linear-gradient(135deg,color-mix(in srgb,var(--accent-color),transparent 95%) 50%,color-mix(in srgb,var(--accent-color),transparent 98%) 25%,transparent 50%);
  background: #fff0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%,color-mix(in srgb,#28a745,transparent 92%),transparent 40%);
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .hero-content h1 .accent-text {
  color: #28a745;
}

@media (max-width:992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }
}

@media (max-width:992px) {
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width:992px) {
  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width:575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: .5rem 1rem;
  background-color: color-mix(in srgb,#28a745,transparent 92%);
  border-radius: 50px;
  color: #28a745;
  font-weight: 500;
  display: none;
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
}

.hero .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgb(0 0 0 / .1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: .5rem;
}

.hero .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero .customers-badge .avatar.more {
  background-color: #28a745;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 600;
}

.hero .customers-badge p {
  font-size: .875rem;
  color: color-mix(in srgb,var(--default-color),transparent 40%);
}

@media (max-width:992px) {
  .hero .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb,#28a745,transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: #28a745;
}

.hero .stat-item:hover .stat-icon {
  background-color: #28a745;
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: .25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: .875rem;
  color: color-mix(in srgb,var(--default-color),transparent 40%);
  margin: 0;
}

@media (max-width:575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.features .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb,var(--default-color),transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 7px;
  width: auto;
}

.features .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.features .nav-item:last-child {
  padding-right: 0;
}

.features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width:468px) {
  .features .nav-link {
    padding: 8px 20px;
  }
}

.features .nav-link h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.features .nav-link:hover {
  border-color: color-mix(in srgb,var(--default-color),transparent 80%);
}

.features .nav-link:hover h4 {
  color: #28a745;
}

.features .nav-link.active {
  background-color: #28a745;
  border-color: #28a745;
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #28a745;
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

.features-cards {
  --default-color: #555;
  --heading-color: #333;
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}

.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: #28a745;
  margin-bottom: 20px;
}

.features-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.features-cards .feature-box.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue i {
  color: #28a745;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
}

.call-to-action .container {
  background: url(../../assets/img/section-bg@2x-scaled.webp) center / cover no-repeat,#28a745;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 3.5rem 2rem;
  text-align: justify;
  background: linear-gradient(rgb(0 0 0 / .5),rgb(40 167 69 / .5));
}

.call-to-action .content h2, .call-to-action .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta {
  background-color: color-mix(in srgb,var(--contrast-color) 15%,transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: #28a745;
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb,var(--contrast-color) 50%,transparent);
}

.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: .1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: .15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: .08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: .1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: .15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {
  0%, 100% {
    transform: scale(.8) rotate(45deg) translateY(0);
  }
  50% {
    transform: scale(.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width:992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }
}

@media (max-width:992px) {
  .call-to-action .shape-1 {
    width: 200px;
    height: 200px;
  }
}

@media (max-width:992px) {
  .call-to-action .shape-2 {
    width: 150px;
    height: 150px;
  }
}

@media (max-width:992px) {
  .call-to-action .shape-3 {
    width: 100px;
    height: 100px;
  }
}

@media (max-width:992px) {
  .call-to-action .dots-1 {
    width: 150px;
    height: 150px;
  }
}

@media (max-width:992px) {
  .call-to-action .dots-2 {
    width: 120px;
    height: 120px;
  }
}

@media (max-width:575px) {
  .call-to-action .container {
    border-radius: 0;
  }
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0 2px 30px rgb(0 0 0 / .08);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb,var(--default-color),transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ff8c00;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb,#28a745,transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1,-1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: #28a745;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb,var(--default-color),transparent 40%);
  padding: 0;
  margin: 0;
  font-weight: 500;
}

.services .service-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  box-shadow: 0 0 15px rgb(0 0 0 / .08);
}

.services .service-card:hover .icon {
  background: #28a745;
  color: var(--contrast-color);
}

.services .service-card:hover .read-more {
  color: color-mix(in srgb,#28a745,transparent 25%);
}

.services .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: color-mix(in srgb,#28a745,transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #28a745;
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.services .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services .service-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb,var(--default-color),transparent 25%);
  font-size: 15px;
  line-height: 1.6;
}

.services .service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #28a745;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .service-card .read-more:hover i {
  transform: translateX(5px);
}

.contact .info-box {
  position: relative;
  background: url(../../assets/img/clay-with-me-pro-education-serv-1940-brand-photo-25-hero-QBL-US-EN-desktop-2x.avif) center / cover no-repeat;
  color: #fff;
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  overflow: hidden;
}

.contact .info-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(0 0 0 / .5),rgb(40 167 69 / .5));
  border-radius: 1rem;
  z-index: 1;
}

.contact .info-box * {
  position: relative;
  z-index: 2;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width:767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: .8;
  margin-bottom: 2rem;
}

@media (max-width:992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb,var(--contrast-color),transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb,var(--contrast-color),transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: .5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: .25rem;
  font-size: .95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgb(0 0 0 / .05);
}

@media (max-width:992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width:768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb,var(--default-color),transparent 25%);
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 300;
}

.contact .contact-form .form-control, .contact .contact-form .form-select {
  padding: .875rem 1.25rem;
  border-color: color-mix(in srgb,var(--default-color),transparent 90%);
  border-radius: .5rem;
  background-color: color-mix(in srgb,var(--surface-color) 90%,white 5%);
  color: var(--default-color);
  border: 1px solid #edb86e;
}

.contact .contact-form .form-control:focus, .contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: #28a745;
}

.contact .contact-form .form-control::placeholder, .contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb,var(--default-color),transparent 50%);
}

.contact .contact-form .btn {
  background-color: #28a745;
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: 0.3s;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb,#28a745,var(--contrast-color) 20%);
}

.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 2px 20px rgb(0 0 0 / .1);
}

.service-details .service-box + .service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb,var(--default-color),transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb,var(--default-color),transparent 20%);
  background-color: color-mix(in srgb,var(--default-color),transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: #28a745;
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: #28a745;
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb,#28a745,transparent 95%);
  color: #28a745;
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb,var(--default-color),transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: #28a745;
}

.service-details .download-catalog a:hover {
  color: #28a745;
}

.service-details .help-box {
  background-color: #28a745;
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4, .service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: #28a745;
}

.policy-body {
  padding-top: 0;
}

.section-title {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.card {
  transition: transform 0.3s ease,box-shadow 0.3s ease;
}

.resource-grid {
  max-width: 1200px;
  margin: 1rem auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 1.5rem;
  color: #111;
}

.resource-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #f9f9f9;
  padding: 1.5rem 1.75rem;
  border-radius: 0;
  min-height: 200px;
  flex-direction: row;
  -webkit-box-shadow: 0 0 40px 0 rgb(38 49 209 / .2);
  box-shadow: 0 0 40px 0 rgb(38 49 209 / .2);
}

.resource-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.resource-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.resource-content h5 {
  font-weight: 700;
  color: #222;
  margin: 0 0 .4rem 0;
}

.resource-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin: 0 0 .8rem 0;
  flex-grow: 1;
}

@media (max-width:600px) {
  .resource-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: auto;
  }
}

@media (max-width:600px) {
  .resource-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }
}

@media (max-width:600px) {
  .resource-content p, .resource-content a {
    font-size: .95rem;
  }
}

.section-heading {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #222;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

.check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.input-container {
  position: relative;
  margin-bottom: 20px;
}

.input-container input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #777;
  font-size: 16px;
  transition: 0.3s;
  pointer-events: none;
}

.input-container input:focus + label, .input-container input:not(:placeholder-shown) + label {
  top: 6px;
  left: 10px;
  font-size: 12px;
  color: #0a8543;
  background: #fff;
  padding: 0 5px;
}

.custom-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.6s ease-in-out;
  padding: 6rem 0;
  color: #fff;
  z-index: 1;
}

.custom-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / .35);
  z-index: -1;
}

.custom-hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.custom-hero-content {
  max-width: 650px;
  text-align: left;
  margin-top: 3em;
}

.custom-hero-title {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}

.custom-hero-subtitle {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 2rem;
  color: #f8f9fa;
}

.custom-hero-cta {
  margin-top: 1rem;
}

@media (max-width:991px) {
  .custom-hero {
    min-height: auto;
    padding: 4rem 1rem;
    text-align: center;
  }
}

@media (max-width:991px) {
  .custom-hero-content {
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width:991px) {
  .custom-hero-subtitle {
    font-size: 1.125rem;
  }
}

@media (max-width:576px) {
  .custom-hero {
    padding: 7rem 1rem;
  }
}

@media (max-width:576px) {
  .custom-hero-subtitle {
    font-size: 1rem;
  }
}

.ecosystem-module {
  padding: 60px 20px;
}

.ecosystem-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;
  padding: 2em 0;
  align-items: center;
  background-color: #0d333f;
  border-radius: 8px;
}

.ecosystem-image {
  flex: 1 1 45%;
  text-align: center;
  margin-top: -130px;
}

@media (max-width:768px) {
  .ecosystem-image {
    margin-top: 0!important;
  }
}

.ecosystem-content {
  flex: 1 1 50%;
  padding: 1em;
}

@media (max-width:768px) {
  .ecosystem-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width:768px) {
  .ecosystem-content {
    flex: 1 1 100%;
  }
}

.banner-section {
  background-color: #28a745;
  text-align: center;
  padding: 72px 20px;
  -webkit-box-shadow: 0 10px 30px 0 rgb(38 49 209/.2);
  box-shadow: 0 10px 30px 0 rgb(38 49 209/.2);
}

.banner-container {
  max-width: 900px;
  margin: 0 auto;
}

.banner-heading {
  font-weight: 700;
}

.banner-subtext {
  font-size: 1.25rem;
  margin-bottom: 24px;
}

@media (max-width:768px) {
  .banner-subtext {
    font-size: 1rem;
  }
}

@media (max-width:768px) {
  .btn {
    width: 100%;
  }
}

.input-container input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  outline: none;
}

.input-container input:focus {
  border-color: #34bf49;
  box-shadow: 0 0 0 1px rgb(52 191 73 / .1);
}

.input-container input:focus + label, .input-container input:not(:placeholder-shown) + label {
  top: 3px;
  left: 10px;
  font-size: 12px;
  color: #777;
  background: #fff;
  padding: 0 5px;
}

.testimonial-section {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  color: #222;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  background: #f9f9f9;
  border-radius: 0;
  padding: 2rem;
  transition: all 0.6s ease-in-out;
  -webkit-box-shadow: 0 0 40px 0 rgb(38 49 209 / .2);
  box-shadow: 0 0 40px 0 rgb(38 49 209 / .2);
}

.testimonial-image-wrapper {
  flex: 1 1 300px;
  max-width: 300px;
}

.testimonial-image-wrapper img {
  width: 100%;
  display: block;
  margin: 0 auto;
  -webkit-box-shadow: 0 10px 30px 0 rgb(38 49 209/.2);
  box-shadow: 0 10px 30px 0 rgb(38 49 209/.2);
}

.testimonial-text-wrapper {
  flex: 2 1 500px;
  color: #777;
}

.testimonial-quote {
  font-size: 1.25rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .25rem;
}

.testimonial-author-note {
  font-size: .875rem;
  color: #666;
}

@media (max-width:768px) {
  .testimonial-container {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }
}

@media (max-width:768px) {
  .testimonial-image-wrapper {
    max-width: 200px;
    margin: 0 auto;
  }
}

@media (max-width:768px) {
  .testimonial-text-wrapper {
    flex: unset;
    margin-top: 1.5rem;
  }
}

.policy-page {
  color: #333;
  line-height: 1.6;
}

.policy-header {
  padding-top: 8em;
  background: #ececec;
  padding-right: 1em;
  padding-bottom: 3em;
  padding-left: 1em;
}

.policy-header h1 {
  font-size: 2.75rem;
  margin-bottom: 16px;
}

.policy-updated {
  font-size: .95rem;
  color: #777;
  margin-top: 8px;
}

@media (max-width:576px) {
  .policy-body {
    padding: 20px;
  }
}

.policy-content h4 {
  font-size: 1.5rem;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #0fd46c;
}

.policy-content p {
  margin-bottom: 15px;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.check-list li::before {
  content: "✔";
  color: #34bf49;
  position: absolute;
  left: 0;
  font-weight: 700;
}

.policy-disclaimer {
  margin-top: 40px;
  padding: 15px;
  background: #f8f9fa;
  font-size: .9rem;
  color: #666;
  border-left: 4px solid var(--accent-color,#0077cc);
}

@media (max-width:768px) {
  .policy-header h1 {
    font-size: 1.75rem;
  }
}

@media (max-width:768px) {
  .policy-content h4 {
    font-size: 1.15rem;
  }
}

.hero-image {
  transition: transform 0.4s ease-in-out;
  border-radius: 50%;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  max-width: 350px;
  width: 100%;
  transition: transform 0.3s ease-in-out;
  text-align: left;
  -webkit-box-shadow: 0 0 40px 0 rgb(38 49 209 / .2);
  box-shadow: 0 0 40px 0 rgb(38 49 209 / .2);
  border: none;
}

@media (max-width:768px) {
  .card {
    max-width: 100%;
  }
}

#feature-tabs .nav-link {
  background: #fff;
  color: #000;
  border: 2px solid #fff0;
  margin-bottom: 8px;
  text-align: left;
  font-size: 17px;
  border-radius: 0;
}

#feature-tabs .nav-link.active {
  background: #0fd46c;
  color: #fff;
  border: 2px solid #0fd46c;
}

.icon svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
  fill: #0d6efd;
}

.btn-green-theme {
  display: inline-block;
  padding: 6px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background-color: #0fd46c;
  border: 2px solid #0fd46c;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-green-theme:hover {
  background-color: #fff;
  color: #0fd46c;
  transform: scale(1.01);
  box-shadow: 0 6px 18px rgb(0 0 0 / .15);
}

.call-green-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #0fd46c;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 8px;
}

.call-green-link svg {
  width: 20px;
  height: 20px;
  fill: #0fd46c;
  transition: all 0.3s ease;
}

.card-title {
  margin-bottom: 10px;
}

.card-text {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
}

.feature-card-1 {
  background-color: #0d333f;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgb(0 0 0 / .1);
  transition: transform 0.3s ease,box-shadow 0.3s ease;
  min-height: 20.625rem;
}

.feature-card-1:hover {
  box-shadow: 0 10px 25px rgb(0 0 0 / .15);
}

.section-header {
  margin-bottom: 2rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.section-header h2 {
  margin-bottom: .75rem;
  color: #222;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.03em;
}

.section-header p {
  font-size: clamp(1.45rem, 1vw + 0.5rem, 1.125rem);
  color: #555;
  margin: 0 auto;
  max-width: 800px;
}

.feature-block {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1em;
}

.feature-block.reverse {
  direction: rtl;
}

.feature-block.reverse .feature-content {
  direction: ltr;
}

.feature-content h3:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #28a745;
  left: 0;
  bottom: 0;
  position: absolute;
}

h3 {
  letter-spacing: -.03em;
  color: var(--heading-color);
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.feature-content ul {
  list-style-type: disc;
  padding-left: 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width:768px) {
  .feature-block, .feature-block.reverse {
    direction: ltr;
  }
}

.text-block {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem;
  box-sizing: border-box;
}

@media (min-width:768px) {
  .text-block {
    max-width: 75%;
  }
}

.text-block p {
  line-height: 1.6;
}

.resp-text-wrapper {
  text-align: left;
  margin-bottom: .5rem;
}

.resp-text-wrapper p {
  font-size: .9rem;
  font-weight: 700;
  color: #2c3e50;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -.02em;
}

@media (min-width:768px) {
  .resp-text-wrapper p {
    font-size: .9rem;
  }
}

.qb-carousel__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 75%;
  margin: 0 auto;
}

.qb-carousel__tabs {
  flex: 0 0 45%;
}

.qb-carousel__tab {
  margin-bottom: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.qb-carousel__tab h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #6c757d;
}

.qb-carousel__tab.active h3 {
  color: #000;
}

.qb-carousel__text {
  display: none;
  font-size: 16px;
  line-height: 1.6;
  margin-top: .5rem;
  color: #333;
  max-width: 90%;
}

.qb-carousel__text.active {
  display: block;
}

.qb-carousel__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qb-carousel__image {
  display: none;
}

.qb-carousel__image.active {
  display: block;
}

.qb-carousel__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (min-width:768px) {
  .qb-carousel__container {
    flex-direction: row;
    align-items: flex-start;
  }
}

@media (max-width:767px) {
  .qb-carousel__container {
    max-width: 100%;
  }
}

.box-shadow {
  -webkit-box-shadow: 0 0 40px 0 rgb(38 49 209 / .2);
  box-shadow: 0 0 40px 0 rgb(38 49 209 / .2);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2.4rem;
  border-radius: 50px;
  background: #28a745;
  color: #fff;
  font-weight: 600;
  border: 2px solid #28a745;
  text-decoration: none;
  box-shadow: 0 8px 30px rgb(40 167 69 / .18);
  position: relative;
  overflow: hidden;
}

.hero-btn:hover {
  color: #28a745;
  background: #fff;
  text-decoration: underline;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.4rem;
  border-radius: 14px;
  background: #28a745;
  color: #fff;
  border: 2px solid #28a745;
  font-weight: 600;
  text-decoration: none;
  transition: transform .22s ease,box-shadow .22s ease,background-color .18s ease,color .18s ease;
  box-shadow: 0 6px 20px rgb(40 167 69 / .14);
  position: relative;
}

.cta-btn:hover {
  box-shadow: 0 14px 34px rgb(40 167 69 / .18);
  color: #28a745;
  background: #fff;
  border: 2px solid #28a745;
}

.cta-btn--invert {
  background: #fff;
  color: #28a745;
  border-color: #28a745;
  box-shadow: 0 6px 18px rgb(0 0 0 / .06);
}

.cta-btn--invert:hover {
  background: #2d465e;
  color: #fff;
  box-shadow: 0 12px 34px rgb(40 167 69 / .18);
}

.feature-list li {
  line-height: 1.6;
}

.feature-list svg {
  min-width: 24px;
}

h3 {
  line-height: 1.4;
}

.feature-list li svg {
  position: relative;
  top: 5px;
}

.feature-image.circle-image {
  width: 525px;
  height: 525px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.feature-image.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width:767px) {
  .feature-image.circle-image {
    width: 300px;
    height: 300px;
  }
}

.state-buttons {
  margin-top: 1rem;
}

.state-btn {
  border: 2px solid #0fd46c;
  background-color: #fff0;
  color: #0fd46c;
  padding: .75em 1.5em;
  border-radius: 5px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.state-btn:hover {
  background-color: #0fd46c;
  color: #000;
}

@media (max-width:768px) {
  .state-btn {
    padding: .45rem .9rem;
    font-size: .9rem;
  }
}

@media (max-width:480px) {
  .state-btn {
    padding: .4rem .7rem;
    font-size: .85rem;
  }
}

.feature-box {
  background-color: #fff0;
  padding: 1.1rem;
  border-radius: .5rem;
  box-shadow: 0 6px 18px rgb(2 6 23 / .04);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: flex-start;
  transition: transform 0.2s ease,box-shadow 0.2s ease;
}

.feature-box:hover {
  box-shadow: 0 8px 22px rgb(2 6 23 / .08);
}

.feature-box i {
  font-size: 2.2rem;
  color: #28a745;
  line-height: 1;
}

.feature-box h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #222;
}

.feature-box p {
  margin: 0;
  color: #444;
  font-size: .93rem;
  line-height: 1.45;
}

@media (max-width:575.98px) {
  .feature-box {
    padding: .9rem;
  }
}

@media (max-width:575.98px) {
  .feature-box i {
    font-size: 1.9rem;
  }
}

@media (max-width:575.98px) {
  .feature-box h4 {
    font-size: .98rem;
  }
}

@media (max-width:575.98px) {
  .feature-box p {
    font-size: .88rem;
  }
}

.qb-check {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-right: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%2328a745' viewBox='0 0 24 24'><path d='M20.285 6.709l-11.49 11.49-5.657-5.657 1.414-1.414 4.243 4.243 10.076-10.076z'></path></svg>");
}

#contact-banner {
  padding: 1.5rem 0;
  background-image: url(../../assets/img/section-bg@2x-scaled.webp);
  background-size: cover;
  margin: 2em 1.5em;
  border-radius: 50px;
  background-position: center;
  position: relative;
  overflow: hidden;
}

#contact-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(3 37 65 / .6);
  z-index: 0;
}

#contact-banner .container, #contact-banner .row, #contact-banner p, #contact-banner a {
  position: relative;
  z-index: 1;
}

.cb-text {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.cb-cta {
  padding: .5rem 1rem;
  border-width: 2px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.cb-cta:hover, .cb-cta:focus {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgb(0 0 0 / .2);
}

@media (min-width:768px) {
  #contact-banner .row {
    justify-content: center;
  }
}

@media (min-width:768px) {
  .cb-text {
    margin-right: 5%;
  }
}

@media (max-width:767.98px) {
  .cb-text {
    text-align: center;
  }
}

.faq-content {
  font-size: 15px;
}

.faq-content ol {
  list-style-type: upper-roman;
  margin: 8px 0 0 20px;
  padding: 0;
}

.faq-content ol li {
  margin-bottom: 6px;
}

.faq-toggle {
  cursor: pointer;
  float: right;
  transition: transform 0.3s ease;
}

.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  color: var(--default-color);
  margin-bottom: 2rem;
  font-size: 1.15rem;
  font-weight: 300;
}

.faq .faq-arrow {
  color: #28a745;
}

.faq .faq-container .faq-item {
  background-color: var(--background-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3:hover {
  color: #28a745;
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: #28a745;
}

.faq .faq-container .faq-active h3 {
  color: #28a745;
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: #28a745;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e4e7ec;
  padding: 18px 0;
  position: relative;
  cursor: pointer;
}

.faq-item h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  padding-right: 36px;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 8px;
}

.faq-item.faq-active .faq-content {
  max-height: 500px;
}

.faq-toggle {
  position: absolute;
  right: 0;
  top: 22px;
  font-size: 18px;
  transition: transform 0.25s ease;
  pointer-events: none;
}

.faq-item.faq-active .faq-toggle {
  transform: rotate(90deg);
}

@media (max-width:600px) {
  .faq-item h3 {
    font-size: 16px;
  }
}

@media (max-width:600px) {
  .faq-content {
    font-size: 14px;
  }
}

:root {
  --qb-green: #28a745;
  --qb-green-dark: #1d7d36;
  --qb-bg-soft: #f5f7fb;
  --qb-text: #1f2933;
  --qb-muted: #6b7585;
  --qb-danger: #e11d48;
  --qb-radius-lg: 18px;
  --qb-shadow-soft: 0 12px 40px rgba(0,0,0,0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
  color: var(--qb-text);
  line-height: 1.6;
}

body {
  font-family: 'Geist',system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-weight: 400;
}

h1, .h1, .tb-title {
  font-weight: 700;
}

h2, .h2 {
  font-weight: 600;
}

h3, .h3 {
  font-weight: 500;
}

strong, b {
  font-weight: 600;
}

.visually-hidden-seo {
  position: absolute!important;
  width: 1px!important;
  height: 1px!important;
  padding: 0!important;
  margin: 0!important;
  overflow: hidden!important;
  clip: rect(0,0,0,0)!important;
  white-space: nowrap!important;
  border: 0!important;
}

a {
  color: var(--qb-green-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header, main, footer {
  width: 100%;
}

.promo-bar {
  background: radial-gradient(circle at 0% 0%,#16a34a 0%,#14532d 45%,#020617 100%);
  color: #f9fafb;
  font-size: .9rem;
  padding: .55rem 0;
}

.promo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.promo-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .25rem .7rem;
  border-radius: 999px;
  border: 1px solid rgb(248 250 252 / .35);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.promo-highlight {
  font-weight: 600;
  white-space: nowrap;
}

.promo-number a {
  color: #f9fafb;
  font-weight: 600;
}

.hero {
  background: radial-gradient(circle at 0% 0%,#ecfdf5 0%,#eff6ff 40%,#ffffff 80%);
  padding: 2.6rem 0 2.8rem;
  border-bottom: 1px solid #e5e7eb;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.4fr) minmax(0,1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  color: var(--qb-green-dark);
  margin-bottom: .6rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.hero-eyebrow-badge {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgb(34 197 94 / .35);
}

.hero-title {
  font-size: clamp(2rem, 2.45rem + 0.5vw, 2.9rem);
  line-height: 1.12;
  margin: 0 0 .85rem;
  letter-spacing: -.03em;
}

.hero-title span {
  color: var(--qb-green-dark);
}

.hero-subtext {
  max-width: 580px;
  font-size: .98rem;
  color: var(--qb-muted);
  margin-bottom: 1.5rem;
}

.hero-subtext strong {
  color: #111827;
}

.hero-phone-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.75rem;
  margin-bottom: 1.5rem;
}

.hero-phone-main {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  background: #0f172a;
  color: #f9fafb;
  box-shadow: 0 14px 38px rgb(15 23 42 / .35);
}

.hero-phone-main svg {
  flex-shrink: 0;
}

.hero-phone-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  opacity: .9;
}

.hero-phone-number {
  font-size: 1.2rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero-phone-number a {
  color: inherit;
  text-decoration: none;
}

.hero-phone-number a:hover {
  text-decoration: underline;
}

.hero-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  color: var(--qb-green-dark);
  padding: .6rem .9rem;
  border-radius: 999px;
  background: rgb(34 197 94 / .07);
  border: 1px solid rgb(34 197 94 / .35);
}

.hero-secondary-cta svg {
  flex-shrink: 0;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  font-size: .82rem;
  color: var(--qb-muted);
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.hero-meta-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-card {
  background: #fff;
  border-radius: var(--qb-radius-lg);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--qb-shadow-soft);
  border: 1px solid rgb(15 23 42 / .05);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0,rgb(40 167 69 / .12),transparent 60%);
  opacity: .9;
  pointer-events: none;
}

.hero-card-inner {
  position: relative;
}

.hero-card-title {
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: .1rem;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.hero-card-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .9rem;
}

.hero-card-pill {
  font-size: .78rem;
  padding: .2rem .65rem;
  border-radius: 999px;
  background: rgb(15 23 42 / .04);
  border: 1px solid rgb(15 23 42 / .06);
  color: #111827;
  padding: .6rem .9rem;
  border-radius: 999px;
  background: rgb(34 197 94 / .16);
  border: 1px solid rgb(34 197 94 / .35);
}

.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 .9rem;
  font-size: .9rem;
  color: var(--qb-muted);
}

.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  margin-bottom: .35rem;
}

.hero-card-list svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-card-note {
  font-size: .78rem;
  color: #4b5563;
}

.hero-card-note strong {
  color: #111827;
  font-weight: 600;
}

section {
  padding: 2.6rem 0;
}

.section-soft {
  background: var(--qb-bg-soft);
}

.section-heading {
  font-size: 1.6rem;
  margin: 0 0 .5rem;
  letter-spacing: -.02em;
}

.section-subtext {
  max-width: 720px;
  color: var(--qb-muted);
  font-size: .96rem;
  margin-bottom: 1.9rem;
}

.section-subtext strong {
  color: #111827;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 1.6rem;
}

.card {
  background: #fff;
  border-radius: var(--qb-radius-lg);
  padding: 1.45rem 1.4rem;
  box-shadow: 0 8px 28px rgb(15 23 42 / .06);
  border: 1px solid rgb(148 163 184 / .25);
}

.card-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .55rem;
}

.card-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgb(40 167 69 / .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.card-text {
  font-size: .9rem;
  color: var(--qb-muted);
  margin: 0;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: .4rem 0 0;
  font-size: .9rem;
  color: var(--qb-muted);
}

.resource-card .card-icon-circle {
  width: 40px;
  height: 40px;
}

.resource-card .card-icon-circle i {
  font-size: 1.2rem!important;
}

.list-check li {
  display: flex;
  gap: .4rem;
  margin-bottom: .3rem;
  align-items: flex-start;
}

.list-check svg {
  margin-top: 1px;
  flex-shrink: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.faq-list {
  border-radius: var(--qb-radius-lg);
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 8px 30px rgb(15 23 42 / .05);
  padding: 1.4rem 1.5rem;
}

.faq-item {
  padding: .7rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-size: .96rem;
  font-weight: 600;
  margin-bottom: .25rem;
}

.faq-a {
  font-size: .9rem;
  color: var(--qb-muted);
  margin: 0;
}

.faq-aside {
  font-size: .9rem;
  color: var(--qb-muted);
}

.faq-aside strong {
  color: #111827;
}

.cta-final {
  background: radial-gradient(circle at 0% 0%,#022c22 0%,#020617 50%,#000000 100%);
  color: #f9fafb;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 10% 0%,rgb(16 185 129 / .24),transparent 60%),radial-gradient(circle at 90% 100%,rgb(59 130 246 / .18),transparent 55%);
  opacity: .9;
  pointer-events: none;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .8rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg,#22c55e,#16a34a);
  color: #022c22;
  font-weight: 600;
  font-size: .96rem;
  cursor: pointer;
  box-shadow: 0 16px 45px rgb(16 185 129 / .45);
}

.btn-primary:hover {
  filter: brightness(1.05);
  text-decoration: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .78rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgb(148 163 184 / .6);
  color: #e5e7eb;
  font-size: .9rem;
  background: rgb(15 23 42 / .65);
  cursor: pointer;
}

.btn-outline:hover {
  border-color: #e5e7eb;
  text-decoration: none;
}

.cta-final-note {
  font-size: .78rem;
  color: #9ca3af;
  margin: .4rem 0 0;
}

footer {
  font-size: .78rem;
  padding: .9rem 0 1.2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .9rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

@media (max-width:900px) {
  .promo-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width:900px) {
  .hero-grid {
    grid-template-columns: minmax(0,1fr);
  }
}

@media (max-width:900px) {
  .hero {
    padding-top: 2.1rem;
  }
}

@media (max-width:900px) {
  .grid-3 {
    grid-template-columns: minmax(0,1fr);
  }
}

@media (max-width:900px) {
  .faq-grid {
    grid-template-columns: minmax(0,1fr);
  }
}

@media (max-width:900px) {
  .hero-phone-main {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width:900px) {
  .hero-secondary-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width:640px) {
  .hero-title {
    font-size: 1.9rem;
  }
}

@media (max-width:640px) {
  .hero-subtext {
    font-size: .94rem;
  }
}

@media (max-width:640px) {
  .promo-bar {
    font-size: .84rem;
  }
}

@media (max-width:640px) {
  .hero-phone-number {
    font-size: 1.1rem;
  }
}

.resource-card {
  display: flex!important;
  flex-direction: column!important;
  align-items: stretch;
}

.resource-card .card-header {
  display: flex!important;
  flex-direction: row!important;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.resource-card .card-text {
  margin: 0;
}

.section-heading, .section-subtext {
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-subtext {
  margin-bottom: 2rem;
}

.tb-card {
  background: #fff;
  padding: 1.6rem 1.8rem;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgb(0 0 0 / .06);
  border: 1px solid rgb(0 0 0 / .05);
  transition: transform 0.2s ease,box-shadow 0.2s ease;
}

.tb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgb(0 0 0 / .1);
}

.tb-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .75rem;
  line-height: 1.4;
}

.tb-card .tb-muted {
  color: #555;
  margin-bottom: .5rem;
  line-height: 1.5;
}

.tb-card:last-child {
  margin-bottom: 0;
}

.tb-grid-2 {
  display: grid!important;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  margin-top: 1.8rem;
}

@media (min-width:640px) {
  .tb-grid-2 {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (min-width:900px) {
  .tb-grid-2 {
    grid-template-columns: repeat(3,1fr);
  }
}

@media (min-width:1200px) {
  .tb-grid-2 {
    grid-template-columns: repeat(4,1fr);
  }
}

.tb-ba-card {
  background: #fff;
  padding: 1.6rem 1.7rem;
  border-radius: 16px;
  border: 1px solid rgb(0 0 0 / .06);
  box-shadow: 0 4px 16px rgb(0 0 0 / .05);
  transition: transform 0.25s ease,box-shadow 0.25s ease,border-color 0.25s ease,background 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.tb-ba-card:hover {
  transform: translateY(-4px);
  background: #fafafa;
  border-color: rgb(0 0 0 / .15);
  box-shadow: 0 10px 28px rgb(0 0 0 / .12);
}

.tb-ba-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: #111;
  line-height: 1.4;
}

.tb-ba-card p {
  font-size: .94rem;
  margin: 0;
  color: #444;
  line-height: 1.55;
}

.tb-ba-card p strong {
  color: #1b7c3e;
  font-weight: 600;
}

.tb-ba-card h3 {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tb-ba-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #2BAF6A;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.tb-ba-card:hover h3::after {
  width: 100%;
}

.cta-final-inner {
  text-align: center;
  padding: 2.8rem 0 2.7rem;
  max-width: 850px;
  margin: 0 auto;
}

.cta-final-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 1.3rem;
}

@media (max-width:768px) {
  .cta-final-inner {
    padding: 2.2rem 1.4rem;
  }
}

@media (max-width:768px) {
  .cta-final-title {
    font-size: 1.7rem;
    line-height: 1.3;
  }
}

@media (max-width:768px) {
  .cta-final-text {
    font-size: 1.05rem;
  }
}

@media (max-width:480px) {
  .cta-final-inner {
    padding: 2rem 1.2rem;
  }
}

@media (max-width:480px) {
  .cta-final-title {
    font-size: 1.45rem;
  }
}

@media (max-width:480px) {
  .cta-final-text {
    font-size: .97rem;
  }
}

@media (max-width:480px) {
  .cta-final-row {
    gap: 12px;
  }
}

@media (max-width:480px) {
  .btn-primary span, .btn-outline span {
    font-size: .92rem;
  }
}

@media (max-width:480px) {
  .cta-final-note {
    font-size: .83rem;
    margin-top: 1rem;
  }
}

.container {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

section {
  padding-top: clamp(3rem, 4vw, 4.5rem);
  padding-bottom: clamp(3rem, 4vw, 4.5rem);
}

html {
  font-size: 100%;
}

@media (max-width:900px) {
  html {
    font-size: 97%;
  }
}

@media (max-width:640px) {
  html {
    font-size: 94%;
  }
}

@media (max-width:450px) {
  html {
    font-size: 91%;
  }
}

.footer-inner {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (max-width:640px) {
  body {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width:640px) {
  section, .hero, .cta-final, footer {
    padding-left: 1.2rem!important;
    padding-right: 1.2rem!important;
  }
}

/* 1) Global body text slightly darker for contrast on light backgrounds */

body {
  color: #111827;
}

/* 2) Light sections: subtext paragraphs + card text */

.section-soft .section-subtext, .section-soft .card-text, .section-soft .tb-subtext {
  color: #374151;
}

/* 3) Emphasized words inside those paragraphs */

.section-soft .section-subtext strong, .section-soft .card-text strong {
  color: #111827;
  font-weight: 700;
}

/* 4) Dark value stack section (already dark background) – make sure text and links are bright */

#qb-value-stack {
  color: #ffffff;
}

#qb-value-stack .tb-title, #qb-value-stack h2, #qb-value-stack h3, #qb-value-stack p, #qb-value-stack li {
  color: #ffffff;
}

/* Links in dark section */

#qb-value-stack a {
  color: #e5f2ff;
  text-decoration: underline;
}

/* 5) Footer text + links (Privacy Policy, Terms, Operated by TechBrot) */

footer, .footer-inner, .footer-copy, .footer-links, .footer-links a, .footer-disclaimer {
  background-color: #000000;
  color: #ffffff;
}

.footer-links a {
  color: #ffffff;
  text-decoration: underline;
}

