/*====================================================
                    SERVICES PAGE
======================================================*/

.services-page {
    background: #f8fbfd;
}

/*====================================================
                    HERO
======================================================*/

.services-hero {
    position: relative;
    width: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/img/Kromanalitik/kromanalitik_shop.png') center center / cover no-repeat;
    margin-bottom: 60px;
    overflow: hidden;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(8, 47, 60, 0.60), rgba(8, 47, 60, 0.60));
    z-index: 1;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.services-hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

.services-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 auto;
    max-width: 760px;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.30);
}

.services-hero h1::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    border-radius: 3px;
    background: #fff;
    margin: 14px auto 0;
    opacity: 0.95;
}

/*====================================================
                    INTRO
======================================================*/

.services-intro {
    margin-bottom: 30px;
}

.services-intro-box {
    background: #ffffff;
    border: 1px solid #e7eef4;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(25, 61, 84, 0.05);
    text-align: center;
}

    .services-intro-box h2 {
        font-size: 34px;
        color: #243746;
        margin-bottom: 15px;
    }

    .services-intro-box p {
        font-size: 17px;
        color: #66727d;
        max-width: 900px;
        margin: 0 auto;
        line-height: 1.8;
    }

/*====================================================
                    BLOCKS
======================================================*/

.services-content {
    padding-bottom: 20px;
}

.service-block {
    background: #ffffff;
    border: 1px solid #e7eef4;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(25, 61, 84, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

    .service-block:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 35px rgba(25, 61, 84, 0.10);
    }

.service-block-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.service-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1d99ef 0%, #0b8e95 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(29, 153, 239, 0.18);
}

.service-block-header h3 {
    font-size: 24px;
    color: #243746;
    margin: 0;
    line-height: 1.4;
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .service-list li {
        position: relative;
        padding: 12px 0 12px 22px;
        border-bottom: 1px solid #edf2f7;
        color: #4c5a66;
        font-size: 16px;
        line-height: 1.6;
    }

        .service-list li:last-child {
            border-bottom: none;
        }

        .service-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 20px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #0b8e95;
        }

/*====================================================
                    CTA
======================================================*/

.services-cta {
    padding: 20px 0 70px;
}

.services-cta-box {
    background: linear-gradient(135deg, #1d99ef 0%, #0b8e95 100%);
    border-radius: 24px;
    padding: 50px 30px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(13, 83, 111, 0.18);
}

    .services-cta-box h2 {
        font-size: 34px;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .services-cta-box p {
        font-size: 17px;
        line-height: 1.8;
        max-width: 850px;
        margin: 0 auto 24px;
        color: rgba(255, 255, 255, 0.94);
    }

.btn-services-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: 12px;
    background: #fff;
    color: #0b8e95;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

    .btn-services-main:hover {
        background: #f3f9fc;
        color: #08757b;
        text-decoration: none;
    }

/*====================================================
                    RESPONSIVE
======================================================*/

@media (max-width: 991px) {
    .services-hero {
        min-height: 260px;
        margin-bottom: 45px;
    }

        .services-hero h1 {
            font-size: 40px;
        }

        .services-hero p {
            font-size: 17px;
            max-width: 90%;
        }

    .services-intro-box h2,
    .services-cta-box h2 {
        font-size: 28px;
    }

    .service-block-header h3 {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .services-hero {
        min-height: 220px;
    }

        .services-hero h1 {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .services-hero p {
            font-size: 15px;
            line-height: 1.6;
        }

    .services-intro-box,
    .service-block,
    .services-cta-box {
        padding: 24px 18px;
    }

        .services-intro-box h2,
        .services-cta-box h2 {
            font-size: 24px;
        }

    .service-block-header {
        align-items: flex-start;
    }

        .service-block-header h3 {
            font-size: 20px;
        }

    .service-list li {
        font-size: 15px;
    }
}
/*========================================
    ABOUT VALUES SECTION FIX
========================================*/

.business-growth-p1 {
    padding-bottom: 100px;
}

    .business-growth-p1 > .container > .row > .service-padding {
        padding: 0;
    }

.service-item {
    padding: 40px 0 0 0;
    margin: 0;
    border: 1px solid #ddd;
    border-right: 0px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    transition: padding .5s ease;
}

    .service-item:last-child {
        border-right: 1px solid #ddd;
    }

    .service-item:hover {
        padding: 20px 0 20px 0;
        margin: 0;
        transition: all .5s ease;
        border-bottom: 5px solid #2196f3;
    }

.service-item-icon {
    width: 102px;
    height: 102px;
    margin: 0 auto;
    margin-bottom: 30px;
    border: 6px solid #f6f6f6;
    border-radius: 100%;
}

    .service-item-icon i {
        color: #2196f3;
        height: 90px;
        line-height: 90px;
        width: 90px;
        border: 1px solid #e0e0e0;
        border-radius: 100%;
        text-align: center;
    }

.service-item:hover .service-item-icon i {
    color: #fff;
    background-color: #2196f3;
}

.service-item-title h3 {
    font-size: 20px;
    text-align: center;
    font-weight: 400;
    margin: 0 0 10px 0;
    text-transform: capitalize;
}

.service-item-desc p {
    margin: 20px auto;
    width: 70%;
    text-align: center
}

ul.service-spec {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 40px 0;
}

    ul.service-spec li p {
        font-weight: 300;
        text-transform: uppercase;
        padding-bottom: 10px;
    }

@media (max-width: 767px) {
    .business-growth-p1 {
        padding: 0 40px 100px 40px;
    }
}