/* problem-statement-section */
.problem-statement {
	background: var(--white-color);
}
.problem-statement .section-title {
	font-size: 40px;
	color: var(--text-color-heading);
	margin-bottom: 16px;
}
.problem-statement .section-subtitle {
	font-size: 16px;
	color: var(--text-color-sub-heading);
	margin-bottom: 48px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.problem-statement .problem-statement-grid {
	display: grid;
	/* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 32px;
	margin: 0 auto;
	position: relative;
}
.problem-statement .problem-statement-grid .solution-card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--card-border);
    cursor: pointer;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease;
	cursor: pointer;
	border: 1px solid transparent;
}
.problem-statement .problem-statement-grid .solution-card:hover {
    transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border: 1px solid var(--primary-color);
}
.problem-statement .problem-statement-grid .solution-card:hover .card-icon {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
}
.problem-statement .problem-statement-grid .solution-card .card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--background-color);
    border-radius: 10px; /* Adjust for more rounded corners if desired */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}
.problem-statement .problem-statement-grid .solution-card .card-icon i {
    font-size: 28px;
    color: var(--text-color-heading); /* Icon color */
}
.problem-statement .problem-statement-grid .solution-card:hover .card-icon i{
  color: var(--white-color);
}
.problem-statement .problem-statement-grid .solution-card .card-title {
    font-size: 24px;
    color: var(--text-color-heading);
    margin: 16px 0;
}
.problem-statement .problem-statement-grid .solution-card .card-description {
    font-size: 16px;
    color: var(--text-color-sub-heading);
    line-height: 1.5;
}
/* problem-statement-section */





/* how-it-works-section */
.how-it-works {
	background: var(--background-color);
}
.how-it-works .section-title {
	font-size: 40px;
	color: var(--text-color-heading);
	margin-bottom: 16px;
}
.how-it-works .section-subtitle {
	font-size: 16px;
	color: var(--text-color-sub-heading);
	margin-bottom: 48px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.how-it-works .steps-container {
	/* display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 32px;
	margin: 0 auto; */
	display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 32px;
}
.how-it-works .steps-container .step-card .step-number {
	width: 64px;
	height: 64px;
	background: transparent;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	font-size: 24px;
	color: var(--white-color);
}
.how-it-works .steps-container .step-card h3 {
	font-size: 24px;
	color: var(--text-color-heading);
	margin-bottom: 16px;
}
.how-it-works .steps-container .step-card p {
	color: var(--text-color-sub-heading);
	line-height: 1.6;
    font-size: 16px;
}
/* .how-it-works .card{
	height: 185px;
	border: transparent;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
}
.how-it-works .card:hover{
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border: 1px solid var(--primary-color);
}
.how-it-works .card .card-body .benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--benefit-icon-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.how-it-works .card .card-body .card-title{
	font-size: 24px;
    color: var(--text-color-heading);
    margin-bottom: 16px;
}
.how-it-works .card .card-body .card-amount{
	color: var(--text-color-sub-heading);
    line-height: 1.6;
    font-size: 16px;
} */
.how-it-works .problem-statement-grid {
	display: grid;
	/* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 32px;
	margin: 0 auto;
	position: relative;
}
.how-it-works .problem-statement-grid .solution-card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--card-border);
    cursor: pointer;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease;
	cursor: pointer;
	border: 1px solid transparent;
}
.how-it-works .problem-statement-grid .solution-card:hover {
    transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border: 1px solid var(--primary-color);
}
/* .how-it-works .problem-statement-grid .solution-card:hover .card-icon {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
} */
.how-it-works .problem-statement-grid .solution-card .card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--background-color);
    border-radius: 10px; /* Adjust for more rounded corners if desired */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
	border-radius: 50%;
	font-size: 28px;
}
/* .how-it-works .problem-statement-grid .solution-card .card-icon i {
    font-size: 28px;
    color: var(--text-color-heading);
}
.how-it-works .problem-statement-grid .solution-card:hover .card-icon i{
  color: var(--white-color);
} */
.how-it-works .problem-statement-grid .solution-card .card-title {
    font-size: 24px;
    color: var(--text-color-heading);
    margin: 16px 0;
}
.how-it-works .problem-statement-grid .solution-card .card-description {
    font-size: 16px;
    color: var(--text-color-sub-heading);
    line-height: 1.5;
}
/* how-it-works-section */





/* industries-section */
.industries {
	background: var(--white-color);
}
.industries .section-title {
	font-size: 40px;
	color: var(--text-color-heading);
	margin-bottom: 16px;
}
.industries .section-subtitle {
	font-size: 16px;
	color: var(--text-color-sub-heading);
	margin-bottom: 48px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.industries .industries-grid {
	display: grid;
	/* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 32px;
	margin: 0 auto;
	position: relative;
}
#show-more-content {
	display: contents;
	/* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
	margin: 0 auto;
}
#show-more,
#show-less{
	position: absolute;
    left: 46.5%;
    bottom: -55px;
    padding: 5px 10px;
    border: 1px solid var(--border-color);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#show-more a,
#show-less a{
	text-decoration: none;
	font-size: 16px;
	color: var(--text-color-sub-heading);
}
#show-more i,
#show-less i{
	color: var(--primary-color);
}
.industries .industries-grid .industry-card {
	background: var(--white-color);
	border-radius: 10px;
	padding: 24px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	text-align: left;
	transition: transform 0.2s ease;
	cursor: pointer;
	border: 1px solid transparent;
}
.industries .industries-grid .industry-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border: 1px solid var(--primary-color);
}
.industries .industries-grid .industry-card .industry-icon {
	width: 64px;
	height: 64px;
	/* background: var(--primary-color); */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	/* margin: 0 auto 16px; */
	font-size: 24px;
	color: var(--white-color);
}
.industries .industries-grid .industry-card h3 {
	font-size: 24px;
	color: var(--text-color-heading);
	margin: 16px 0;
}
.industries .industries-grid .industry-card p {
	color: var(--text-color-sub-heading);
	line-height: 1.6;
    font-size: 16px;
	text-align: justify;
}
.industries .industries-grid .industry-card ul{
    list-style-type: none !important;
}
.industries .industries-grid .industry-card ul li{
	color: var(--text-color-sub-heading);
	line-height: 1.6;
    font-size: 16px;
	text-align: left;
}
.industries .industries-grid .industry-card ul li::before {
    font-family: "Font Awesome 6 Free"; /* Or "Font Awesome 6 Pro" if you have it */
    font-weight: 900; /* For solid icons, use 900. For regular, use 400. For brands, use 400. */
    content: "\f00c"; /* Unicode for a checkmark icon (fa-check). Find unicodes on Font Awesome's website. */
    color: var(--text-color-sub-heading); /* Optional: Set icon color */
	margin-right: 5px;
}
/* industries-section */





/* innovative-section */
.innovative {
	background: var(--background-color);
}
.innovative h2{
	font-size: 40px;
    color: var(--text-color-heading);
    margin-bottom: 16px;
}
.innovative .section-title {
	font-size: 20px;
	color: var(--text-color-heading);
	margin: 16px 0;
}
.innovative .section-subtitle {
	font-size: 16px;
	color: var(--text-color-sub-heading);
	margin-bottom: 24px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.innovative .innovative-grid {
	display: grid;
	/* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 32px;
	margin: 0 auto;
}
.innovative .innovative-grid .industry-card {
	background: var(--white-color);
	border-radius: 10px;
	padding: 24px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.2s ease;
	cursor: pointer;
	border: 1px solid transparent;
}
.innovative .innovative-grid .industry-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border: 1px solid var(--primary-color);
}
.innovative .innovative-grid .industry-card img{
	border-radius: 5px;
}
.innovative .innovative-grid .industry-card ul{
	list-style-type: none !important;
}
.innovative .innovative-grid .industry-card p,
.innovative .innovative-grid .industry-card ul li {
	color: var(--text-color-sub-heading);
    line-height: 1.6;
    font-size: 16px;
}
.innovative .innovative-grid .industry-card ul li::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f00c";
    color: var(--text-color-sub-heading);
    margin-right: 5px;
}
/* .innovative .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    align-items: center;
} */
.innovative .quick-btn,
.innovative .quick-btn:active,
.innovative .quick-btn:hover,
.innovative .quick-btn:focus{
    border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
	border-radius: 3px;
	color: var(--white-color);
    text-decoration: none;
}
.innovative .quick-btn,
.innovative .quick-btn:active,
.innovative .quick-btn:hover,
.innovative .quick-btn:focus{
    border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
	border-radius: 3px;
	color: var(--white-color);
    text-decoration: none;
}
/* innovative-section */





/* discover-products-section */
.discover {
	background: var(--white-color);
}
.discover .section-title {
	font-size: 40px;
	color: var(--text-color-heading);
	margin-bottom: 16px;
}
.discover .section-subtitle {
	font-size: 16px;
	color: var(--text-color-sub-heading);
	margin-bottom: 48px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.discover .steps-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
	margin: 40px 0 0 0;
}
.discover .steps-container .step-card .step-number {
    width: 138px;
    height: 138px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--white-color);
    border-radius: 3px;
}
.discover .steps-container .step-card h3 {
	font-size: 18px;
	color: var(--text-color-heading);
	margin-bottom: 16px;
    height: 60px;
}
.discover .steps-container .step-card p {
	color: var(--text-color-sub-heading);
	line-height: 1.6;
    font-size: 16px;
}
.discover .steps-container .step-card .highlight {
    color: var(--primary-color);
	display: block;
	font-size: 24px;
}
.discover .quick-btn-outline,
.discover .quick-btn-outline:active,
.discover .quick-btn-outline:focus{
    border: 1px solid var(--primary-color);
	background-color: transform;
	border-radius: 3px;
	color: var(--primary-color);
    text-decoration: none;
}
.discover .quick-btn-outline:hover{
	border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
	color: var(--white-color);
}
/* discover-products-section */





/* footer-book-a-demo-home-section */
.footer-book-a-demo-home {
    background-color: var(--background-color);
}
.footer-book-a-demo-home h2 {
    font-size: 32px;
    margin-bottom: 5px;
    font-weight: 400;
    color: var(--text-color-heading);
    text-align: center;
}
.footer-book-a-demo-home p{
    color: var(--text-color-sub-heading);
	line-height: 1.6;
    font-size: 16px;
	max-width: 600px;
	margin: 0px auto;
}
.footer-book-a-demo-home .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    align-items: center;
}
.footer-book-a-demo-home .quick-btn,
.footer-book-a-demo-home .quick-btn:active,
.footer-book-a-demo-home .quick-btn:hover,
.footer-book-a-demo-home .quick-btn:focus{
    border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
	border-radius: 3px;
	color: var(--white-color);
    text-decoration: none;
}
.footer-book-a-demo-home .hero-actions .quick-btn,
.footer-book-a-demo-home .hero-actions .quick-btn:active,
.footer-book-a-demo-home .hero-actions .quick-btn:hover,
.footer-book-a-demo-home .hero-actions .quick-btn:focus{
    border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
	border-radius: 3px;
	color: var(--white-color);
    text-decoration: none;
}
.footer-book-a-demo-home .hero-actions .quick-btn-outline,
.footer-book-a-demo-home .hero-actions .quick-btn-outline:active,
.footer-book-a-demo-home .hero-actions .quick-btn-outline:focus{
    border: 1px solid var(--primary-color);
	background-color: transform;
	border-radius: 3px;
	color: var(--primary-color);
    text-decoration: none;
}
.footer-book-a-demo-home .hero-actions .quick-btn-outline:hover{
	border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
	color: var(--white-color);
}
.footer-book-a-demo-home .blockquote-footer{
	color: var(--text-color-sub-heading);
	line-height: 1.6;
    font-size: 14px;
}
/* footer-book-a-demo-home-section */





/* quick-branding-section */
/* .quick-branding {
    background-color: var(--white-color);
}
.showcase {
  width: 100%;
  height: 500px;
  position: relative;
  color: white;
  text-align: center;
}
.showcase img {
  width: 500px;
  height: 500px;
  position: absolute;
  top: 0;
  left: 0;
  z-index:99
}
.showcase .overlay {
  width: 500px;
  height: 500px;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index:999
}
.quick-btn,
.quick-btn:hover,
.quick-btn:active,
.quick-btn:focus{
	border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
	border-radius: 3px;
	color: var(--white-color);
    text-decoration: none;
} */
/* quick-branding-section */





/* process-overview-section */
.process-overview {
    background-color: var(--white-color);
}
.process-overview h2 {
    font-size: 32px;
    margin-bottom: 5px;
    font-weight: 400;
    color: var(--text-color-heading);
    text-align: center;
}
.process-overview p{
    color: var(--text-color-sub-heading);
	line-height: 1.6;
    font-size: 16px;
	max-width: 600px;
	margin: 0px auto;
}
.process-overview .process {
	width: 100%;
	padding: 0 15px;
	text-align: center;
}
.process-overview .process .process__item {
	user-select: none;
	text-align: center;
	position: relative;
	padding: 15px 35px;
	transition: 0.4s ease-in-out;
	list-style-type: none !important;
}
.process-overview .process .process__item:hover {
  	background: var(--background-color);
	cursor: pointer;
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.process-overview .process .process__item:hover .process__number {
  	transform: translateY(5px);
  	color: var(--primary-color);
}
.process-overview .process .process__item .process__number {
	font-size: 90px;
	-webkit-text-stroke: 1px var(--text-color-heading);
	display: block;
	color: transparent;
	font-weight: 700;
	transition: 0.4s ease-in-out;
}
.process-overview .process .process__item .process__title {
	display: block;
	font-weight: 700;
	letter-spacing: 1.5px;
	font-size: 28px;
	color: var(--primary-color);
	text-transform: uppercase;
	margin-top: 30px;
}
.process-overview .process .process__item .process__subtitle {
	display: block;
	font-size: 16px;
	color: var(--text-color-sub-heading);
	margin-top: 30px;
	line-height: 1.5;
}
.process-overview .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    align-items: center;
}
.process-overview .hero-actions .quick-btn,
.process-overview .hero-actions .quick-btn:active,
.process-overview .hero-actions .quick-btn:hover,
.process-overview .hero-actions .quick-btn:focus{
    border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
	border-radius: 3px;
	color: var(--white-color);
    text-decoration: none;
}
.process-overview .hero-actions .quick-btn-outline,
.process-overview .hero-actions .quick-btn-outline:active,
.process-overview .hero-actions .quick-btn-outline:focus{
    border: 1px solid var(--primary-color);
	background-color: transform;
	border-radius: 3px;
	color: var(--primary-color);
    text-decoration: none;
}
.process-overview .hero-actions .quick-btn-outline:hover{
	border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
	color: var(--white-color);
}
/* process-overview-section */





/* testimonial-section */
.testimonial {
    background-color: var(--background-color);
}
.testimonial h2 {
    font-size: 32px;
    margin-bottom: 5px;
    font-weight: 400;
    color: var(--text-color-heading);
    text-align: center;
}
.testimonial-box {
	display: block;
	position: relative;
	padding: 30px 20px;
	background: var(--white-color);
	border: 1px solid rgba(0, 0, 0, .03);
	border-radius: 5px;
	box-shadow: 0 0 20px rgba(0, 0, 0, .08);
	height: 250px; /* Fixed height for all screens */
}
.user-img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	position: relative;
	min-width: 80px;
	background-size: 100%;
}
.carousel-testimonial .item {
	padding: 30px 10px;
}
.quote {
	position: absolute;
    top: -23px;
    color: var(--primary-color);
    font-size: 36px;
    left: 10%;
}
.msg {
	font-size: 16px;
    color: var(--text-color-heading);
    line-height: 1.5;
	height: 120px; /* Fixed height for the message content */
    overflow: hidden; /* Hide overflowing content */
}
.name {
	margin-bottom: 10px;
	line-height: 14px;
	font-size: 17px;
	font-weight: 500;
}
.position {
	color: var(--text-color-sub-heading);
	font-size: 14px;
}
.carousel-testimonial .owl-nav {
	text-align: center;
}
.carousel-testimonial .owl-nav button.owl-next,
.carousel-testimonial .owl-nav button.owl-prev {
	padding: 0 12px !important;
}
.carousel-testimonial .owl-nav button {
	outline: none;
	padding: 0;
}
.carousel-testimonial .owl-nav button.owl-next span,
.carousel-testimonial .owl-nav button.owl-prev span {
	display: block;
	font-size: 40px;
	width: 25px;
	height: 25px;
	vertical-align: 0px;
	line-height: 16px;
}
.carousel-testimonial .owl-nav button.owl-next.disabled,
.carousel-testimonial .owl-nav button.owl-prev.disabled {
	opacity: 0.5;
}
@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-250px * 7));
	}
}
.slider {
	height: 100px;
	margin: auto;
	overflow: hidden;
	position: relative;
	width: auto;
}
.slider .slide-track {
	animation: scroll 40s linear infinite;
	display: flex;
	width: calc(250px * 14);
}
.slider .slide {
	height: 100px;
	width: 250px;
}
/* testimonial-section */





/* key-metrics-section */
.key-metrics {
    background-color: var(--white-color);
}
.key-metrics h2 {
    font-size: 32px;
    margin-bottom: 5px;
    font-weight: 400;
    color: var(--text-color-heading);
    text-align: center;
}
.stats-key-metrics {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 50%;
    margin: 0px auto;
}
.stats-key-metrics .stat-item {
    text-align: center;
}
.stats-key-metrics .stat-item span {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color-heading);
    margin-bottom: 5px;
}
.stats-key-metrics .stat-item p {
    font-size: 16px;
    color: var(--text-color-sub-heading);
    margin-bottom: 0;
}
.stats-key-metrics .stat-item .client-logo ul{
    list-style-type: none !important;
}
/* key-metrics-section */





/* faq-section */
.faq {
	background: var(--background-color);
}
.faq .section-title {
	font-size: 40px;
	color: var(--text-color-heading);
	margin-bottom: 32px;
}
.faq .section-subtitle {
	font-size: 16px;
	color: var(--text-color-sub-heading);
	margin-bottom: 48px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.faq .faq-products-section {
    max-width: 768px;
    margin: 0 auto;
}
.faq .faq-products-section details {
    cursor: pointer;
}
.faq .faq-products-section details summary:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 8px;
    border-radius: 4px;
}
.faq .faq-products-section details summary h4 {
    width: 768px;
    font-size: 20px;
    color: var(--text-color-heading);
}
.faq .faq-products-section details summary {
    font-size: 16px;
    color: var(--text-color-sub-heading);
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.faq .faq-products-section details summary::marker {
    display: none;
    content: "";
}
.faq .faq-products-section details > p {
    color: var(--text-color-sub-heading);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.faq .faq-products-section hr {
    border: 1px solid var(--card-border);
    margin-block-end: 30px;
}
.faq .faq-icon i {
    transition: transform 0.3s ease;
    color: var(--text-color-heading);;
    font-size: 1.3em;
}
details[open] .faq-icon i {
    transform: rotate(180deg) !important;
}
/* faq-products-section */





/* footer-book-a-demo-home-section */
.book-a-demo-home-footer {
    background-color: var(--white-color);
}
.book-a-demo-home-footer h2 {
    font-size: 32px;
    margin-bottom: 5px;
    font-weight: 400;
    color: var(--text-color-heading);
    text-align: center;
}
.book-a-demo-home-footer p{
    color: var(--text-color-sub-heading);
	line-height: 1.6;
    font-size: 16px;
	max-width: 600px;
	margin: 0px auto;
}
.book-a-demo-home-footer .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    align-items: center;
}
.book-a-demo-home-footer .quick-btn,
.book-a-demo-home-footer .quick-btn:active,
.book-a-demo-home-footer .quick-btn:hover,
.book-a-demo-home-footer .quick-btn:focus{
    border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
	border-radius: 3px;
	color: var(--white-color);
    text-decoration: none;
}
.book-a-demo-home-footer .hero-actions .quick-btn,
.book-a-demo-home-footer .hero-actions .quick-btn:active,
.book-a-demo-home-footer .hero-actions .quick-btn:hover,
.book-a-demo-home-footer .hero-actions .quick-btn:focus{
    border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
	border-radius: 3px;
	color: var(--white-color);
    text-decoration: none;
}
.book-a-demo-home-footer .hero-actions .quick-btn-outline,
.book-a-demo-home-footer .hero-actions .quick-btn-outline:active,
.book-a-demo-home-footer .hero-actions .quick-btn-outline:focus{
    border: 1px solid var(--primary-color);
	background-color: transform;
	border-radius: 3px;
	color: var(--primary-color);
    text-decoration: none;
}
.book-a-demo-home-footer .hero-actions .quick-btn-outline:hover{
	border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
	color: var(--white-color);
}
.book-a-demo-home-footer .blockquote-footer{
	color: var(--text-color-sub-heading);
	line-height: 1.6;
    font-size: 14px;
}
.book-a-demo-home-footer .blockquote-footer::before {
    content: "" !important;
}
/* footer-book-a-demo-home-section */






/* why-citriqai-section */
/* .why-citriqai {
	background-color: var(--background-color);
}
.why-citriqai .section-title {
	font-size: 40px;
	color: var(--text-color-heading);
	margin-bottom: 16px;
}
.why-citriqai .section-subtitle {
	font-size: 16px;
	color: var(--text-color-sub-heading);
	margin-bottom: 48px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.why-citriqai .benefits-grid {
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 32px;
	margin: 0 auto;
}
.why-citriqai .benefits-grid .benefit-card {
	background: var(--white-color);
	border-radius: 10px;
	padding: 24px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.2s ease;
	cursor: pointer;
	border: 1px solid transparent;
}
.why-citriqai .benefits-grid .benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border-color: var(--primary-color);
}
.why-citriqai .benefits-grid .benefit-card .benefit-icon {
	width: 64px;
	height: 64px;
	background: var(--benefit-icon-bg);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	font-size: 24px;
	color: var(--white-color);
}
.why-citriqai .benefits-grid .benefit-card h3 {
	font-size: 24px;
	color: var(--text-color-heading);
	margin-bottom: 16px;
}
.why-citriqai .benefits-grid .benefit-card p {
	color: var(--text-color-sub-heading);
	line-height: 1.6;
    font-size: 16px;
} */
/* why-citriqai-section */











/* case-studies-section */
/* .case-studies {
	background-color: var(--background-color);
}
.case-studies .section-title {
	font-size: 40px;
	color: var(--text-color-heading);
	margin-bottom: 16px;
}
.case-studies .section-subtitle {
	font-size: 16px;
	color: var(--text-color-sub-heading);
	margin-bottom: 48px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.case-studies .case-studies-grid {
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 32px;
	margin: 0 auto;
}
.case-studies .case-studies-grid .case-study-card {
	background: var(--white-color);
	border-radius: 10px;
	padding: 24px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.2s ease;
	cursor: pointer;
	border: 1px solid transparent;
}
.case-studies .case-studies-grid .case-study-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border-color: var(--primary-color);
}
.case-studies .case-studies-grid .case-study-card .case-study-header {
    gap: 16px;
    margin-bottom: 24px;
}
.case-studies .case-studies-grid .case-study-card .case-study-header .case-study-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    color: var(--white-color);
}
.case-studies .case-studies-grid .case-study-card .case-study-header .case-study-info h3 {
    font-size: 24px;
    color: var(--text-color-heading);
}
.case-studies .case-studies-grid .case-study-card .case-study-header .case-study-info p {
    color: var(--text-color-sub-heading);
    line-height: 1.6;
    font-size: 16px;
}
.case-studies .case-studies-grid .case-study-card .case-study-description {
    color: var(--text-color-heading);
    margin-bottom: 24px;
    line-height: 1.6;
    height: 105px;
}
.case-studies .case-studies-grid .case-study-card .metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
.metric-value {
    font-size: 20px;
}
.metric-value.green{
    color: var(--metric-value-color-one);
}
.metric-value.blue{
    color: var(--metric-value-color-two);
}
.metric-value.purple{
    color: var(--metric-value-color-three);
}
.case-studies .case-studies-grid .case-study-card .metrics .metric .metric-label {
    font-size: 12px;
    color: var(--text-color-sub-heading);
} */
/* case-studies-section */





/* contact-section */
/* .contact {
	background: var(--white-color);
}
.contact .section-title {
	font-size: 40px;
	color: var(--text-color-heading);
	margin-bottom: 16px;
}
.contact .section-subtitle {
	font-size: 16px;
	color: var(--text-color-sub-heading);
	margin-bottom: 48px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.contact .contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    margin: 0 auto;
}
.contact .contact-content .contact-info h3 {
    font-size: 24px;
    color: var(--text-color-heading);
    margin-bottom: 16px;
}
.contact .contact-content .contact-info p {
    color: var(--text-color-sub-heading);
    line-height: 1.6;
    font-size: 16px;
}
.contact .contact-content .contact-info ul{
	list-style-type: none;
	padding-left: 0;
}
.contact .contact-content .contact-info ul li{
    line-height: 1.6;
    font-size: 16px;
    color: var(--text-color-sub-heading);
}
.contact .contact-content .contact-form {
    background: var(--background-color);
    border-radius: 16px;
    padding: 48px;
    border: 1px solid var(--border-color);
}
.contact .contact-content .contact-form .form-group {
    margin-bottom: 24px;
}
.contact .contact-content .contact-form .form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color-heading);
}
.contact .contact-content .contact-form .form-group input,
.contact .contact-content .contact-form .form-group select,
.contact .contact-content .contact-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    outline: none;
    box-shadow: none;
}
.contact .contact-content .contact-form .form-group input:focus,
.contact .contact-content .contact-form .form-group select:focus,
.contact .contact-content .contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}
.contact .contact-content .contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.contact .contact-content .contact-form .form-group input:invalid,
.contact .contact-content .contact-form .form-group select:invalid,
.contact .contact-content .contact-form .form-group textarea:invalid {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: none;
}
.contact .contact-content .contact-form .form-group input:valid,
.contact .contact-content .contact-form .form-group select:valid,
.contact .contact-content .contact-form .form-group textarea:valid {
    border-color: var(--green-dot);
    outline: none;
    box-shadow: none;
}
.contact .contact-content .contact-form .quick-btn, 
.contact .contact-content .contact-form .quick-btn:active, 
.contact .contact-content .contact-form .quick-btn:hover, 
.contact .contact-content .contact-form .quick-btn:focus{
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    border-radius: 3px;
    color: var(--white-color);
    text-decoration: none;
} */
/* contact-section */





/* blog-section */
/* .blog {
	background-color: var(--background-color);
}
.blog .section-title {
	font-size: 40px;
	color: var(--text-color-heading);
	margin-bottom: 16px;
}
.blog .section-subtitle {
	font-size: 16px;
	color: var(--text-color-sub-heading);
	margin-bottom: 48px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.blog .blog-grid {
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 32px;
	margin: 0 auto;
}
.blog .blog-grid .blog-card {
	background: var(--white-color);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.2s ease;
	cursor: pointer;
	border: 1px solid transparent;
}
.blog .blog-grid .blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border-color: var(--primary-color);
}
.blog .blog-grid .blog-card .blog-image{
    width: 100%;
    height: 200px;
    background: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog .blog-grid .blog-card .blog-content{
    padding: 24px;
}
.blog .blog-grid .blog-card .blog-content .blog-meta{
    color: var(--text-color-sub-heading);
    font-size: 12px;
    margin-bottom: 8px
}
.blog .blog-grid .blog-card .blog-content h3{
    font-size: 20px;
    color: var(--text-color-heading);
    margin-bottom: 16px;
    line-height: 1.4;
}
.blog .blog-grid .blog-card .blog-content p{
    font-size: 16px;
    color: var(--text-color-sub-heading);
    margin-bottom: 16px;
    line-height: 1.6;
}
.blog .blog-grid .blog-card .blog-content .read-more{
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
} */
/* blog-section */



@media (min-width: 425px) { 

}
@media (min-width: 768px) { 
    .footer-book-a-demo-home .hero-actions,
	.innovative .hero-actions,
	.book-a-demo-home-footer .hero-actions{
        flex-direction: row;
        justify-content: center;
    }
	.process-overview .process {
		display: inline-block;
	}
	.process-overview .process .process__item {
		width: 49%;
		display: inline-block;
	}
	.process-overview .hero-actions {
        flex-direction: row;
        justify-content: center;
    }
	.stats-key-metrics {
        flex-direction: row;
        justify-content: space-between;
    }
}
@media (min-width: 992px) { 
	.problem-statement-grid,
	.industries-grid,
    .benefits-grid,
    .steps-container,
    .case-studies-grid,
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1024px) { 
	.process-overview .process {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}
	.process-overview .process .process__item {
		width: 100%;
	}
	.process-overview .process .process__item:not(:last-of-type)::after {
		content: "";
		width: 1px;
		height: 75%;
		background: var(--card-border);
		position: absolute;
		right: 0;
		top: 50%;
		opacity: 0.2;
		transform: translateY(-50%);
	}
}
@media (min-width: 1440px) { 
	
}