/*==================================================
SERVICES PAGE
==================================================*/

/* Hero */

.page-hero {
    position: relative;
    background: linear-gradient(rgba(2,25,47,.82), rgba(2,25,47,.82)),
        url("../images/services/services-banner.jpg") center center/cover no-repeat;
    padding: 240px 0 140px;
    color: #fff;
    text-align: center;
}

.page-hero h1{
    font-size: clamp(2.6rem,5vw,4.2rem);
    font-weight:700;
    margin-bottom:20px;
}

.page-hero p{
    max-width:760px;
    margin:auto;
    font-size:1.1rem;
    opacity:.92;
    line-height:1.8;
}

.breadcrumb{
    justify-content:center;
    margin-top:25px;
}

.breadcrumb-item a{
    color:#fff;
    text-decoration:none;
}

.breadcrumb-item.active{
    color:#ffc107;
}

/*========================================
INTRODUCTION
========================================*/

.service-intro{
    padding:100px 0;
}

.service-intro img{
    width:100%;
    border-radius:18px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

/*========================================
SERVICE CARDS
========================================*/

.service-grid{
    padding:40px 0 100px;
}

.service-box{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 18px 40px rgba(0,0,0,.07);

    height:100%;
}

.service-box:hover{

    transform:translateY(-10px);

}

.service-box img{

    width:100%;
    height:240px;
    object-fit:cover;

}

.service-content{

    padding:30px;

}

.service-content i{

    color:#0d6efd;
    font-size:42px;
    margin-bottom:20px;

}

.service-content h3{

    margin-bottom:15px;

}

.service-content p{

    color:#666;
    line-height:1.8;

}

/*========================================
PROCESS
========================================*/

.process-section{

    background:#f8fafc;

    padding:100px 0;

}

.process-step{

    background:#fff;

    border-radius:16px;

    padding:35px;

    text-align:center;

    position:relative;

    height:100%;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

}

.process-number{

    width:70px;

    height:70px;

    line-height:70px;

    border-radius:50%;

    background:#0d6efd;

    color:#fff;

    font-weight:bold;

    font-size:24px;

    margin:auto auto 25px;

}

/*========================================
INDUSTRIES
========================================*/

.industry-section{

    padding:100px 0;

}

.industry-card{

    border:1px solid #eee;

    border-radius:15px;

    padding:35px;

    text-align:center;

    transition:.3s;

    height:100%;

}

.industry-card:hover{

    background:#0d6efd;

    color:#fff;

}

.industry-card i{

    font-size:46px;

    margin-bottom:20px;

}

/*========================================
FAQ
========================================*/

.faq-section{

    background:#f8fafc;

    padding:100px 0;

}

.accordion-item{

    border:none;

    margin-bottom:15px;

    border-radius:12px !important;

    overflow:hidden;

}

.accordion-button{

    font-weight:600;

    padding:20px;

}

.accordion-button:not(.collapsed){

    background:#0d6efd;

    color:#fff;

}

/*========================================
CTA
========================================*/

.services-cta{

    padding:100px 0;

}

/*========================================
RESPONSIVE
========================================*/

@media(max-width:991px){

.page-hero{

padding:190px 0 100px;

}

.service-content{

padding:25px;

}

}

@media(max-width:768px){

.page-hero h1{

font-size:2.4rem;

}

.process-step,
.industry-card{

margin-bottom:25px;

}

}

/*=========================================
PROCESS ANIMATION
=========================================*/

.process-hidden{

    opacity:0;

    transform:translateY(40px);

    transition:.7s ease;

}

.show-process{

    opacity:1;

    transform:translateY(0);

}

/*=========================================
INDUSTRY ANIMATION
=========================================*/

.industry-hidden{

    opacity:0;

    transform:scale(.9);

    transition:.6s ease;

}

.industry-show{

    opacity:1;

    transform:scale(1);

}


/* ==========================
PAGE HERO
========================== */

.page-hero{
    position: relative;
    padding: 180px 0 120px;
    background: url("../images/banner/about-banner.jpeg") center center/cover no-repeat;
    overflow: hidden;
}

/* Dark Overlay */

.page-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.72);
    z-index:1;
}

/* Optional blue gradient for a corporate look */

.page-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(5,35,65,.65),
        rgba(0,0,0,.45)
    );
    z-index:2;
}

/* Keep content above overlays */

.page-hero .container{
    position:relative;
    z-index:3;
}

/* Text */

.page-hero h1{
    color:#fff;
    font-size:3.2rem;
    font-weight:700;
    margin-bottom:20px;
}

.page-hero p{
    color:rgba(255,255,255,.88);
    font-size:1.15rem;
    max-width:760px;
    margin:auto;
    line-height:1.8;
}

.page-hero .breadcrumb{
    margin-top:30px;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item.active{
    color:#ddd;
}

.page-hero .breadcrumb-item a{
    color:#fff;
    text-decoration:none;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before{
    color:#ccc;
}

@media(max-width:768px){

    .page-hero{
        padding:140px 0 90px;
    }

    .page-hero h1{
        font-size:2.2rem;
    }

    .page-hero p{
        font-size:1rem;
    }

}