/* ============================
   SERVICES SECTION
============================ */
.services {
    padding: 20px 10% 100px 10%;
    background: #ffffff;
    color: #000;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

/* ===== SERVICE CARD ===== */
.service-box {
    background: #f8f8f8;
    padding: 35px;
    border-radius: 18px;

    border: 1px solid #e5e5e5;
    transition: 0.3s ease, box-shadow 0.3s ease;

    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    text-align: left;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: #d0d0d0;
}

.service-box h3 {
    margin-bottom: 18px;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

/* ===== UL LIST WITH TICKS ===== */
.service-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-box ul li {
    margin: 10px 0;
    font-size: 16px;
    display: grid;
    grid-template-columns: 20px auto; /* left: tick, right: text */
    align-items: start;
    column-gap: 10px;
}

/* ===== TICK ICON ===== */
.service-box ul li::before {
    content: "✔";
    font-weight: 700;
    color: #0d6efd;
    font-size: 16px;
    margin-top: 2px; /* optional subtle alignment tweak */
}

.service-link {
    text-decoration: none;
    color: inherit;
    display: block;     /* makes entire box clickable */
}

.service-link:hover .service-box {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-box {
        padding: 28px;
    }
}