

body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
img {
    max-width: 100%;
}
ul {
    padding: 0;
    margin: 0;
}
/* Optional: custom easing/timing if you want to tweak beyond AOS defaults */
  [data-aos="fade-zoom-in"] {
    transform: scale(0.85);
    opacity: 0;
    transition-property: transform, opacity;
  }
  [data-aos="fade-zoom-in"].aos-animate {
    transform: scale(1);
    opacity: 1;
  }
/* Optional: custom easing/timing if you want to tweak beyond AOS defaults */
/* -----------------------
NAVBAR CSSS
----------------------- */
.qs-new-navbar {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.85);
    padding: 10px 0px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 8px 32px rgba(135, 106, 255, 0.12);
    border: 1px solid rgba(135, 106, 255, 0.1);
}
.qs-new-navbar.sticky nav.navbar {
    margin: 0;
}
nav.navbar a.logo {
    text-decoration: none;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background: rgba(255, 255, 255, 0.85); */
    /* backdrop-filter: blur(6px); */
    /* -webkit-backdrop-filter: blur(6px); */
    /* padding: 10px 40px; */
    /* border-radius: 60px; */
    /* margin: 20px 0px; */
    /* box-shadow: 0 8px 32px rgba(135, 106, 255, 0.12); */
    /* border: 1px solid rgba(135, 106, 255, 0.1); */
    position: relative;
    transition: all 0.4s ease;
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 24px;
}
.btn-primary {
    background: linear-gradient(135deg, #7b5aff, #a07eff);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(123, 90, 255, 0.4);
    white-space: nowrap;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(123, 90, 255, 0.5);
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    transition: all 0.4s ease;
}
.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
    font-family: "Roboto Condensed", sans-serif;
    letter-spacing: 1px;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: #2a85ff;
}
.logo-icon img {
    max-width: 80%;
}
li.qs-contact a {
    background: #2a85ff;
    color: #FFF;
    font-size: 17px;
    padding: 12px 25px;
    border-radius: 40px;
    font-weight: 500;
    transition: 0.6s;
}
li.qs-contact a:hover {
    background: #000;
    color: #FFF;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}
.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #2a85ff;
    border-radius: 3px;
    transition: all 0.4s ease;
}
/* Active Hamburger Animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
/* Responsive */
@media (max-width: 992px) {
.navbar {
    padding: 0px;
    margin: 0px;
}
.nav-menu { 
    gap: 30px;
}

}
@media (max-width: 992px) {
.navbar {
    flex-wrap: wrap;
    /* padding: 18px 24px; */
    border-radius: 50px;
    z-index: 99;
}
.menu-toggle {
    display: flex;
}

.nav-left {
    flex: 1;
    justify-content: right;
}
.nav-menu {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(135, 106, 255, 0.2);
    border: 1px solid rgba(135, 106, 255, 0.15);
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}
.nav-menu li {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}
.nav-menu.active li {
    opacity: 1;
    transform: translateY(0);
}
/* Stagger animation */
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
}
@media (max-width: 480px) {
    .btn-primary {
    padding: 11px 22px;
    font-size: 15px;
}
.logo { font-size: 21px; }

}
/* -----------------------
NAVBAR CSSS
----------------------- */
/* -----------------------
HERO SECTION CSS START
----------------------- */
section.qs-hero-wrapper {
    background: radial-gradient(circle at 20% 40%, #e3f2ff 0%, #ffffff 100%);
    /* background: linear-gradient(180deg, #e9f1ff, #d3f1ff); */
    padding: 160px 0px 70px;
    position: relative;
    z-index: 9;
}
section.qs-hero-wrapper::after {
    position: absolute;
    content: '';
    background: url('../images/qs-bg.svg');
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
    /* mask-image: linear-gradient(180deg, #fff 50%, transparent 100%); */
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 15%, black 75%, transparent 100%);
    mask-image: linear-gradient(to top, transparent 0%, black 15%, black 75%, transparent 100%);
}
.qs-hero-area {
    text-align: center;
    margin-bottom: 40px;
}
.qs-hero-area .qs-hero-high  svg{
    margin-right: 6px;
    margin-top: -3px;
}
.qs-hero-area .qs-hero-high {
    display: inline-block;
    border: 1px solid #2563eb;
    padding: 10px 10px;
    border-radius: 9px;
    font-weight: 500;
    margin-bottom: 20px;
    background: transparent;
    color: #000;
    text-transform: capitalize;
    font-size: 13px;
}
.qs-hero-area h1 {
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.qs-hero-area h1 span {
    color: #45c093;
    /* background: -webkit-linear-gradient(45deg, #4f46e5, #2563eb); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}
span.fortune-text {
    background: -webkit-linear-gradient(45deg, #4f46e5, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.qs-hero-area p {
    font-size: 16px;
    letter-spacing: 0.50px;
    line-height: 30px;
}
.qs-hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0px 10px;
}
.qs-hero-buttons a {
    display: inline-block;
    /* background: linear-gradient(45deg, #4f46e5, #2563eb); */
    color: #FFF;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    transition: 0.6s;
    background: #2a85ff;
}
.qs-hero-buttons a:hover {
    /* box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.3); */
    /* transform: translateY(-10px); */
    background: #4996ff;
}
.qs-hero-buttons a:nth-child(2) {
    background: #FFF;
    color: #000;
    border: 2px solid #3333;
}
.qs-hero-buttons a:nth-child(2):hover {
    border: 2px solid #2a85ff;
}
.qs-hero-text {
    /* background: #FFF; */
    display: inline-block;
    padding: 10px 0px;
    border-radius: 10px;
    font-weight: 500;
    color: #4f46e5;
    position: relative;
}
.qs-hero-text img {
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
}
.qs-dashboard-inner {
    border-radius: 20px;
    /* background: rgba(255, 255, 255, 0.6); */
    background: rgb(42, 133, 255, 0.2);
    padding: 20px;
    border: 1px solid rgba(0,0,0,.1);
}
.qs-dashboard-inner img {
    border-radius: 20px;
    border: 1px solid #3333331f;
}
.qs-dashboard .row {
    justify-content: center;
}
/* -----------------------
HERO SECTION CSS END
----------------------- */
/* -----------------------
AR COMPARISON TABLE
----------------------- */
section.qs-comparison-table {
    padding: 60px 0px;
    /* background: #fafafa; */
    position: relative;
    z-index: 9;
}
section.qs-comparison-table .row {
    justify-content: center;
    align-items: center;
}
.qs-comparison-title {
    text-align: center;
    margin-bottom: 50px;
}
.qs-comparison-title h2 {
    text-transform: capitalize;
    font-weight: 700;
}
.qs-comparison-title h2 span {
    background: -webkit-linear-gradient(45deg, #4f46e5, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.qs-comparison-table-left {
    background: #FFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    position: relative;
    z-index: 9;
}
.qs-comparison-table-wrapper h3 {
    background: #334155;
    color: #FFF;
    font-size: 26px;
    padding: 20px;
    margin: 0;
    border-radius: 15px 15px 0px 0px;
}
.qs-comparison-table-wrapper ul {
    padding: 30px;
}
.qs-comparison-table-left ul {
    background: #F1F5F9;
    border-radius: 0px 0px 15px 15px;
    border: 1px solid #9a9595;
}
.qs-comparison-table-wrapper ul li {
    list-style: none;
    font-size: 17px;
    padding-bottom: 20px;
    color: #1E293B;
    text-transform: capitalize;
}
.qs-comparison-table-wrapper ul li svg circle {
    fill: #64748B;
}
.qs-comparison-table-wrapper ul li:last-child {
    padding-bottom: 0;
}
.qs-comparison-table-wrapper ul li svg {
    margin-right: 10px;
}
.qs-comparison-table-right h3 {
    background: #3B82F6;
}
.qs-comparison-table-right ul li svg {
    /* margin-right: 0px; */
    margin-top: 3px;
}
.qs-comparison-table-right ul {
    padding: 30px 30px;
    background: #EFF6FF;
    border-radius: 0px 0px 15px 15px;
    border: 1px solid #3B82F6;
}
.qs-comparison-table-right ul li svg path {
    fill: #2563EB;
}
.qs-comparison-table-right ul li {
    /* padding-bottom: 35px; */
    color: #000;
}
div#millionCounter {
    display: inline;
}
div#billionCounter {
    display: inline;
}
div#decreaseCounter {
    display: inline;
}
/* CURVE ARROE CSS */
.step-flow {
    width: 500px;
    margin: 0px auto;
    margin-left: -30px;
    position: relative;
    z-index: -1;
}
.curve {
    width: 100%;
    /* height: 150px; */
    overflow: visible;
}
path#movingArrow {
    fill: #2a85ff;
}

  /* Hide arrow until animation starts */
  #movingArrow {
    opacity: 0;
  }

  /* Class added by JS when in view */
  .start-animation #movingArrow {
    opacity: 1;
  }

  /* Restart animation when class is added */
 .start-animation #movingArrow * {
    animation-play-state: running !important;
    fill: #2a85ff;
}
/* CURVE ARROE CSS */
.qs-comparison-table-right .qs-comparison-table-wrapper {
    transition: transform 0.3s ease;
    animation: shadowMove 3s infinite alternate;
    border-radius: 15px;
}
/* Animation for moving box shadow */
  @keyframes shadowMove {
    0% {
      box-shadow: 0 15px 15px rgba(0,0,0,0.2), 0 0 0px rgba(59, 130, 246, 0.5);
    }
    50% {
      box-shadow: 0 20px 25px rgba(0,0,0,0.25), 0 0 20px rgba(59, 130, 246, 0.7);
    }
    100% {
      box-shadow: 0 15px 15px rgba(0,0,0,0.2), 0 0 0px rgba(59, 130, 246, 0.5);
    }
}
/* AR COMPARISON ANIMATION CIRCLE BOTTOM */
.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgb(42, 133, 255, 0.3);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}
.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}
.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}
.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}
.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}
.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}
.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}
.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}
.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}
.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}
.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}
@keyframes animate {
    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }
    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}
/* AR COMPARISON ANIMATION CIRCLE BOTTOM */
/* -----------------------
AR COMPARISON TABLE
----------------------- */
/* -----------------------
Industry Section HTML CODE
----------------------- */

section.industry-section {
    background: linear-gradient(180deg,#faf5ff,#d3f1ff);
    padding: 60px 0px;
    position: relative;
    z-index: 9;
    margin-bottom: 60px;
}
section.industry-section::after {
    position: absolute;
    content: '';
    background: url('../images/qs-bg.svg');
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
    /* mask-image: linear-gradient(180deg, #fff 50%, transparent 100%); */
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 15%, black 75%, transparent 100%);
    mask-image: linear-gradient(to top, transparent 0%, black 15%, black 75%, transparent 100%);
}
section.industry-section .d-flex {
    align-items: center;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255,255,255,0.8);
    border: 1px solid #3333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}
section.industry-section .nav-pills .nav-link {
    background: #FFF;
    color: #000;
    border: 1px solid #3333;
    margin-bottom: 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08);
    padding: 12px 12px;
}
section.industry-section .nav-pills .nav-link svg {
    justify-items: start;
    background: #dbeafe;
    padding: 10px;
    border-radius: 10px;
}
section.industry-section .nav-pills .nav-link:nth-child(1) svg path {
    fill: #2563eb;
}
section.industry-section .nav-pills .nav-link:nth-child(2) svg{ 
    background: #dcfce7;
}
section.industry-section .nav-pills .nav-link:nth-child(2) svg path {
    fill: #16a34a;
}
section.industry-section .nav-pills .nav-link:nth-child(3) svg{ 
    background: #f3e8ff;
}
section.industry-section .nav-pills .nav-link:nth-child(3) svg path {
    fill: #9333ea;
}
section.industry-section .nav-pills .nav-link:nth-child(4) svg{ 
    background: #ffedd5;
}
section.industry-section .nav-pills .nav-link:nth-child(4) svg path {
    fill: #ea580c;
}
section.industry-section .nav-pills .nav-link:nth-child(5) svg{ 
    background: #fee2e2;
}
section.industry-section .nav-pills .nav-link:nth-child(5) svg path {
    fill: #dc2626;
}
section.industry-section .tab-content h2 {
    color: #2a85ff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}
section.industry-section .tab-content p {
    color: #000;
    font-size: 17px;
}
section.industry-section .tab-content ul li {
    font-size: 16px;
}
section.industry-section .tab-content ul li {
    font-size: 17px;
    list-style: none;
    padding-bottom: 12px;
    color: #000;
    position: relative;
    padding-left: 20px;
}
section.industry-section .tab-content ul li svg {
    position: absolute;
    left: 0;
    top: 3px;
}
button.nav-link.active {
    border: 1px solid #2a85ff !important;
}
.qs-industry-banner {
    position: absolute;
    right: 10px;
    bottom: 0;
}
section.industry-section .qs-industry-banner img {
    filter: grayscale(1);
    max-width: 400px;
    max-height: 300px;
    opacity: 0.2;
}
/* -----------------------
Industry Section HTML CODE
----------------------- */
/* ---------------------------------------
Industry Section HTML CODE MOBILE VERSION
----------------------------------------- */
.ai-collection-svg {
    margin-right: 10px;
}
.ai-collection-svg svg {
    justify-items: start;
    background: #dbeafe;
    padding: 10px;
    border-radius: 10px;
}
.ai-collection-svg svg path {
    fill: #2563eb;
}
#flush-headingTwo .ai-collection-svg svg {
    background: #dcfce7;
}
#flush-headingTwo .ai-collection-svg svg path {
    fill: #16a34a;
}
#flush-headingThree .ai-collection-svg svg {
    background: #f3e8ff;
}
#flush-headingThree .ai-collection-svg svg path {
    fill: #9333ea;
}
#flush-headingFour .ai-collection-svg svg {
    background: #ffedd5;
}
#flush-headingFour .ai-collection-svg svg path {
    fill: #ea580c;
}
#flush-headingFive .ai-collection-svg svg {
    background: #fee2e2;
}
#flush-headingFive .ai-collection-svg svg path {
    fill: #dc2626;
}
.accordion-button:focus {
    background: transparent;
    box-shadow: none;
}
section.industry-section.mobile-ver {
    display: none;
}
/* ---------------------------------------
Industry Section HTML CODE MOBILE VERSION
----------------------------------------- */
/* -----------------------
Client's Testimonial
----------------------- */
section.qs-client-wrapper {
    padding: 80px 0px;
}
section.qs-client-wrapper .row {
    align-items: center;
}
.qs-client-banner {
    position: relative;
}
.qs-client-banner .qs-client-pattern {
    position: absolute;
    bottom: -50px;
    left: -50px;
    z-index: -1;
}
.qs-client-post img {
    border-radius: 12px;
    box-shadow: 0px 5px 19px #c3b9b87a;
}
.qs-client-content {
    position: relative;
}
.qs-client-content svg {
    transform: rotate(180deg);
    position: absolute;
    right: 0;
    bottom: 0;
}
.qs-client-content h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}
.qs-client-content p {
    font-size: 16px;
    margin-bottom: 40px;
}
.qs-client-content h2 img {
    max-width: 120px;
}
.qs-client-content a {
    background: #2a85ff;
    color: #FFF;
    font-size: 17px;
    padding: 10px 25px;
    border-radius: 40px;
    font-weight: 500;
    transition: 0.6s;
    text-decoration: none;
    display: inline-block;
}
.qs-client-content a:hover {
    background: #000;
}
.qs-client-content svg {
    opacity: 0.2;
}
/* .qs-client-content p b {
    color: #2a85ff;
} */
.qs-client-content p span {
    font-weight: 600;
    color: #2a85ff;
}
.qs-client-content ul li {
    padding-bottom: 10px;
    list-style: none;
    font-size: 16px;
}
.qs-client-content ul li svg {
    margin-right: 8px;
}
.qs-client-content h2 span {
    background: -webkit-linear-gradient(45deg, #4f46e5, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mark-post {
    position: absolute;
    left: -40px;
        animation: rotated 10s infinite linear;
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}
100% {
  -webkit-transform: rotate(
360deg);
  transform: rotate(
360deg);
}
}
.qs-client-text {
    position: absolute;
    top: 100px;
    left: 40px;
}
.qs-client-text img {
    max-width: 150px;
}
.qs-client-text p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
    text-transform: uppercase;
}
.qs-client-text span {
    font-size: 16px;
}

/* -----------------------
Client's Testimonial
----------------------- */
section.qs-client-second {
    padding: 60px 0px 0px;
}
section.qs-client-second .container {
    background: linear-gradient(180deg, #faf5ff, #d3f1ff);
    padding: 40px 40px 30px;
    border-radius: 20px;
    position: relative;
}
.qs-client-willScot {
    position: absolute;
    bottom: 0px;
    right: 0;
}
.qs-client-willScot img {
    max-width: 500px;
    border-radius: 0px 0px 20px 0px;
}


section.qs-client-third {
    padding: 80px 0px 0px;
}
section.qs-client-third .row {
    align-items: center;
}
.qs-client-third-story {
    background: radial-gradient(circle at 20% 40%, #e3f2ff 0%, #ffffff 100%);
    color: #000;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 14px;
}
.qs-client-third-content h2 {
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 42px;
}
.qs-client-third-content p {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.30px;
}
.qs-client-third-content h2 span {
    background: -webkit-linear-gradient(45deg, #4f46e5, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.qs-client-third-content a {
    background: #2a85ff;
    color: #FFF;
    font-size: 17px;
    padding: 10px 30px;
    border-radius: 40px;
    font-weight: 500;
    transition: 0.6s;
    text-decoration: none;
    display: inline-block;
    margin-top: 40px;
}
.qs-client-third-content a:hover {
    background: #000;
}
.elite-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.qs-client-third-right-cont svg {
    opacity: 0.3;
    margin-bottom: -30px;
}
.stat-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    padding: 22px 26px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
.stat-number {
    font-weight: 700;
    font-size: 18px;
    color: #0f172a;
}
.stat-label {
    font-size: 13px;
    color: #64748b;
}
.qs-client-third-right-cont {
    background: linear-gradient(180deg, #faf5ff, #d3f1ff);
    padding: 60px 60px 30px;
    border-radius: 20px;
}

.qs-client-banner-area .qs-client-texts p {
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}
.qs-client-joshua {
    margin-right: -60px;
    margin-bottom: -30px;
}
.qs-client-joshua img {
    border-radius: 20px;
}
.qs-client-banner-area.qs-client-wills-area .qs-client-joshua img {
    border-radius: 100px;
    max-width: 60px;
}
.qs-client-wills-area .qs-client-joshua {
    margin: 0;
}
.qs-client-banner-area.qs-client-wills-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qs-client-third-right-cont.qs-client-case-page {
    background: rgb(252, 252, 253,0.6);
    padding: 60px 60px 30px;
    border-radius: 20px;
    box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
}
/* -----------------------
CALL TO ACTION HTML CODE
----------------------- */
section.qs-call-act {
    padding-bottom: 60px;
}
section.qs-call-act .container {
    background: linear-gradient(180deg,#faf5ff,#d3f1ff);
    padding: 60px 60px 30px;
    border-radius: 20px;
}
section.qs-call-act .row {
    align-items: center;
}
.qs-call-act-dashboard {
    background: rgba(255,255,255,0.7);
    padding: 25px;
    border-radius: 20px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 0%, black 40%, transparent 100%);
}
.qs-call-act-dashboard img {
    border-radius: 20px;
}
.qs-call-act-area h2 {
    font-weight: 700;
    color: #000;
    text-transform: capitalize;
}
.qs-call-act-area p {
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}
.qs-call-act-area a {
    text-decoration: none;
    background: #2a85ff;
    color: #FFF;
    font-size: 17px;
    padding: 12px 25px;
    border-radius: 40px;
    font-weight: 500;
    transition: 0.6s;
    display: inline-block;
}
.qs-call-act-area a:hover {
    background: #000;
}
/* -----------------------
CALL TO ACTION HTML CODE
----------------------- */
/* -----------------------
Why Quick Receivable?
----------------------- */
section.qs-why-quick-wrapper {
    padding-bottom: 40px;
}
.qs-why-quick-box {
    background: #FCFCFD;
    border: 2px solid #fff;
    box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
    border-radius: 10px;
    padding: 25px 25px 10px;
    height: 100%;
    transition: 0.6s;
}    
.qs-why-quick-box:hover {
    border: 2px solid rgb(42, 133, 255,0.6);
}
.qs-why-quick-box h3 {
    font-size: 22px;
}
.qs-why-quick-box svg {
    justify-items: start;
    background: #dbeafe;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: 0.6s;
}
.qs-why-quick-box:hover svg {
    transform: scale(1.2);
}
.qs-why-quick-box p span {
    font-weight: 700;
}
.row > .col-lg-6:nth-child(2) .qs-why-quick-box svg {
    background: #dcfce7;
}
.row > .col-lg-6:nth-child(3) .qs-why-quick-box svg {
    background: #f3e8ff;
}
.row > .col-lg-6:nth-child(4) .qs-why-quick-box svg {
    background: #ffedd5;
}
.qs-why-quick-box.bottom-why-qs-text {
    text-align: center;
    background: radial-gradient(circle at 20% 40%, #e3f2ff 0%, #ffffff 100%);
}
/* -----------------------
Why Quick Receivable?
----------------------- */
/* -----------------------
About Quick Receivable?
----------------------- */
section.qs-about-quick-wrapper {
    padding: 60px 0px;
}
section.qs-about-quick-wrapper .row {
    align-items: center;
}
.qs-about-quick-content ul {
    margin-bottom: 10px;
}
.qs-about-quick-content ul li {
    list-style: none;
    font-size: 16px;
    padding-bottom: 10px;
}
.qs-about-quick-banner {
    background: linear-gradient(180deg,#faf5ff,#d3f1ff);
    padding: 40px;
    border-radius: 20px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 0%, black 80%, transparent 100%);
}
/* -----------------------
About Quick Receivable?
----------------------- */
/* -----------------------
Flexible Enterprise Pricing Designed for Your Scale
----------------------- */
section.qs-pricing-wrapper {
    margin-bottom: 60px;
}
section.qs-pricing-wrapper .row {
    align-items: center;
}
section.qs-pricing-wrapper .container {
    background: linear-gradient(180deg,#faf5ff,#d3f1ff);
    padding: 50px;
    border-radius: 20px;
}
.qs-pricing-content p {
    font-size: 20px;
}
.qs-pricing-content ul {
    margin-bottom: 20px;
}
.qs-pricing-content ul li {
    list-style: none;
    padding-bottom: 10px;
    position: relative;
    padding-left: 20px;
}
.qs-pricing-content ul li svg {
    position: absolute;
    left: 0;
    top: 4px;
}
.qs-pricing-content a {
    background: #2a85ff;
    color: #FFF;
    font-size: 17px;
    padding: 12px 25px;
    border-radius: 40px;
    font-weight: 500;
    transition: 0.6s;
    text-decoration: none;
    display: inline-block;
}
.qs-pricing-content a:hover {
    background: #000;
}
.pricing-banner {
    /* background: rgba(255, 255, 255, 0.7); */
    /* padding: 20px; */
    border-radius: 20px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 0%, black 80%, transparent 100%);
}
.pricing-banner img {
    border-radius: 20px;
    border: 1px solid #ccc;
}

/* Quick Receivable uses transparent SaaS subscription model */
.chart {
    position: relative;
    display: flex;
    gap: 40px;
    align-items: baseline;
}
.qs-base-platform {
    width: 140px;
    position: relative;
}
.bar {
    transform: scaleY(0);
    transform-origin: bottom;
    animation: grow 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.qs-base-platform .bar.bar1 {
    height: 340px;
    border-radius: 20px 20px 0px 0px;
    background: #10b981;
    animation-delay: 0.2s;
}
.qs-base-platform .bar.bar2 {
    height: 280px;
    border-radius: 20px 20px 0px 0px;
    background: #3b82f6;
    animation-delay: 0.5s;
}
.qs-base-platform .bar.bar3 {
    height: 250px;
    border-radius: 20px 20px 0px 0px;
    background: #8b5cf6; 
    animation-delay: 0.8s;
}
.qs-base-platform .bar.bar4 {
    height: 320px;
    border-radius: 20px 20px 0px 0px;
    background: #ea580c;
    animation-delay: 1.2s;
}
.qs-base-platform .label {
    position: absolute;
    bottom: 40px;
    text-align: center;
    color: #FFF;
}

@keyframes grow {
to { transform: scaleY(1); }
}

.qs-base-platform .qs-bar-user-text {
    animation: fadeUp 0.8s ease-out forwards;
    animation-delay: inherit;
    position: absolute;
    top: 10px !important;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: #FFF;
}
@keyframes fadeUp {
to { opacity: 1; top: -60px; }
}

/* Quick Receivable uses transparent SaaS subscription model */


/* -----------------------
Flexible Enterprise Pricing Designed for Your Scale
----------------------- */
/* -----------------------
Pricing Calculator Section
----------------------- */
section.qs-pricing-calculator-wrapper {
    background: radial-gradient(circle at 20% 40%, #e3f2ff 0%, #ffffff 100%);
    padding: 60px 0px;
    position: relative;
    z-index: 9;
}
section.qs-pricing-calculator-wrapper::after {
    position: absolute;
    content: '';
    background: url('../images/qs-bg.svg');
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
    /* mask-image: linear-gradient(180deg, #fff 50%, transparent 100%); */
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 15%, black 75%, transparent 100%);
    mask-image: linear-gradient(to top, transparent 0%, black 15%, black 75%, transparent 100%);
}
section.qs-pricing-calculator-wrapper .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* gap: 2.5rem; */
    background: linear-gradient(180deg,#faf5ff,#d3f1ff);
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.6);
}
section.qs-pricing-calculator-wrapper .input-group {
    margin-bottom: 1.5rem;
}
section.qs-pricing-calculator-wrapper label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-700);
}
section.qs-pricing-calculator-wrapper input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px !important;
    font-size: 1.1rem;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
section.qs-pricing-calculator-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}
.results {
    padding: 0px;
    text-align: center;
}
.calculator-body .row {
    align-items: center;
}
.results h3 {
    text-align: center;
    margin-bottom: 40px;
}
/* .result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    max-width: 350px;
    margin: 0 auto;
    text-align: center;
} */
.result-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0 auto;
}
.result-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    width: 250px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* .result-card {
    background: rgba(255,255,255,0.7);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    margin-bottom: 10px;
} */
.result-card:hover {
    transform: translateY(-4px);
}
.result-card h3 {
    margin: 0 0 0.75rem;
    font-size: 17px;
    letter-spacing: 0.5px;
}
.result-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2a85ff;
}
.result-card svg {
    margin-bottom: 10px;
}
.result-value.currency::before { content: "$"; }
.result-value.percent::after { content: "%"; }
@media (max-width: 640px) {
    .calculator-body { padding: 2rem 1rem; }
    .result-value { font-size: 1.7rem; }
}
section.qs-pricing-calculator-wrapper .grid button#calculateBtn {
    background: #2a85ff;
    color: #FFF;
    font-size: 18px;
    padding: 12px 25px;
    border-radius: 40px;
    font-weight: 500;
    transition: 0.6s;
}
section.qs-pricing-calculator-wrapper .grid button#calculateBtn:hover {
    background: #000;
}
/* -----------------------
Pricing Calculator Section
----------------------- */
/* -----------------------
key products area Section
----------------------- */
section.qs-key-products-wrapper {
    padding: 60px 0px;
}
.qs-key-products-area {
    background: linear-gradient(180deg,#faf5ff,#d3f1ff);
    padding: 50px 30px 30px;
    border-radius: 20px;
    height: 100%;
    text-align: center;
    position: relative;
}
.qs-key-products-area::after {
    position: absolute;
    content: '';
    background: url('../images/dot.svg');
    background-repeat: no-repeat;
    width: 40px;
    height: 8px;
    top: 20px;
    left: 30px;
}
.qs-key-products-banners {
    margin-bottom: 10px;
}
.qs-key-products-banners img {
    background: rgba(255, 255, 255, 0.7);
    padding: 25px;
    border-radius: 20px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 0%, black 60%, transparent 140%);
    /* min-height: 250px; */
    object-fit: contain;
    border: 2px solid #fff;
    box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
}
.qs-key-products-area h3 {
    font-size: 20px;
}
.qs-key-products-area p {
    margin: 0;
}
/* -----------------------
key products area Section
----------------------- */
/* -----------------------
Features That Power Quick Receivable
----------------------- */
section.qs-features-power-wrapper {
    /* background: linear-gradient(180deg,#faf5ff,#d3f1ff); */
    padding: 60px 0px 60px;
}
.qs-features-power-area h2 span {
    background: -webkit-linear-gradient(45deg, #4f46e5, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.qs-features-power-area img {
    margin-bottom: 30px;
    text-align: center;
}
.qs-features-power-area {
    position: sticky;
    top: 130px;
    scroll-behavior: smooth;
}
.qs-features-power-text {
    background: linear-gradient(180deg,#faf5ff,#d3f1ff);
    border: 2px solid #fff;
    box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
}
.qs-features-power-text svg {
    background: #FFF;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 2px solid #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.qs-features-power-text h3 {
    font-size: 22px;
}
.qs-features-power-text p {
    margin: 0;
}

/* -----------------------
Features That Power Quick Receivable
----------------------- */
/* -----------------------
Footer Quick Receivable
----------------------- */
section.qs-footer-wrapper {
    background: linear-gradient(180deg,#faf5ff,#d3f1ff);
    /* border-radius: 60px 60px 0px 0px; */
    padding: 60px 0px 30px;
    border-top: 2px solid #FFF;
    box-shadow: 0px 10px 30px 20px rgba(46, 35, 94, 0.1);
}
.qs-footer-logo img {
    margin-bottom: 30px;
}
.qs-footer-logo p {
    font-size: 20px;
    font-weight: 400;
}
.qs-footer-info-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
}
.qs-footer-info ul li {
    list-style: none;
    padding-bottom: 20px;
    float: left;
    width: 40%;
    transition: 0.6s;
}
.qs-footer-info ul li a {
    text-decoration: none;
    color: #000;
    transition: 0.6s;
}
.qs-footer-info ul li a:hover {
    color: #2a85ff;
}
.qs-footer-info ul li svg {
    margin-right: 6px;
    margin-top: -2px;
}
.qs-footer-info ul li:hover svg path {
    fill: #2a85ff;
}
.qs-footer-find-wrapper ul li {
    list-style: none;
    padding-bottom: 30px;
    position: relative;
    padding-left: 40px;
}
.qs-footer-find-wrapper ul li svg {
    background: #2a85ff;
    padding: 6px;
    border-radius: 6px;
    position: absolute;
    left: 0;
    top: -4px;
}
.qs-footer-find-wrapper ul li a {
    color: #000;
    text-decoration: none;
}
.qs-footer-find-wrapper ul li a:hover {
    color: #2a85ff;
}
.footer-copy-right {
    text-align: center;
    background: #2a85ff;
    padding: 15px 15px;
}
.footer-copy-right p {
    font-size: 16px;
    color: #FFF;
    font-weight: 500;
    margin: 0;
}
.footer-copy-right p a {
    color: #FFF;
    font-weight: 700;
    text-decoration: none;
} 
/* -----------------------
Footer Quick Receivable
----------------------- */
/* -----------------------
AI Powered AR Agents
----------------------- */
section.qs-ar-agents-sec .d-flex {
    align-items: unset;
}
.qs-ar-agent-svg {
    display: flex;
    align-items: center;
    gap: 20px;
}
.qs-ar-agent-svg svg {
    background: #dbeafe;
    padding: 15px;
    border-radius: 10px;
}
.qs-ar-agent-svg h3 {
    margin: 0;
}

/* -----------------------
AI Powered AR Agents
----------------------- */




.highlighted-section {
    outline: 2px solid #3f20fb;
    background-color: rgba(63, 32, 251, 0.1);
}

.edit-button {
    position: absolute;
    z-index: 1000;
}

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

html,
body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

*,
::before,
::after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style: ;
}

::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style: ;
}

/* Combined and cleaned Tailwind expanded CSS for both sections */
*,
::after,
::before {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}

::after,
::before {
    --tw-content: "";
}

:host,
html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    line-height: inherit;
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
}

abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

/* h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
} */

a {
    color: inherit;
    text-decoration: inherit;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
pre,
samp {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

button,
select {
    text-transform: none;
}

button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]) {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none;
}

:-moz-focusring {
    outline: auto;
}

:-moz-ui-invalid {
    box-shadow: none;
}

progress {
    vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

summary {
    display: list-item;
}

/* blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
    margin: 0;
} */

fieldset {
    margin: 0;
    padding: 0;
}

legend {
    padding: 0;
}

menu,
ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

dialog {
    padding: 0;
}

textarea {
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    opacity: 1;
    color: #9ca3af;
}

[role="button"],
button {
    cursor: pointer;
}

:disabled {
    cursor: default;
}

/* audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
    display: block;
    vertical-align: middle;
} */

img,
video {
    max-width: 100%;
    height: auto;
}

[hidden]:where(:not([hidden="until-found"])) {
    display: none;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.-bottom-4 {
    bottom: -1rem;
}

.-left-4 {
    left: -1rem;
}

.-right-4 {
    right: -1rem;
}

.-top-4 {
    top: -1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-12 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-12 {
    margin-top: 3rem;
}

.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.h-10 {
    height: 2.5rem;
}

.h-12 {
    height: 3rem;
}

.h-16 {
    height: 4rem;
}

.h-20 {
    height: 5rem;
}

.h-24 {
    height: 6rem;
}

.h-8 {
    height: 2rem;
}

.h-full {
    height: 100%;
}

.w-10 {
    width: 2.5rem;
}
.w-12 {
    width: 3rem;
}

.w-16 {
    width: 4rem;
}

.w-20 {
    width: 5rem;
}

.w-24 {
    width: 6rem;
}

.w-8 {
    width: 2rem;
}

.w-full {
    width: 100%;
}

.w-px {
    width: 1px;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-7xl {
    max-width: 1320px;
}

.flex-1 {
    flex: 1 1 0%;
}

.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.cursor-pointer {
    cursor: pointer;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flex-col {
    flex-direction: column;
}

.items-start {
    align-items: flex-start;
}

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

.justify-center {
    justify-content: center;
}

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

.gap-16 {
    gap: 4rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.space-x-12 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(3rem * var(--tw-space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-3 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--tw-space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-6 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-8 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.space-y-8 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-y-auto {
    overflow-y: auto;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-b {
    border-bottom-width: 1px;
}

.border-t {
    border-top-width: 1px;
}

.border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}

.border-primary {
    --tw-border-opacity: 1;
    border-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
}

.border-slate-100 {
    --tw-border-opacity: 1;
    border-color: rgb(241 245 249 / var(--tw-border-opacity, 1));
}

.border-slate-200 {
    --tw-border-opacity: 1;
    border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}

.border-slate-200\/60 {
    border-color: rgb(226 232 240 / 0.6);
}

.border-slate-800 {
    --tw-border-opacity: 1;
    border-color: rgb(30 41 59 / var(--tw-border-opacity, 1));
}

.bg-blue-50 {
    --tw-bg-opacity: 1;
    /* background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1)); */
}

.bg-blue-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}

.bg-green-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}

.bg-green-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}

.bg-gray-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

.bg-orange-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
}

.bg-orange-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
}

.bg-primary {
    --tw-bg-opacity: 1;
    background-color: rgb(30 64 175 / var(--tw-bg-opacity, 1));
}

.bg-primary\/10 {
    background-color: rgb(30 64 175 / 0.1);
}

.bg-primary\/5 {
    background-color: rgb(30 64 175 / 0.05);
}

.bg-purple-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1));
}

.bg-purple-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1));
}

.bg-red-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}

.bg-red-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}

.bg-slate-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}

.bg-slate-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
}

.bg-slate-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
}

.bg-teal-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(204 251 241 / var(--tw-bg-opacity, 1));
}

.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-white\/80 {
    background-color: rgb(255 255 255 / 0.8);
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-blue-600 {
    --tw-gradient-from: #2563eb var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-green-400 {
    --tw-gradient-from: #4ade80 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(74 222 128 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-slate-50 {
    --tw-gradient-from: #f8fafc var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(248 250 252 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-yellow-400 {
    --tw-gradient-from: #facc15 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(250 204 21 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-blue-500 {
    --tw-gradient-to: #3b82f6 var(--tw-gradient-to-position);
}

.to-blue-50 {
    --tw-gradient-to: #eff6ff var(--tw-gradient-to-position);
}

.to-green-50 {
    --tw-gradient-to: #f0fdf4 var(--tw-gradient-to-position);
}

.to-indigo-50 {
    --tw-gradient-to: #eef2ff var(--tw-gradient-to-position);
}

.to-indigo-600 {
    --tw-gradient-to: #4f46e5 var(--tw-gradient-to-position);
}

.to-orange-50 {
    --tw-gradient-to: #fff7ed var(--tw-gradient-to-position);
}

.to-orange-500 {
    --tw-gradient-to: #f97316 var(--tw-gradient-to-position);
}

.to-purple-50 {
    --tw-gradient-to: #faf5ff var(--tw-gradient-to-position);
}

.to-red-50 {
    --tw-gradient-to: #fef2f2 var(--tw-gradient-to-position);
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pt-8 {
    padding-top: 2rem;
}

.text-left {
    text-align: left;
}

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

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-sm {
    font-size: 17px;
    line-height: 1.25rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-xs {
    font-size: 14px;
    line-height: 1rem;
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 500;
}

.leading-relaxed {
    line-height: 1.625;
}

.leading-tight {
    line-height: 1.25;
}

.text-blue-600 {
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}

.text-blue-700 {
    --tw-text-opacity: 1;
    color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}

.text-blue-800 {
    --tw-text-opacity: 1;
    color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}

.text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

.text-gray-600 {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

.text-gray-700 {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-900 {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
    margin: 0;
}
section#ai-agents-section h3 {
    font-size: 20px;
}

.text-green-500 {
    --tw-text-opacity: 1;
    color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}

.text-green-600 {
    --tw-text-opacity: 1;
    color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}

.text-green-700 {
    --tw-text-opacity: 1;
    color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}

.text-green-800 {
    --tw-text-opacity: 1;
    color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}

.text-indigo-600 {
    --tw-text-opacity: 1;
    color: rgb(79 70 229 / var(--tw-text-opacity, 1));
}

.text-orange-600 {
    --tw-text-opacity: 1;
    color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}

.text-primary {
    --tw-text-opacity: 1;
    color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}

.text-purple-600 {
    --tw-text-opacity: 1;
    color: rgb(147 51 234 / var(--tw-text-opacity, 1));
}

.text-red-600 {
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}

.text-red-700 {
    --tw-text-opacity: 1;
    color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}

.text-red-800 {
    --tw-text-opacity: 1;
    color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}

.text-slate-400 {
    --tw-text-opacity: 1;
    color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}

.text-slate-600 {
    --tw-text-opacity: 1;
    color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}

.text-slate-700 {
    --tw-text-opacity: 1;
    color: rgb(51 65 85 / var(--tw-text-opacity, 1));
}

.text-slate-900 {
    --tw-text-opacity: 1;
    color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}

.text-teal-600 {
    --tw-text-opacity: 1;
    color: rgb(13 148 136 / var(--tw-text-opacity, 1));
}

.text-transparent {
    color: transparent;
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.opacity-60 {
    opacity: 0.6;
}

.shadow-2xl {
    --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-blue-500\/25 {
    --tw-shadow-color: rgb(59 130 246 / 0.25);
    --tw-shadow: var(--tw-shadow-colored);
}

.shadow-slate-900\/10 {
    --tw-shadow-color: rgb(15 23 42 / 0.1);
    --tw-shadow: var(--tw-shadow-colored);
}

.backdrop-blur-md {
    --tw-backdrop-blur: blur(12px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-colors {
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

div#hero-text .flex.flex-col.sm\:flex-row.gap-4 a {
    display: inline-block;
}

.hover\:-translate-y-1:hover {
    --tw-translate-y: -0.25rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:border-blue-200:hover {
    --tw-border-opacity: 1;
    border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}

.hover\:border-green-200:hover {
    --tw-border-opacity: 1;
    border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}

.hover\:border-indigo-200:hover {
    --tw-border-opacity: 1;
    border-color: rgb(199 210 254 / var(--tw-border-opacity, 1));
}

.hover\:border-orange-200:hover {
--tw-border-opacity: 1;
border-color: rgb(254 215 170 / var(--tw-border-opacity, 1));
}

.hover\:border-primary:hover {
--tw-border-opacity: 1;
border-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
}

.hover\:border-purple-200:hover {
--tw-border-opacity: 1;
border-color: rgb(233 213 255 / var(--tw-border-opacity, 1));
}

.hover\:border-red-200:hover {
--tw-border-opacity: 1;
border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}

.hover\:border-slate-300:hover {
--tw-border-opacity: 1;
border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
}

.hover\:bg-blue-700:hover {
--tw-bg-opacity: 1;
background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}

.hover\:bg-primary\/5:hover {
background-color: rgb(30 64 175 / 0.05);
}

.hover\:text-primary:hover {
--tw-text-opacity: 1;
color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}

.hover\:text-slate-900:hover {
--tw-text-opacity: 1;
color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}

.hover\:text-white:hover {
--tw-text-opacity: 1;
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.hover\:shadow-lg:hover {
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-xl:hover {
--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-blue-500\/25:hover {
--tw-shadow-color: rgb(59 130 246 / 0.25);
--tw-shadow: var(--tw-shadow-colored);
}

.group:hover .group-hover\:scale-110 {
--tw-scale-x: 1.1;
--tw-scale-y: 1.1;
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@media (min-width: 640px) {
.sm\:flex-row {
    flex-direction: row;
}
}

@media (min-width: 768px) {
.md\:flex {
    display: flex;
}

.md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

@media (min-width: 1024px) {
.lg\:col-span-1 {
    grid-column: span 1 / span 1;
}

.lg\:col-span-2 {
    grid-column: span 2 / span 2;
}

.lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lg\:py-32 {
    padding-top: 60px;
    padding-bottom: 60px;
}
            
.lg\:text-6xl {
    font-size: 44px;
    line-height: 1;
}
}

/* Font Awesome CSS (assuming it's included or pasted) */
:root {
    --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Solid";
    --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Regular";
    --fa-font-light: normal 300 1em/1 "Font Awesome 6 Light";
    --fa-font-thin: normal 100 1em/1 "Font Awesome 6 Thin";
    --fa-font-duotone: normal 900 1em/1 "Font Awesome 6 Duotone";
    --fa-font-sharp-solid: normal 900 1em/1 "Font Awesome 6 Sharp";
    --fa-font-sharp-regular: normal 400 1em/1 "Font Awesome 6 Sharp";
    --fa-font-sharp-light: normal 300 1em/1 "Font Awesome 6 Sharp";
    --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}

svg:not(:host).svg-inline--fa,
svg:not(:root).svg-inline--fa {
    overflow: visible;
    box-sizing: content-box;
}

.svg-inline--fa {
    display: var(--fa-display, inline-block);
    height: 1em;
    overflow: visible;
    vertical-align: -.125em;
}

.svg-inline--fa.fa-2xs {
    vertical-align: .1em;
}

.svg-inline--fa.fa-xs {
    vertical-align: 0;
}

.svg-inline--fa.fa-sm {
    vertical-align: -.0714285705em;
}

.svg-inline--fa.fa-lg {
    vertical-align: -.2em;
}

.svg-inline--fa.fa-xl {
    vertical-align: -.25em;
}

.svg-inline--fa.fa-2xl {
    vertical-align: -.3125em;
}

.svg-inline--fa.fa-pull-left {
    margin-right: var(--fa-pull-margin, .3em);
    width: auto;
}

.svg-inline--fa.fa-pull-right {
    margin-left: var(--fa-pull-margin, .3em);
    width: auto;
}

.svg-inline--fa.fa-li {
    width: var(--fa-li-width, 2em);
    top: .25em;
}

.svg-inline--fa.fa-fw {
    width: var(--fa-fw-width, 1.25em);
}

.fa-layers svg.svg-inline--fa {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}

.fa-layers-counter,
.fa-layers-text {
    display: inline-block;
    position: absolute;
    text-align: center;
}

.fa-layers {
    display: inline-block;
    height: 1em;
    position: relative;
    text-align: center;
    vertical-align: -.125em;
    width: 1em;
}

.fa-layers svg.svg-inline--fa {
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

.fa-layers-text {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

.fa-layers-counter {
    background-color: var(--fa-counter-background-color, #ff253a);
    border-radius: var(--fa-counter-border-radius, 1em);
    box-sizing: border-box;
    color: var(--fa-inverse, #fff);
    line-height: var(--fa-counter-line-height, 1);
    max-width: var(--fa-counter-max-width, 5em);
    min-width: var(--fa-counter-min-width, 1.5em);
    overflow: hidden;
    padding: var(--fa-counter-padding, .25em .5em);
    right: var(--fa-right, 0);
    text-overflow: ellipsis;
    top: var(--fa-top, 0);
    -webkit-transform: scale(var(--fa-counter-scale, .25));
    transform: scale(var(--fa-counter-scale, .25));
    -webkit-transform-origin: top right;
    transform-origin: top right;
}

.fa-layers-bottom-right {
    bottom: var(--fa-bottom, 0);
    right: var(--fa-right, 0);
    top: auto;
    -webkit-transform: scale(var(--fa-layers-scale, .25));
    transform: scale(var(--fa-layers-scale, .25));
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
}

.fa-layers-bottom-left {
    bottom: var(--fa-bottom, 0);
    left: var(--fa-left, 0);
    right: auto;
    top: auto;
    -webkit-transform: scale(var(--fa-layers-scale, .25));
    transform: scale(var(--fa-layers-scale, .25));
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

.fa-layers-top-right {
    top: var(--fa-top, 0);
    right: var(--fa-right, 0);
    -webkit-transform: scale(var(--fa-layers-scale, .25));
    transform: scale(var(--fa-layers-scale, .25));
    -webkit-transform-origin: top right;
    transform-origin: top right;
}

.fa-layers-top-left {
    left: var(--fa-left, 0);
    right: auto;
    top: var(--fa-top, 0);
    -webkit-transform: scale(var(--fa-layers-scale, .25));
    transform: scale(var(--fa-layers-scale, .25));
    -webkit-transform-origin: top left;
    transform-origin: top left;
}

.fa-1x {
    font-size: 1em;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

.fa-4x {
    font-size: 4em;
}

.fa-5x {
    font-size: 5em;
}

.fa-6x {
    font-size: 6em;
}

.fa-7x {
    font-size: 7em;
}

.fa-8x {
    font-size: 8em;
}

.fa-9x {
    font-size: 9em;
}

.fa-10x {
    font-size: 10em;
}

.fa-2xs {
    font-size: .625em;
    line-height: .1em;
    vertical-align: .225em;
}

.fa-xs {
    font-size: .75em;
    line-height: .0833333337em;
    vertical-align: .125em;
}

.fa-sm {
    font-size: .875em;
    line-height: .0714285718em;
    vertical-align: .0535714295em;
}

.fa-lg {
    font-size: 1.25em;
    line-height: .05em;
    vertical-align: -.075em;
}

.fa-xl {
    font-size: 1.5em;
    line-height: .0416666682em;
    vertical-align: -.125em;
}

.fa-2xl {
    font-size: 2em;
    line-height: .03125em;
    vertical-align: -.1875em;
}

.fa-fw {
    text-align: center;
    width: 1.25em;
}

.fa-ul {
    list-style-type: none;
    margin-left: var(--fa-li-margin, 2.5em);
    padding-left: 0;
}

.fa-ul>li {
    position: relative;
}

.fa-li {
    left: calc(var(--fa-li-width, 2em) * -1);
    position: absolute;
    text-align: center;
    width: var(--fa-li-width, 2em);
    line-height: inherit;
}

.fa-border {
    border-color: var(--fa-border-color, #eee);
    border-radius: var(--fa-border-radius, .1em);
    border-style: var(--fa-border-style, solid);
    border-width: var(--fa-border-width, .08em);
    padding: var(--fa-border-padding, .2em .25em .15em);
}

.fa-pull-left {
    float: left;
    margin-right: var(--fa-pull-margin, .3em);
}

.fa-pull-right {
    float: right;
    margin-left: var(--fa-pull-margin, .3em);
}

.fa-beat {
    -webkit-animation-name: fa-beat;
    animation-name: fa-beat;
    -webkit-animation-delay: var(--fa-animation-delay, 0s);
    animation-delay: var(--fa-animation-delay, 0s);
    -webkit-animation-direction: var(--fa-animation-direction, normal);
    animation-direction: var(--fa-animation-direction, normal);
    -webkit-animation-duration: var(--fa-animation-duration, 1s);
    animation-duration: var(--fa-animation-duration, 1s);
    -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
    animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-bounce {
    -webkit-animation-name: fa-bounce;
    animation-name: fa-bounce;
    -webkit-animation-delay: var(--fa-animation-delay, 0s);
    animation-delay: var(--fa-animation-delay, 0s);
    -webkit-animation-direction: var(--fa-animation-direction, normal);
    animation-direction: var(--fa-animation-direction, normal);
    -webkit-animation-duration: var(--fa-animation-duration, 1s);
    animation-duration: var(--fa-animation-duration, 1s);
    -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(.28, .84, .42, 1));
    animation-timing-function: var(--fa-animation-timing, cubic-bezier(.28, .84, .42, 1));
}

.fa-fade {
    -webkit-animation-name: fa-fade;
    animation-name: fa-fade;
    -webkit-animation-delay: var(--fa-animation-delay, 0s);
    animation-delay: var(--fa-animation-delay, 0s);
    -webkit-animation-direction: var(--fa-animation-direction, normal);
    animation-direction: var(--fa-animation-direction, normal);
    -webkit-animation-duration: var(--fa-animation-duration, 1s);
    animation-duration: var(--fa-animation-duration, 1s);
    -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1));
    animation-timing-function: var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1));
}

.fa-beat-fade {
    -webkit-animation-name: fa-beat-fade;
    animation-name: fa-beat-fade;
    -webkit-animation-delay: var(--fa-animation-delay, 0s);
    animation-delay: var(--fa-animation-delay, 0s);
    -webkit-animation-direction: var(--fa-animation-direction, normal);
    animation-direction: var(--fa-animation-direction, normal);
    -webkit-animation-duration: var(--fa-animation-duration, 1s);
    animation-duration: var(--fa-animation-duration, 1s);
    -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1));
    animation-timing-function: var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1));
}

.fa-flip {
    -webkit-animation-name: fa-flip;
    animation-name: fa-flip;
    -webkit-animation-delay: var(--fa-animation-delay, 0s);
    animation-delay: var(--fa-animation-delay, 0s);
    -webkit-animation-direction: var(--fa-animation-direction, normal);
    animation-direction: var(--fa-animation-direction, normal);
    -webkit-animation-duration: var(--fa-animation-duration, 1s);
    animation-duration: var(--fa-animation-duration, 1s);
    -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
    animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-shake {
    -webkit-animation-name: fa-shake;
    animation-name: fa-shake;
    -webkit-animation-delay: var(--fa-animation-delay, 0s);
    animation-delay: var(--fa-animation-delay, 0s);
    -webkit-animation-direction: var(--fa-animation-direction, normal);
    animation-direction: var(--fa-animation-direction, normal);
    -webkit-animation-duration: var(--fa-animation-duration, 1s);
    animation-duration: var(--fa-animation-duration, 1s);
    -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    -webkit-animation-timing-function: var(--fa-animation-timing, linear);
    animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin {
    -webkit-animation-name: fa-spin;
    animation-name: fa-spin;
    -webkit-animation-delay: var(--fa-animation-delay, 0s);
    animation-delay: var(--fa-animation-delay, 0s);
    -webkit-animation-direction: var(--fa-animation-direction, normal);
    animation-direction: var(--fa-animation-direction, normal);
    -webkit-animation-duration: var(--fa-animation-duration, 2s);
    animation-duration: var(--fa-animation-duration, 2s);
    -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    -webkit-animation-timing-function: var(--fa-animation-timing, linear);
    animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin-reverse {
    --fa-animation-direction: reverse;
}

.fa-pulse,
.fa-spin-pulse {
    -webkit-animation-name: fa-spin;
    animation-name: fa-spin;
    -webkit-animation-direction: var(--fa-animation-direction, normal);
    animation-direction: var(--fa-animation-direction, normal);
    -webkit-animation-duration: var(--fa-animation-duration, 1s);
    animation-duration: var(--fa-animation-duration, 1s);
    -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));
    animation-timing-function: var(--fa-animation-timing, steps(8));
}

@media (prefers-reduced-motion: reduce) {
    .fa-beat,
    .fa-beat-fade,
    .fa-bounce,
    .fa-fade,
    .fa-flip,
    .fa-pulse,
    .fa-shake,
    .fa-spin,
    .fa-spin-pulse {
        -webkit-animation-delay: -1ms;
        animation-delay: -1ms;
        -webkit-animation-duration: 1ms;
        animation-duration: 1ms;
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
        -webkit-transition-duration: 0s;
        transition-duration: 0s;
    }
}

@-webkit-keyframes fa-beat {
    0%,
    90% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    45% {
        -webkit-transform: scale(var(--fa-beat-scale, 1.25));
        transform: scale(var(--fa-beat-scale, 1.25));
    }
}

@keyframes fa-beat {
    0%,
    90% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    45% {
        -webkit-transform: scale(var(--fa-beat-scale, 1.25));
        transform: scale(var(--fa-beat-scale, 1.25));
    }
}

@-webkit-keyframes fa-bounce {
    0% {
        -webkit-transform: scale(1, 1) translateY(0);
        transform: scale(1, 1) translateY(0);
    }

    10% {
        -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, .9)) translateY(0);
        transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, .9)) translateY(0);
    }

    30% {
        -webkit-transform: scale(var(--fa-bounce-jump-scale-x, .9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em));
        transform: scale(var(--fa-bounce-jump-scale-x, .9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em));
    }

    50% {
        -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, .95)) translateY(0);
        transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, .95)) translateY(0);
    }

    57% {
        -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -.125em));
        transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -.125em));
    }

    64% {
        -webkit-transform: scale(1, 1) translateY(0);
        transform: scale(1, 1) translateY(0);
    }

    100% {
        -webkit-transform: scale(1, 1) translateY(0);
        transform: scale(1, 1) translateY(0);
    }
}

@keyframes fa-bounce {
    0% {
        -webkit-transform: scale(1, 1) translateY(0);
        transform: scale(1, 1) translateY(0);
    }

    10% {
        -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, .9)) translateY(0);
        transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, .9)) translateY(0);
    }

    30% {
        -webkit-transform: scale(var(--fa-bounce-jump-scale-x, .9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em));
        transform: scale(var(--fa-bounce-jump-scale-x, .9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em));
    }

    50% {
        -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, .95)) translateY(0);
        transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, .95)) translateY(0);
    }

    57% {
        -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -.125em));
        transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -.125em));
    }

    64% {
        -webkit-transform: scale(1, 1) translateY(0);
        transform: scale(1, 1) translateY(0);
    }

    100% {
        -webkit-transform: scale(1, 1) translateY(0);
        transform: scale(1, 1) translateY(0);
    }
}

@-webkit-keyframes fa-fade {
    50% {
        opacity: var(--fa-fade-opacity, .4);
    }
}

@keyframes fa-fade {
    50% {
        opacity: var(--fa-fade-opacity, .4);
    }
}

@-webkit-keyframes fa-beat-fade {
    0%,
    100% {
        opacity: var(--fa-beat-fade-opacity, .4);
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));
        transform: scale(var(--fa-beat-fade-scale, 1.125));
    }
}

@keyframes fa-beat-fade {
    0%,
    100% {
        opacity: var(--fa-beat-fade-opacity, .4);
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));
        transform: scale(var(--fa-beat-fade-scale, 1.125));
    }
}

@-webkit-keyframes fa-flip {
    50% {
        -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
        transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
    }
}

@keyframes fa-flip {
    50% {
        -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
        transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
    }
}

@-webkit-keyframes fa-shake {
    0% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }

    4% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    24%,
    8% {
        -webkit-transform: rotate(-18deg);
        transform: rotate(-18deg);
    }

    12%,
    28% {
        -webkit-transform: rotate(18deg);
        transform: rotate(18deg);
    }

    16% {
        -webkit-transform: rotate(-22deg);
        transform: rotate(-22deg);
    }

    20% {
        -webkit-transform: rotate(22deg);
        transform: rotate(22deg);
    }

    32% {
        -webkit-transform: rotate(-12deg);
        transform: rotate(-12deg);
    }

    36% {
        -webkit-transform: rotate(12deg);
        transform: rotate(12deg);
    }

    100%,
    40% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

@keyframes fa-shake {
    0% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }

    4% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    24%,
    8% {
        -webkit-transform: rotate(-18deg);
        transform: rotate(-18deg);
    }

    12%,
    28% {
        -webkit-transform: rotate(18deg);
        transform: rotate(18deg);
    }

    16% {
        -webkit-transform: rotate(-22deg);
        transform: rotate(-22deg);
    }

    20% {
        -webkit-transform: rotate(22deg);
        transform: rotate(22deg);
    }

    32% {
        -webkit-transform: rotate(-12deg);
        transform: rotate(-12deg);
    }

    36% {
        -webkit-transform: rotate(12deg);
        transform: rotate(12deg);
    }

    100%,
    40% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.fa-rotate-90 {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.fa-flip-vertical {
    -webkit-transform: scale(1, -1);
    transform: scale(1, -1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
    -webkit-transform: scale(-1, -1);
    transform: scale(-1, -1);
}

.fa-rotate-by {
    -webkit-transform: rotate(var(--fa-rotate-angle, none));
    transform: rotate(var(--fa-rotate-angle, none));
}

.fa-stack {
    display: inline-block;
    vertical-align: middle;
    height: 2em;
    position: relative;
    width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    z-index: var(--fa-stack-z-index, auto);
}

.svg-inline--fa.fa-stack-1x {
    height: 1em;
    width: 1.25em;
}

.svg-inline--fa.fa-stack-2x {
    height: 2em;
    width: 2.5em;
}

.fa-inverse {
    color: var(--fa-inverse, #fff);
}

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

.fa-sr-only-focusable:not(:focus),
.sr-only-focusable:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.svg-inline--fa .fa-primary {
    fill: var(--fa-primary-color, currentColor);
    opacity: var(--fa-primary-opacity, 1);
}

.svg-inline--fa .fa-secondary {
    fill: var(--fa-secondary-color, currentColor);
    opacity: var(--fa-secondary-opacity, .4);
}

.svg-inline--fa.fa-swap-opacity .fa-primary {
    opacity: var(--fa-secondary-opacity, .4);
}

.svg-inline--fa.fa-swap-opacity .fa-secondary {
    opacity: var(--fa-primary-opacity, 1);
}

.svg-inline--fa mask .fa-primary,
.svg-inline--fa mask .fa-secondary {
    fill: #000;
}

.fa-duotone.fa-inverse,
.fad.fa-inverse {
    color: var(--fa-inverse, #fff);
}

/* Additional responsive adjustments */
#ai-agents-section {
    height: auto; /* Remove fixed height for better mobile responsiveness */
    min-height: 400px; /* Optional min-height */
}

@media (max-width: 1023px) {
    #agent-list, #agent-details {
        width: 100%; /* Full width on mobile */
    }

    .agent-content {
        height: auto; /* Auto height on mobile */
    }
}
div#agent-list h4 {
    font-size: 16px;
    margin: 0;
}

.agent-card {
    text-align: center;
    cursor: pointer;
}
.agent-card  .w-12.h-12.bg-white.rounded-lg.flex.items-center.justify-center.mb-3.group-hover\:scale-110.transition-transform.duration-300 {
    text-align: center;
    margin: auto;
}
section.ai-collection-agent-wrapper .flex-1.overflow-y-auto.scroll-container.p-8 {
    padding: 0;
}
section.ai-collection-agent-wrapper .bg-red-50.rounded-lg.p-6 {
    margin-bottom: 30px;
}

section.ai-collection-agent-wrapper {
    display: none;
}

div#hero-text svg {
    animation: zoom-in-zoom-out 3s ease-out infinite;
}
/* @keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.5, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
} */



/* section.ai-collection-agent-wrapper .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg) !important;
}
section.ai-collection-agent-wrapper .accordion-button::after {
    transform: rotate(0deg) !important;
} */


/* =======================================
AI Collection Agents Right Side
======================================= */
section#hero-section {
    background: radial-gradient(circle at 20% 40%, #e3f2ff 0%, #ffffff 100%);
    padding: 70px 0px;
}
section#hero-section .row {
    align-items: center;
}
.right-side-ai-agent-wrapper .row {
    align-items: center;
}
.qr-agents-circle {
    background: #FFF;
    border: 13px solid #e5e7eb;
    padding: 0px;
    border-radius: 100%;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    margin: 10px;
    position: relative;
}
.qr-agents-circle svg {
    position: absolute;
    top: 30px;
    animation: zoom-in-zoom-out 3s ease-out infinite;
}
.qr-agents-titles {
    margin-top: 30px;
}
.main-dunning-box {
    background: #FFF;
    text-align: right;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 60px;
    cursor: pointer;
    border: 1px solid #2b60ea69;
}
.main-dunning-content {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 55px;
    justify-content: end;
}
.main-dunning-icon {
    /* background: #FFF; */
    width: 50px;
    line-height: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    text-align: center;
    vertical-align: middle;
    position: absolute;
    right: -10px;
}
.main-right-agent-wrapper .main-dunning-box {
    text-align: left;
}
.main-right-agent-wrapper .main-dunning-box .main-dunning-icon {
    position: absolute;
    left: -10px;
}
.main-right-agent-wrapper .main-dunning-box .main-dunning-content {
    padding-right: 0;
    padding-left: 55px;
    justify-content: left;
}
.qr-agents-title-box {
    margin: 0px auto;
    text-align: center;
    display: table;
    border: 1px dashed #484ce66e;
    /* background: #FFF; */
    border-radius: 100%;
}
.dunning-title {
    font-size: 16px;
    font-weight: 500;
    width: 100%;
}
.main-dunning-icon i {
    font-size: 20px;
}


section.ai-collection-agent-wrapper .container {
    background: #FFF;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 2px 6px 6px -2px rgba(0,0,0,0.1);
}
.qs-features-power-wrapper {
    background: linear-gradient(180deg,#faf5ff,#d3f1ff);
}
.qs-features-power-wrapper .qs-comparison-title {
    margin-bottom: 20px;
}


@media screen and (max-width:1400px) {
.qr-agents-circle {
    width: 160px;
    height: 160px;
    font-size: 19px;
}
.main-dunning-icon {
    width: 50px;
    line-height: 50px;
    height: 50px;
}
.main-dunning-content {
    padding-right: 60px;
}
.main-right-agent-wrapper .main-dunning-box .main-dunning-content {
    padding-left: 60px;
}
.dunning-title br {
    display: none;
}

}
@media screen and (max-width: 1200px) { 

.qr-agents-circle {
    width: 130px;
    height: 130px;
    font-size: 16px;
}
.qr-agents-titles {
    margin-top: 0px;
}
.qr-agents-circle svg {
    display: none;
}
.qr-agents-circle svg {
    top: 10px !important;
}

}



@media screen and (max-width:992px) { 
main#main-content {
    display: none;
} 
section.ai-collection-agent-wrapper {
    display: block;
}    
.right-side-ai-agent-wrapper {
    display: none;
}


}

@media screen and (max-width: 768px) { 
/* .accordion-body {
    max-height: 40vh;
    overflow-y: auto;
} */

.ai-agent-main-wrapper-top {
    display: none !important;
}
.w-px.h-12.bg-slate-200 {
    display: none;
}
div#hero-text .text-center {
    margin-left: 0;
}
section.ai-collection-agent-wrapper {
    display: block;
}
section.ai-collection-agent-wrapper .container {
    padding: 20px;
}

}
@media (max-width: 575px) { 
 div#hero-visual {
    display: none;
} 
.py-20 {
    padding-top: 3rem;
    padding-bottom: 0;
}
.p-8 {
    padding: 20px;
}
section.what-receivable-sec {
    padding: 0;
}
div#hero-text .flex {
    display: grid;
}
.agent-card {
    padding: 15px !important;
    margin-bottom: 20px;
}
.grid {
    display: block;
}
div#agent-details {
    margin-top: 30px;
}
/* .w-16.h-16.bg-blue-100.rounded-xl.flex.items-center.justify-center {
    display: none;
} */
section#hero-section button.bg-gradient-to-r {
    width: 100%;
} 
section#hero-section button.bg-white.text-slate-700 {
    width: 100%;
}
section#hero-section {
    padding: 60px 0px 20px;
}
.text-5xl {
    font-size: 2rem;
}
section.ai-collection-agent-wrapper .container {
    padding: 0 10px;
    background: transparent;
    box-shadow: none;
}

}
/* =======================================
AI Collection Agents Right Side
======================================= */
/* =======================================
Case Study Page CSS
======================================= */
section.qs-case-study-main-wrapper {
    padding: 150px 0px 70px;
    background: linear-gradient(180deg,#faf5ff,#d3f1ff);
    position: relative;
    z-index: 9;
}
section.qs-case-study-main-wrapper .row {
    align-items: center;
}
section.qs-case-study-main-wrapper::after {
    position: absolute;
    content: '';
    background: url('../images/qs-bg.svg');
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
    /* mask-image: linear-gradient(180deg, #fff 50%, transparent 100%); */
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 15%, black 75%, transparent 100%);
    mask-image: linear-gradient(to top, transparent 0%, black 15%, black 75%, transparent 100%);
}
.qs-case-study-title {
    font-size: 20px;
    font-weight: 600;
    background: -webkit-linear-gradient(45deg, #4f46e5, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}
.qs-case-study-title::after {
    position: absolute;
    content: '';
    background: #000;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 6px;
    border-radius: 10px;
}
.qs-case-study-text {
    /* text-align: center; */
}
.case-study-joshua {
    background: rgb(252, 252, 253, 0.6);
    border: 2px solid #fff;
    box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
    border-radius: 10px;
}
.case-study-joshua img {
    border-radius: 10px;
    padding: 20px 0px 0px 30px;
}
.qs-case-study-text h1 {
    margin-bottom: 20px;
    font-weight: 700;
}
.qs-case-study-text p {
    font-size: 18px;
}
/* Business Challenge */

section.qs-study-business-wrapper {
    padding: 60px 0px;
}
.qs-study-business-area {
    background: linear-gradient(180deg,#faf5ff,#d3f1ff);
    padding: 30px;
    height: 100%;
    border-radius: 15px;
}
.qs-study-business-area h3 {
    font-size: 20px;
}
.qs-study-business-area p {
    margin: 0;
}
.qs-study-business-text {
    text-align: center;
    font-size: 18px;
    background: #f6f6f6b3;
    border: 2px solid #fff;
    box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
    border-radius: 10px;
    padding: 25px 25px 10px;
}
.qs-study-business-area svg {
    background: #FFF;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px solid #fff;
    box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
}
/* Business Challenge */
/* Solution Overview */
section.qs-solution-wrapper {
    background: linear-gradient(180deg,#faf5ff,#d3f1ff);
    padding: 60px 0px;
}
.qs-solution-content {
    background: rgb(252, 252, 253,0.6);
    border: 2px solid #fff;
    box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
    border-radius: 10px;
    padding: 25px 25px 10px;
    height: 100%;
}
.qs-solution-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}
.qs-solution-content svg {
    justify-items: start;
    background: #dbeafe;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 2px solid #fff;
    box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
}
.col-lg-4:nth-child(2) .qs-solution-content svg {
    background: #dcfce7;
}
.col-lg-4:nth-child(3) .qs-solution-content svg {
    background: #f3e8ff;
}
.col-lg-4:nth-child(4) .qs-solution-content svg {
    background: #ffedd5;
}
.col-lg-4:nth-child(5) .qs-solution-content svg {
    background: #fee2e2;
}
.col-lg-4:nth-child(6) .qs-solution-content svg {
    background: #ccfbf1;
}
/* Solution Overview */
/* Impact Delivered */
section.qs-impact-wrapper {
    padding: 60px 0px;
}
section.qs-impact-wrapper .row {
    justify-content: center;
}
.qs-impact-content {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: start;
}
.qs-impact-content h3 {
    background: linear-gradient(180deg,#faf5ff,#d3f1ff);
    display: block;
    padding: 15px;
    border-radius: 12px;
    font-weight: 900;
    border: 2px solid #fff;
    box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
}
.qs-impact-inner-content {
    background: linear-gradient(180deg,#faf5ff,#d3f1ff);
    border: 2px solid #fff;
    box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
}
.qs-impact-inner-content ul {
    margin-bottom: 15px;
}
.qs-impact-inner-content ul li {
    position: relative;
    padding-bottom: 15px;
    padding-left: 20px;
}
.qs-impact-inner-content ul li svg {
    position: absolute;
    left: 0;
    top: 3px;
}
.qs-impact-inner-text {
    background: #ffffff;
    padding: 12px 16px;
    border-left: 5px solid #2a85ff;
    border-radius: 10px;
    font-weight: 400;
}
/* Impact Delivered */
/* Conclusion & Forward Roadmap */
section.qs-conclusion-wrapper {
    padding-bottom: 70px;
}
section.qs-conclusion-wrapper .row {
    align-items: center;
}
.qs-conclusion-content ul {
    margin: 20px 0px 10px;
}
.qs-conclusion-content ul li {
    font-size: 16px;
    padding-bottom: 15px;
    position: relative;
    padding-left: 20px;
}
.qs-conclusion-content ul li svg {
    position: absolute;
    top: 3px;
    left: 0;
}
.qs-conclusion-banner {
    background: linear-gradient(180deg, #faf5ff, #d3f1ff);
    border: 2px solid #fff;
    box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
    border-radius: 20px;
    padding: 30px;
}
/* Conclusion & Forward Roadmap */
/* =======================================
Case Study Page CSS
======================================= */
section.container {
    background: linear-gradient(180deg,#faf5ff,#d3f1ff);
}
.tab__bar {
    position: relative;
    margin: 0px 0px 30px;
    z-index: 9;
    background: #FFF;
    display: table;
    margin: 0 auto 40px;
    border-radius: 30px;
    box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
}
.tab__bar .tab__navigation {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: fit-content;
  margin: 0 auto;
}

.tab__bar .tab__menu {
    color: var(--text-color);
    list-style: none;
    max-width: 900px;
    white-space: nowrap;
    scroll-behavior: smooth;
    user-select: none;
    overflow-x: auto;
}

.tab__bar .tab__menu.dragging {
  scroll-behavior: unset;
  cursor: grab;
}

.tab__bar .tab__menu.dragging .tab-btn {
  pointer-events: none;
}

.tab__bar .tab__menu::-webkit-scrollbar {
  display: none;
}

.tab__bar .tab__menu .tab__btn {
    display: inline-block;
    color: #000;
    font-size: 1em;
    font-weight: 400;
    margin: 0 2px;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    user-select: none;
    transition: background-color .3s ease;
}

.tab__bar .tab__menu .tab__btn:hover {
  background-color: #2a85ff;
  color: #FFF;
}
.tab__bar .tab__menu .tab__btn.active {
    background-color: #2a85ff;
    color: #FFF;
}

.tab__bar .left__btn,
.tab__bar .right__btn {
  position: absolute;
  color: var(--text-color);
  font-size: 1.8em;
  cursor: pointer;
}

.tab__bar .left__btn svg,
.tab__bar .right__btn svg {
  width: 20px;
  height: 20px;
}

.tab__bar .left__btn svg path,
.tab__bar .right__btn svg path {
  fill: #fff;
}

.tab__bar .left__btn {
  display: none;
  left: -5px;
  background: linear-gradient(to left, transparent, #2a85ff 60%);
  /* padding: 10px 30px 10px 0; */
  border-radius: 30px;
}

.tab__bar .right__btn {
    right: -5px;
    background: linear-gradient(to right, transparent, #2a85ff 60%);
    /* padding: 10px 0 10px 30px; */
    border-radius: 30px;
}

.tab__content {
  position: relative;
}

.tab__content .tab {
  position: relative;
  width: 100%;
  padding: 15px 20px;
  display: none;
  animation: fadein .8s;
}

.tab__content .tab.active {
  display: flex;
}

.tab__content .tab .row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

@media (max-width: 767px) {
  .tab__content .tab .row {
    flex-direction: column;
  }
}

.tab__content .left-column,
.tab__content .right-column {
  width: 50%;
  max-width: 500px;
}

@media (max-width: 767px) {
  .tab__content .left-column,
.tab__content .right-column {
    width: 100%;
    max-width: 700px;
  }
}

.tab__content .left-column {
  display: flex;
  align-items: center;
}

.tab__content .left-column .img-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--box-shadow);
}

.tab__content .left-column .img-card img {
  width: 100%;
}

.tab__content .info .city {
  margin-bottom: 15px;
  font-size: 32px;
}

.tab__content .info .description {
  font-weight: normal;
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .tab__content .info .description {
    text-align: justify;
  }
}

.tab__content .info .city, .tab__content .info .description {
  color: var(--text-color);
}

@media (max-width: 767px) {
  .tab__content .info .city, .tab__content .info .description {
    text-align: center;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
:root {
	--first-color: #2e2e41;
	--second-color: #5b85ff;
	--third-color: #434354;
	--text-color: #fff;

	--box-shadow: 0 5px 25px rgb(2, 2, 2, 0.1);
	--text-shadow: 0 5px 25px rgb(2, 2, 2, 0.1);
}

section.qs-ai-powered-wrapper {
    background: linear-gradient(180deg,#faf5ff,#d3f1ff);
    padding: 60px 0px;
    transition: 0.6s;
}
.tab__content {
    position: relative;
    background: #FFF;
    border-radius: 30px;
}

/* <!--========= Zero Risk. CTA Receivable Section ========--> */
section.qs-zero-risk-wrapper {
    margin-bottom: 80px;
}
.qs-zero-risk-main-area {
    border: 2px solid #fff;
    box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
    border-radius: 30px;
    text-align: center;
    padding: 60px 20px;
    animation: gradientAnimation 18s ease infinite;
    position: relative;
}
.qs-zero-risk-content {
    position: relative;
    backdrop-filter: blur(10px);
}
/* Moving Gradient Background */
.qs-zero-risk-main-area::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 0, 150, 0.15),
    rgba(0, 120, 255, 0.15),
    rgba(255, 255, 100, 0.15)
  );
  background-size: 300% 300%;
  animation: moveGradient 8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  z-index: -1;
  filter: blur(30px);
}
/* Animation */
@keyframes moveGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.qs-zero-risk-content h2 {
    margin-bottom: 30px;
    font-weight: 800;
}
.qs-zero-risk-content a {
    background: #2a85ff;
    color: #FFF;
    font-size: 18px;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 500;
    transition: 0.6s;
    display: inline-block;
}
.qs-zero-risk-content a:hover {
    background: #000;
}
.qs-zero-risk-content ul li {
    display: inline-block;
    margin-right: 20px;
    padding-bottom: 15px;
    position: relative;
    padding-left: 40px;
}
.qs-zero-risk-content ul li svg {
    position: absolute;
    left: 0;
    top: -4px;
}
.qs-zero-risk-content ul li svg path {
    fill: #2a85ff;
}
.qs-zero-risk-content ul li:last-child {
    margin-right: 0;
}
.qs-zero-risk-content p {
    font-style: italic;
    font-weight: 500;
}
/* <!--========= Zero Risk. CTA Receivable Section ========--> */
