/* =================================
ORELI SERVICE TEMPLATE
Clean structure
================================= */


/* =================================
CONTAINER
================================= */

.oreli-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    box-sizing: border-box;
}


/* =================================
HERO BANNER
================================= */

.banner_page {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner_page img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.banner_page:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.banner_page ._caption {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.banner_page ._title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}


/* =================================
MAIN LAYOUT
================================= */

.oreli-service-wrap {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}


/* =================================
SERVICE CONTENT
================================= */

.oreli-service-content,
.oreli-service-content-inner {
    font-size: 16px;
    line-height: 1.7;
}

.oreli-service-content img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 20px 0;
}

.oreli-service-content h2 {
    color: #a1006b;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

.oreli-service-content h3 {
    margin-top: 25px;
    margin-bottom: 10px;
}

.oreli-service-content p {
    margin-bottom: 16px;
}

.oreli-service-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}


/* prevent overflow */

.oreli-service-content {
    max-width: 100%;
    overflow: hidden;
}

.oreli-service-content * {
    max-width: 100%;
    word-wrap: break-word;
}


/* =================================
RELATED SERVICES
================================= */

.oreli-related-services {
    margin-top: 60px;
}

.oreli-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 25px;
}

.oreli-service-card {
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.oreli-service-card:hover {
    transform: translateY(-6px);
}

.oreli-service-card-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.oreli-service-card-content {
    padding: 18px;
}

.oreli-service-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.oreli-readmore {
    color: #a1006b;
    font-weight: 600;
}


/* =================================
RESPONSIVE
================================= */

@media(max-width:991px) {

    .oreli-service-wrap {
        grid-template-columns: 1fr;
    }

    .banner_page img {
        height: 260px;
    }

    .banner_page ._title {
        font-size: 26px;
    }

    .oreli-service-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px) {

    .oreli-container {
        padding-left: 16px;
        padding-right: 16px;
    }

}