
#uc_card_carousel_elementor_1f33cac .ue-carousel-item
{
	  height: 565px;
}
.elementor-11 .elementor-element.elementor-element-fffc985 .uc-active-item .ue-item
{
	  height: 495px;
}
.elementor-11 .elementor-element.elementor-element-fffc985 .uc_image_carousel_container_holder
{
	  height: 495px;
}


.industry-section{
    padding:80px 5%;
    background:#f7f8fa;
    text-align:center;
    font-family:'Inter',sans-serif;
}

.sub-heading{
    color:#ff6b00;
    font-weight:700;
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:12px;
}

.industry-section h2{
    font-size:42px;
    color:#0f172a;
    margin-bottom:50px;
    font-weight:800;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.industry-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    position:relative;
    padding-bottom:35px;
    transition:0.3s ease;
    box-shadow:0 4px 20px rgba(0,0,0,0.05);
}

.industry-card:hover{
    transform:translateY(-8px);
}

.image-box img{
    width:100%;
    height:190px;
    object-fit:cover;
    display:block;
}

.icon-circle{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#fff;
    margin:auto;
    margin-top:-30px;
    position:relative;
    z-index:2;
    border:5px solid #fff;
}

.orange{
    background:#ff6b00;
}

.green{
    background:#4caf50;
}

.blue{
    background:#3b82f6;
}

.purple{
    background:#7c3aed;
}

.industry-card h3{
    margin-top:20px;
    font-size:19px;
    line-height:1.5;
    color:#0f172a;
    font-weight:600;
    padding:0 15px;
}

/* MOBILE RESPONSIVE */

@media(max-width:991px){

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

}

@media(max-width:767px){

.industry-grid{
    grid-template-columns:1fr;
}

.industry-section h2{
    font-size:32px;
}

}





/* MAIN SECTION */

.workflow-section{
    width:100%;
    padding:60px 20px;
    background:#ffffff;
    font-family:'Inter',sans-serif;
    text-align:center;
}

/* TOP */

.workflow-top span{
    color:#ff7a00;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    display:block;
    margin-bottom:10px;
}

.workflow-top h2{
    font-size:42px;
    font-weight:800;
    color:#111827;
    margin-bottom:50px;
    line-height:1.2;
}

/* STEPS */

.workflow-steps{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

/* ITEM */

.workflow-item{
    position:relative;
}

.circle{
    width:230px;
    height:230px;
    background:#fafafa;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:25px;
    position:relative;
    box-shadow:0 0 0 1px #f0f0f0 inset;
}

/* NUMBER */

.step-number{
    position:absolute;
    top:20px;
    left:20px;
    width:34px;
    height:34px;
    border-radius:50%;
    color:#fff;
    font-size:15px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* COLORS */

.orange{
    background:#ff7a00;
}

.green{
    background:#41a541;
}

.blue{
    background:#2f80ed;
}

.purple{
    background:#7b2cbf;
}

/* ICON */

.icon{
    font-size:38px;
    margin-bottom:15px;
}

/* TITLE */

.circle h3{
    font-size:22px;
    font-weight:700;
    color:#111827;
    margin-bottom:12px;
}

/* TEXT */

.circle p{
    font-size:15px;
    line-height:1.7;
    color:#6b7280;
}

/* ARROW */

.arrow{
    font-size:28px;
    color:#d1d5db;
    font-weight:700;
}

/* MOBILE */

@media(max-width:991px){

    .workflow-top h2{
        font-size:30px;
    }

    .workflow-steps{
        flex-direction:column;
    }

    .arrow{
        transform:rotate(90deg);
    }

    .circle{
        width:210px;
        height:210px;
    }
}