:root {
    --primary-color: #ea580c;
    --white-color: #fff;
    --card-border: #d1d1d1;
    --text-color-heading: #0d0f0f;
    --text-color-sub-heading: #6b7280;
    --background-color: #f8f9fa;
    --green-dot: #28a745;
    --benefit-icon-bg: #FEF3F2;
    --border-color: #e5e7eb;
    --footer-bg: #e2e2e2;
    --footer-border: #c5c5c5;
    --footer-pipeline-color: #a1a1a1;
    --metric-value-color-one: #22c55e;
    --metric-value-color-two: #3b82f6;
    --metric-value-color-three: #a855f7;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}


/* hero-section */
.hero-section {
    background-color: var(--background-color);
}
.hero-section .container {
    display: grid;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.hero-section .hero-content {
    max-width: auto;
}
.hero-section .hero-content h1 {
    font-size: 36px;
    color: var(--text-color-heading);
    margin-bottom: 20px;
}
.hero-section .hero-content h2 {
    font-size: 18px;
    color: var(--text-color-heading);
    margin-bottom: 20px;
    line-height: 1.5;
}
.hero-section .hero-content .highlight{
    color: var(--primary-color);
}
.hero-section .hero-content p {
    font-size: 18px;
    color: var(--text-color-sub-heading);
    margin-bottom: 30px;
    line-height: 1.5;
}
.hero-section .hero-content .blockquote-footer{
	color: var(--text-color-sub-heading);
	line-height: 1.6;
    font-size: 14px;
}
.hero-section .hero-content .blockquote-footer::before {
    content: "" !important;
}
.hero-section .hero-content .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    align-items: center;
}
.hero-section .hero-content .hero-actions .quick-btn-outline,
.hero-section .hero-content .hero-actions .quick-btn-outline:active,
.hero-section .hero-content .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;
}
.hero-section .hero-content .hero-actions .quick-btn-outline:hover{
    border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
	border-radius: 3px;
	color: var(--white-color);
    text-decoration: none;
}
.hero-section .hero-content .hero-actions .quick-btn,
.hero-section .hero-content .hero-actions .quick-btn:active,
.hero-section .hero-content .hero-actions .quick-btn:hover,
.hero-section .hero-content .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;
}
.stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}
.stats .stat-item {
    text-align: center;
}
.stats .stat-item span {
    display: inline-flex;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color-heading);
    margin-bottom: 5px;
    height: 70px;
}
.stats .stat-item p {
    font-size: 16px;
    color: var(--text-color-sub-heading);
    margin-bottom: 0;
}
.stats .stat-item .client-logo ul{
    list-style-type: none !important;
}
/* .stats .stat-item .client-logo ul li .custom-height{
    height: 60px;
    margin-left: 10px;
} */
.hero-section .hero-image {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: var(--background-color);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-section .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-section .hero-image .automation-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 8px 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
}
.hero-section .hero-image .automation-tag span {
    display: block;
    font-size: 20px;
    font-weight: 700;
}
.hero-section .hero-image .automation-tag p {
    font-size: 12px;
    margin: 0;
}
.hero-section .hero-image .ai-agents-active {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: var(--text-color-heading);
}
.hero-section .hero-image .ai-agents-active .dot {
    width: 10px;
    height: 10px;
    background-color: var(--green-dot);
    border-radius: 50%;
}
/* hero-section */
@media (min-width: 425px) { 

}
@media (min-width: 768px) { 
    .hero-section .hero-content {
        text-align: left;
        flex: 1;
    }
    .hero-section .hero-content .hero-actions {
        flex-direction: row;
        justify-content: center;
    }
    .stats {
        flex-direction: row;
        justify-content: space-between;
    }
    .hero-section .hero-image {
        flex: 1; 
        max-width: none; 
        height: auto; 
        min-height: 400px; 
    }
    .hero-section .hero-content h1{
        font-size: 30px;
    }
    .hero-section .hero-image .automation-tag{
        position: absolute;
        top: 80px;
        right: 10px;
    }
    .hero-section .hero-image .ai-agents-active{
        position: absolute;
        bottom: 80px;
        left: 10px;
    }
    .hero-section .container {
        flex-direction: row;
        text-align: left;
    }
}
@media (min-width: 992px) { 
    .hero-section .container {
        flex-direction: row;
        text-align: left;
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }
    .hero-section .hero-content {
        text-align: left;
        flex: 1;
        max-width: 50%;
    }
}
@media (min-width: 1024px) {     
    .hero-section .hero-content h1{
        font-size: 46px;
    }
    .hero-section .hero-image .automation-tag{
        position: absolute;
        top: 40px;
        right: 20px;
    }
    .hero-section .hero-image .ai-agents-active{
        position: absolute;
        bottom: 40px;
        left: 20px;
    }
}
@media (min-width: 1440px) { 
	.hero-section .hero-image .automation-tag{
        position: absolute;
        top: 20px;
        right: 20px;
    }
    .hero-section .hero-image .ai-agents-active{
        position: absolute;
        bottom: 20px;
        left: 20px;
    }
    .hero-section .container {
        display: flex;
    }
    .hero-section .hero-content{
        max-width: 600px;
        align-self: center;
    }
}