/* =========================
   SERVICES PAGE TOP BANNER */
.services-page-banner{
    background: url('../assets/services/services-banner.webp') center/cover no-repeat;
    height: 560px;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    border-bottom: 5px solid #F4B000;
}
/* Dark overlay */
.services-page-banner::after{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}
/* Content */
.services-page-banner .banner-content{
    position:relative;
    z-index:2;
}
/* =========================
   LINE + HEADING INLINE FIX
========================= */
.banner-heading{
    display: flex;
    align-items: center;   
    gap: 18px;
    margin-bottom: 12px;
}
/* Orange line */
.about-line1{
    width: 60px;
    height: 3px;
    background-color: #F4B000;
    display: inline-block;
    transform: translateY(2px); 
}
/* Heading */
.banner-heading h1{
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0;              
    line-height: 1.1;      
}
/* Paragraph */
.services-page-banner p{
    font-size:18px;
    max-width:550px;
    margin-top:10px;
}
/* =========================
   MOBILE RESPONSIVE
========================= */
@media(max-width:768px){
    .services-page-banner{
        height:260px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .banner-heading{
        gap: 12px;
    }
    .about-line1{
        width: 40px;
    }
    .banner-heading h1{
        font-size:28px;
        margin-bottom: 5px;
    }
    .services-page-banner p{
        font-size:16px;
        margin-bottom: -2px;
    }
}
/* =========================
   SECTION BACKGROUND RESET
========================= */
.industries-section{
    background: transparent !important;
    margin: 10px auto;
}
/* =========================
   ORANGE SECTION HEADINGS
========================= */
.industries-heading{
    color: black;        
    font-size: 30px;
    font-weight: 700;
    position: relative;
    display: block;
    text-align: center;
}
/* Optional underline (matches brand style) */
.industries-heading::after{
    content:'';
    display:block;
    width:60px;
    height:3px;
    background:#F4B000;
    margin:12px auto 0;
}
/* =========================
   INDUSTRIES BOX (VISIBLE)
========================= */
.industries-box{
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
@media (max-width:768px){
    .industries-heading{
        font-size: 24px;     
        text-align: center;  
        margin-bottom: 30px;
    }
    .industries-heading::after{
        width: 40px;        
        margin-top: 8px;
    }
    .industries-section{
        margin: 10px auto;
    }
    .industries-box{
        padding: 30px 20px;
        border-radius: 18px;
    }
}
