/* ==========================================================
   SERVICES HERO
========================================================== */

#services-hero{
    position:relative;
    display:flex;
    align-items:center;
    min-height:650px;
    padding:9rem 0 6rem;
    overflow:hidden;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:var(--white);
}

#services-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .12);
}

#services-hero .container{
    position: relative;
    z-index: 2;
}

#services-hero .hero-content{
    width:100%;
    max-width:100%;
    margin:0 auto;
}

#services-hero .hero-title{
    max-width: 1000px;
    margin: 0 auto 1.5rem;
}

#services-hero .breadcrumb{
    margin-bottom: 1.5rem;
    background: transparent;
}

#services-hero .breadcrumb-item,
#services-hero .breadcrumb-item a{
    color: rgba(255,255,255,.8);
    text-decoration: none;
    transition: .3s ease;
}

#services-hero .breadcrumb-item a:hover{
    color: var(--white);
}

#services-hero .breadcrumb-item.active{
    color: var(--white);
}

#services-hero .section-subtitle{
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 50px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.15);
    color: var(--white);
    letter-spacing: 2px;
}

#services-hero h1{
    width:100%;
    max-width:100%;
    margin:0 auto 1.5rem;
    font-size:clamp(3rem,5vw,4.75rem);
    font-weight:700;
    line-height:1.15;
    color:var(--white);
    text-wrap:balance;
}

#services-hero p{
    width:100%;
    max-width:760px;
    margin:0 auto;
    font-size:1.2rem;
    line-height:1.8;
    color:rgba(255,255,255,.92);
}

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:1rem;
    flex-wrap:wrap;
    margin-top:3rem;
}

.hero-buttons .btn{
    min-width: 190px;
    padding: .95rem 2rem;
    border-radius: .65rem;
    font-weight: 600;
    transition: .35s ease;
}

.hero-buttons .btn-primary{
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.hero-buttons .btn-primary:hover{
    transform: translateY(-3px);
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.hero-buttons .btn-outline-light:hover{
    transform: translateY(-3px);
}
/* ==========================================================
   SERVICES OVERVIEW
========================================================== */

#services-overview{
    padding:6rem 0;
}

.overview-image{
    overflow:hidden;
    border-radius:1rem;
}

.overview-image img{
    width:100%;
    border-radius:1rem;
    transition:.45s ease;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.overview-image:hover img{
    transform:scale(1.05);
}

#services-overview h2{
    margin-bottom:1.5rem;
}

#services-overview p{
    line-height:1.9;
    color:var(--text-light);
}

.overview-card{
    height:100%;
    padding:2rem;
    background:var(--white);
    border-radius:1rem;
    border:1px solid var(--border-light);
    box-shadow:var(--shadow-sm);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.overview-card:hover{
    transform:translateY(-8px);
    border-color:var(--primary);
    box-shadow:var(--shadow-lg);
}

.overview-card i{
    display:flex;
    align-items:center;
    justify-content:center;
    width:72px;
    height:72px;
    margin-bottom:1.5rem;
    border-radius:50%;
    background:rgba(var(--primary-rgb),.08);
    color:var(--primary);
    font-size:2rem;
    transition:all .35s ease;
}

.overview-card:hover i{
    background:var(--primary);
    color:var(--white);
    transform:scale(1.08);
}

.overview-card h5{
    margin-bottom:.75rem;
    font-weight:600;
}

.overview-card p{
    margin:0;
    line-height:1.8;
}

/* ==========================================================
   CORE SERVICES
========================================================== */

#core-services{
    padding:6rem 0;
    background:var(--light-color);
}

#core-services .section-heading{
    max-width:760px;
    margin:0 auto 4rem;
}

#core-services .section-heading h2{
    margin-bottom:1rem;
}

#core-services .section-heading p{
    color:var(--text-light);
    line-height:1.8;
}

.service-card{
    display:flex;
    flex-direction:column;
    height:100%;
    padding:2.25rem;
    background:var(--white-color);
    border-radius:1rem;
    border:1px solid rgba(0,0,0,.06);
    box-shadow:0 10px 35px rgba(0,0,0,.05);
    transition:all .35s ease;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary-color);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.service-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:75px;
    height:75px;
    margin-bottom:1.75rem;
    border-radius:50%;
    background:rgba(var(--primary-rgb),.10);
    color:var(--primary-color);
    font-size:2rem;
    transition:all .35s ease;
}

.service-card:hover .service-icon{
    background:var(--primary-color);
    color:var(--white-color);
    transform:rotateY(180deg);
}

.service-card h3{
    margin-bottom:1rem;
    font-size:1.4rem;
    font-weight:600;
}

.service-card p{
    margin-bottom:1.5rem;
    color:var(--text-light);
    line-height:1.8;
}

.service-list{
    list-style:none;
    padding:0;
    margin:0 0 2rem;
    flex-grow:1;
}

.service-list li{
    position:relative;
    padding-left:1.75rem;
    margin-bottom:.9rem;
    color:var(--text-color);
    line-height:1.7;
}

.service-list li:last-child{
    margin-bottom:0;
}

.service-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:.55rem;
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--primary-color);
}

.service-link{
    display:inline-flex;
    align-items:center;
    gap:.6rem;
    margin-top:auto;
    color:var(--primary-color);
    font-weight:600;
    text-decoration:none;
    transition:.3s ease;
}

.service-link i{
    transition:.3s ease;
}

.service-link:hover{
    color:var(--secondary-color);
}

.service-link:hover i{
    transform:translateX(6px);
}

/* ==========================================================
   INDUSTRIES
========================================================== */

#industries{
    padding:6rem 0;
}

#industries .section-heading{
    max-width:760px;
    margin:0 auto 4rem;
}

#industries .section-heading p{
    color:var(--text-light);
    line-height:1.8;
}

.industry-card{
    height:100%;
    padding:2rem;
    text-align:center;
    background:var(--white-color);
    border-radius:1rem;

    border:1px solid rgba(0,0,0,.06);
    box-shadow:0 10px 35px rgba(0,0,0,.05);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.industry-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary-color);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.industry-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:80px;
    height:80px;
    margin:0 auto 1.5rem;
    border-radius:50%;
    background:rgba(var(--primary-rgb),.10);
    color:var(--primary-color);
    font-size:2rem;
    
    transition:
        background-color .35s ease,
        color .35s ease,
        transform .35s ease;
}

.industry-card:hover .industry-icon{
    background:var(--primary-color);
    color:var(--white-color);
    transform:scale(1.08);
}

.industry-card h4{
    margin-bottom:1.2rem;
    font-size:1.25rem;
    font-weight:600;
}

.industry-card p{
    margin:0;
    color:var(--text-light);
    font-size:0.97rem;
    line-height:1.8;
}

/* ==========================================================
   SERVICE PROCESS
========================================================== */

#service-process{
    padding:6rem 0;
    background:var(--light-color);
}

#service-process .section-heading{
    max-width:760px;
    margin:0 auto 4rem;
}

#service-process .section-heading p{
    color:var(--text-light);
    line-height:1.8;
}

.process-card{
    position:relative;
    overflow:hidden;
    height:100%;
    padding:2.5rem 2rem;
    text-align:center;
    background:var(--white-color);
    border-radius:1rem;
    border:1px solid rgba(0,0,0,.06);
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.process-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:var(--primary-color);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .35s ease;
}

.process-card:hover::before{
    transform:scaleX(1);
}

.process-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary-color);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.process-number{
    display:flex;
    align-items:center;
    justify-content:center;
    width:80px;
    height:80px;
    margin:0 auto 1.5rem;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    color:var(--white-color);
    font-size:1.75rem;
    font-weight:700;
    box-shadow:0 15px 35px rgba(0,0,0,.15);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.process-card:hover .process-number{
    transform:scale(1.08);
}

.process-card h4{
    margin-bottom:1.2rem;
    font-size:1.3rem;
    font-weight:600;
    color:var(--heading-color);
}

.process-card p{
    margin:0;
    color:var(--text-light);
    font-size:.97rem;
    line-height:1.8;
}

/* ==========================================================
   FAQ
========================================================== */

#service-faq{
    padding:6rem 0;
}

#service-faq .section-heading{
    max-width:760px;
    margin:0 auto 4rem;
}

#service-faq .section-heading p{
    color:var(--text-light);
    line-height:1.8;
}

#service-faq .accordion{
    max-width:900px;
    margin:0 auto;
}

#service-faq .accordion-item{
    border:none;
    margin-bottom:1rem;
    overflow:hidden;
    border-radius:1rem;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

#service-faq .accordion-item{
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

#service-faq .accordion-item:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

#service-faq .accordion-button{
    padding:1.35rem 1.5rem;
    background:var(--white-color);
    color:var(--heading-color);
    font-weight:600;
    font-size:1.05rem;
    line-height:1.5;
    box-shadow:none;

    transition:
        background-color .3s ease,
        color .3s ease;
}

#service-faq .accordion-button:hover{
    background:rgba(var(--primary-rgb), .05);
}

#service-faq .accordion-button:focus{
    box-shadow:none;
    border:none;
}

#service-faq .accordion-button:not(.collapsed){
    background:rgba(var(--primary-rgb),.08);
    color:var(--primary-color);
}

#service-faq .accordion-body{
    padding:1.5rem;
    color:var(--text-light);
    font-size:.98rem;
    line-height:1.9;
}

/* ==========================================================
   CTA
========================================================== */

#service-cta{
    padding:6rem 0;
}

.cta-box{
    padding:5rem 2rem;
    text-align:center;
    border-radius:1.25rem;
    background:linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    color:var(--white-color);
    box-shadow:0 25px 60px rgba(0,0,0,.15);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.cta-box:hover{
    transform:translateY(-5px);
    box-shadow:0 30px 70px rgba(0,0,0,.18);
}

.cta-box .section-subtitle{
    display:inline-block;
    margin-bottom:1rem;
    color:rgba(255,255,255,.9);
    letter-spacing:3px;
    font-size:.85rem;
    font-weight:600;
    text-transform:uppercase;
}

.cta-box h2{
    margin-bottom:1.5rem;
    color:var(--white-color);
    font-size:clamp(2rem,4vw,3.25rem);
    line-height:1.2;
}

.cta-box p{
    max-width:720px;
    margin:0 auto;
    color:rgba(255,255,255,.92);
    font-size:1.05rem;
    line-height:1.9;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:1rem;
    margin-top:2.5rem;
}

.cta-buttons .btn{
    min-width:220px;
    padding:.95rem 2rem;
    border-radius:.65rem;
    font-weight:600;
    transition:
        background-color .35s ease,
        color .35s ease,
        border-color .35s ease,
        transform .35s ease;
}

.cta-buttons .btn-primary{
    background:var(--white-color);
    color:var(--primary-color);
    border-color:var(--white-color);
}

.cta-buttons .btn-primary:hover{
    background:transparent;
    color:var(--white-color);
    border-color:var(--white-color);
    transform:translateY(-3px);
}

.cta-buttons .btn-outline-light:hover{
    background:var(--white-color);
    color:var(--primary-color);
    transform:translateY(-3px);
}

/* ==========================================================
   RESPONSIVE
========================================================== */

/* =========================
   Large Tablets
========================= */

@media (max-width:991.98px){

    #services-hero{
        padding:8rem 0 5rem;
    }

    #services-overview,
    #core-services,
    #industries,
    #service-process,
    #service-faq,
    #service-cta{
        padding:5rem 0;
    }

    .overview-image{
        margin-bottom:2rem;
    }

    .service-card,
    .industry-card,
    .process-card{
        padding:2rem;
    }

    .cta-box{
        padding:4rem 2rem;
    }

}

/* =========================
   Tablets
========================= */

@media (max-width:767.98px){

    #services-hero{
        padding:7rem 0 4rem;
    }

    #services-hero h1{
        font-size:2.5rem;
    }

    #services-hero p{
        font-size:1rem;
    }

    #services-overview,
    #core-services,
    #industries,
    #service-process,
    #service-faq,
    #service-cta{
        padding:4rem 0;
    }

    .hero-buttons,
    .cta-buttons{
        flex-direction:column;
    }

    .hero-buttons .btn,
    .cta-buttons .btn{
        width:100%;
        max-width:340px;
    }

    .service-card,
    .industry-card,
    .process-card,
    .overview-card{
        padding:1.75rem;
    }

    .service-icon,
    .industry-icon,
    .process-number{
        width:70px;
        height:70px;
        font-size:1.7rem;
    }

    .cta-box{
        padding:3rem 1.75rem;
    }

}

/* =========================
   Small Mobile
========================= */

@media (max-width:575.98px){

    #services-hero{
        padding:6.5rem 0 3.5rem;
    }

    #services-hero h1{
        font-size:2rem;
    }

    #services-hero .breadcrumb{
        font-size:.875rem;
    }

    #services-overview,
    #core-services,
    #industries,
    #service-process,
    #service-faq,
    #service-cta{
        padding:3.5rem 0;
    }

    .overview-card,
    .service-card,
    .industry-card,
    .process-card{
        padding:1.5rem;
    }

    .service-icon,
    .industry-icon,
    .process-number,
    .overview-card i{
        width:65px;
        height:65px;
        font-size:1.5rem;
    }

    .service-card h3,
    .industry-card h4,
    .process-card h4{
        font-size:1.2rem;
    }

    .cta-box{
        padding:2.5rem 1.5rem;
    }

    .cta-box h2{
        font-size:2rem;
    }

    #service-faq .accordion-button,
    #service-faq .accordion-body{
        padding:1.25rem;
    }

}