/* innovative-product-section */
.innovative-product {
	background: var(--white-color);
}
.innovative-product .section-title {
	font-size: 40px;
	color: var(--text-color-heading);
	margin-bottom: 16px;
}
.innovative-product .section-subtitle {
	font-size: 16px;
	color: var(--text-color-sub-heading);
	margin-bottom: 48px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.innovative-product .innovative-grid {
	display: grid;
	/* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 32px;
	margin: 0 auto;
}
.innovative-product .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-product .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-product .innovative-grid .industry-card img{
	width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* innovative-section */





/* revolutionary-section */
.revolutionary-product {
	background-color: var(--background-color);
}
.revolutionary-product .section-title {
	font-size: 40px;
	color: var(--text-color-heading);
	margin-bottom: 16px;
}
.revolutionary-product .section-subtitle {
	font-size: 16px;
	color: var(--text-color-sub-heading);
	margin-bottom: 48px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.revolutionary-product .benefits-grid {
	display: grid;
	/* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 32px;
	margin: 0 auto;
}
.revolutionary-product .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;
}
.revolutionary-product .benefits-grid .benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border-color: var(--primary-color);
}
.revolutionary-product .benefits-grid .benefit-card img{
    border-radius: 50%;
    width: 350px;
    height: 350px;
    margin-bottom: 24px;
}
/* revolutionary-section */





/* discover-products-section */
.discover-products {
	background: var(--white-color);
}
.discover-products .section-title {
	font-size: 40px;
	color: var(--text-color-heading);
	margin-bottom: 16px;
}
.discover-products .section-subtitle {
	font-size: 16px;
	color: var(--text-color-sub-heading);
	margin-bottom: 48px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.discover-products .steps-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 32px;
	margin: 0 auto;
}
.discover-products .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-products .steps-container .step-card h3 {
	font-size: 24px;
	color: var(--text-color-heading);
	margin-bottom: 16px;
    height: 60px;
}
.discover-products .steps-container .step-card p {
	color: var(--text-color-sub-heading);
	line-height: 1.6;
    font-size: 16px;
}
/* discover-products-section */





/* footer-book-a-demo-products-section */
.footer-book-a-demo-products {
    background-color: var(--background-color);
}
.footer-book-a-demo-products h2 {
    font-size: 32px;
    margin-bottom: 5px;
    font-weight: 400;
    color: var(--text-color-heading);
    text-align: center;
}
.footer-book-a-demo-products p{
    color: var(--text-color-sub-heading);
	line-height: 1.6;
    font-size: 16px;
}
.footer-book-a-demo-products .quick-btn,
.footer-book-a-demo-products .quick-btn:hover,
.footer-book-a-demo-products .quick-btn:active,
.footer-book-a-demo-products .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-products-section */





/* faq-products-section */
.faq-products {
	background: var(--white-color);
}
.faq-products .section-title {
	font-size: 40px;
	color: var(--text-color-heading);
	margin-bottom: 32px;
}
.faq-products .section-subtitle {
	font-size: 16px;
	color: var(--text-color-sub-heading);
	margin-bottom: 48px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.faq-products .faq-products-section {
    max-width: 768px;
    margin: 0 auto;
}
.faq-products .faq-products-section details {
    cursor: pointer;
}
.faq-products .faq-products-section details summary:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 8px;
    border-radius: 4px;
}
.faq-products .faq-products-section details summary h4 {
    width: 768px;
    font-size: 20px;
    color: var(--text-color-heading);
}
.faq-products .faq-products-section details summary {
    font-size: 16px;
    color: var(--text-color-sub-heading);
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.faq-products .faq-products-section details summary::marker {
    display: none;
    content: "";
}
.faq-products .faq-products-section details > p {
    color: var(--text-color-sub-heading);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.faq-products .faq-products-section hr {
    border: 1px solid var(--card-border);
    margin-block-end: 30px;
}
.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 */





/* features-section */
.features {
	background-color: var(--background-color);
}
.features .section-title {
	font-size: 40px;
	color: var(--text-color-heading);
	margin-bottom: 16px;
}
.features .section-subtitle {
	font-size: 16px;
	color: var(--text-color-sub-heading);
	margin-bottom: 48px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.features ul{
    list-style-type: none;
    padding: 0;
}
.features ul li{
    font-size: 18px;
    color: var(--text-color-heading);
    line-height: 1.6;
}
/* features-section */





/* testing-process-section */
.testing-process {
	background: var(--white-color);
}
.testing-process .section-title {
	font-size: 40px;
	color: var(--text-color-heading);
	margin-bottom: 16px;
}
.testing-process .section-subtitle {
	font-size: 16px;
	color: var(--text-color-sub-heading);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
/* testing-process-section */





@media (min-width: 576px) { 

}
@media (min-width: 768px) { 
	.features ul{
		margin: 0 125px;
	}
}
@media (min-width: 992px) { 
	.innovative-grid,
    .benefits-grid,
    .steps-container,
    .features-grid,
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1200px) { 

}
@media (min-width: 1400px) { 
	
}