/* ================= TITLE ================= */
.service-title {
    font-size: 28px;
    color: #0a6847;
}

/* ================= SERVICE CARD ================= */
.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 15px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.service-card h4 {
    margin-top: 15px;
    font-weight: bold;
    color: #0a6847;
}

.service-card p {
    color: #444;
    font-size: 14px;
}

/* IMAGE BOX */
.img-box {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 10px;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.img-box:hover img {
    transform: scale(1.1);
}

/* ================= ADMIN ACTIONS ================= */
.service-admin-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 12px;
    opacity: 0;
    z-index: 10;
}

.service-admin-actions img {
    width: 28px;
    height: 28px;
    background: #fff;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: 0.2s;
}

.service-admin-actions img:hover {
    transform: scale(1.15);
}

.service-card:hover .service-admin-actions {
    opacity: 1;
}

/* ================= PAGINATION ================= */
.pagination .page-link {
    color: #0a6847;
}

.pagination .active .page-link {
    background-color: #0a6847;
    border-color: #0a6847;
    color: #fff;
}

/* ================= SIDEBAR RIGHT ================= */
.sidebar-box {
    background: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ================= WHY CHOOSE ================= */
.sidebar-box h4 {
    color: #dc3545;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #e5e5e5;
}

.why-list li:last-child {
    border-bottom: none;
}

.why-list li::before {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url("/img/check.png");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* ================= SUPPORT 24/7 ================= */
.support-box {
    border: 2px solid #dc3545;
    border-radius: 12px;
    background: #fff;
}

.support-title {
    color: #dc3545;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.support-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 12px;
}

.support-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-phone {
    font-size: 20px;
    font-weight: 700;
    color: #0a6847;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .sidebar-box {
        margin-top: 20px;
    }
}
/* ================= ADD SERVICE BUTTON ================= */
.service-header {
    position: relative;
}

.add-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #eef3ff;
    transition: 0.25s ease;
}

.add-service-btn img {
    width: 22px;
    height: 22px;
}

.add-service-btn:hover {
    background: #dce5ff;
    transform: scale(1.1);
}
