/* our-story-section */
.our-story {
	background: var(--white-color);
}
.our-story .section-title {
	font-size: 40px;
	color: var(--text-color-heading);
	margin-bottom: 32px;
}
.our-story .section-subtitle {
	font-size: 18px;
	color: var(--text-color-heading);
	margin-bottom: 24px;
	margin-left: auto;
	margin-right: auto;
    text-align: justify;
}
/* our-story-section */





/* empowering-business-section */
.empowering-business {
	background-color: var(--background-color);
}
.empowering-business .section-title {
	font-size: 40px;
	color: var(--text-color-heading);
	margin-bottom: 32px;
}
.empowering-business .benefits-grid {
	display: grid;
	/* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 32px;
	margin: 0 auto;
}
.empowering-business .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;
    display: flex;
    align-items: anchor-center;
    font-size: 18px;
}
.empowering-business .benefits-grid .benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border-color: var(--primary-color);
}
.empowering-business .benefits-grid .benefit-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* empowering-business-section */






/* faq-about-us-section */
.faq-about-us {
	background: var(--white-color);
}
.faq-about-us .section-title {
	font-size: 40px;
	color: var(--text-color-heading);
	margin-bottom: 32px;
}
.faq-about-us .section-subtitle {
	font-size: 16px;
	color: var(--text-color-sub-heading);
	margin-bottom: 48px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.faq-about-us .faq-products-section {
    max-width: 768px;
    margin: 0 auto;
}
.faq-about-us .faq-products-section details {
    cursor: pointer;
}
.faq-about-us .faq-products-section details summary:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 8px;
    border-radius: 4px;
}
.faq-about-us .faq-products-section details summary h4 {
    width: 768px;
    font-size: 20px;
    color: var(--text-color-heading);
}
.faq-about-us .faq-products-section details summary {
    font-size: 16px;
    color: var(--text-color-sub-heading);
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.faq-about-us .faq-products-section details summary::marker {
    display: none;
    content: "";
}
.faq-about-us .faq-products-section details > p {
    color: var(--text-color-sub-heading);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.faq-about-us .faq-products-section hr {
    border: 1px solid var(--card-border);
    margin-block-end: 30px;
}
.faq-about-us .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-about-us-section */






/* footer-book-a-demo-about-us-section */
.footer-book-a-demo-about-us {
    background-color: var(--background-color);
}
.footer-book-a-demo-about-us h2 {
    font-size: 32px;
    margin-bottom: 5px;
    font-weight: 400;
    color: var(--text-color-heading);
    text-align: center;
}
.footer-book-a-demo-about-us p{
    color: var(--text-color-sub-heading);
	line-height: 1.6;
    font-size: 16px;
}
.footer-book-a-demo-about-us .logo img{
    width: 30%;
}
.footer-book-a-demo-about-us .quick-btn,
.footer-book-a-demo-about-us .quick-btn:hover,
.footer-book-a-demo-about-us .quick-btn:active,
.footer-book-a-demo-about-us .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-about-us-section */


















@media (min-width: 425px) { 
    
}
@media (min-width: 768px) { 
    .footer-book-a-demo-about-us .logo img {
        width: 15%;
    }
}
@media (min-width: 992px) { 
    
}
@media (min-width: 1024px) { 

}
@media (min-width: 1440px) { 
	
}