/* Service Page */
.service_page {
    background-color: #f4f3f2;
}

.service_block {
    margin: -200px auto 0;
    background-color: #fff;
    padding: 40px;
    text-align: center;
    position: relative;
    border-radius: 5px;
}

.service_block p {
    font-size: 18px;
    margin: 20px auto;
}

.section-featured-img {
    height: 500px;
    background-image: url(../images/agility-logistics-parks-compressed.jpg);
    background-size: cover;
    background-position: center center;
    position: relative;
}

.section-featured-img:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, .8) 20%, rgba(0, 0, 0, .5) 70%);
    background-image: -o-linear-gradient(rgba(0, 0, 0, .8) 20%, rgba(0, 0, 0, .5) 70%);
    background-image: linear-gradient(rgba(0, 0, 0, .8) 15%, rgba(0, 0, 0, .5) 40%);
    opacity: 0.7;
}

.service_icons .icon {
    min-height: 200px;
    margin-bottom: 10px;
}

.service_icons .icon h3 {
    margin-top: 15px;
    font-family: var(--font-karla);
    font-size: 18px;
    color: #000;
    font-weight: bold;
    line-height: 1.7;
}

/* Service Inner Page */
.service_sec {
    padding: 60px 0;
}

.content-box,
.card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 0;
}

.content-box p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 16px;
}

.info-box {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--theme);
}

.card p {
    color: #555;
    line-height: 24px;
    font-size: 14px;
}

.card .read-more {
    padding: 10px 20px;
}

.service-card {
    display: flex;
    gap: 30px;
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    margin-bottom: 35px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 18px;
    color: #0d1b2a;
}

.service-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
}

.content-box h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--theme);
    font-weight: bold;
}

.card ul {
    padding-left: 20px;
}

.card ul li {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.service-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .service_block {
        padding: 15px;
    }

    .service_block p {
        font-size: 14px;
    }

    .content-box,
    .card {
        padding: 25px;
    }

    .info-box {
        margin-top: 30px;
    }

    .service-card {
        flex-direction: column;
        padding: 25px;
    }

    .service-content h2 {
        font-size: 26px;
    }
}