/****************** Service Page ******************/

#service {
    padding-top: 40px;
    padding-bottom: 60px;
}

#service .brand-title {
    font-size: 32px;
    font-weight: 700;
    color: val(--color-dark) !important;
}

.service-subtitle {
    margin-top: 8px;
    font-size: 15px;
    color: #666;
}

/* Card Layout */
.service-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0px 5px 18px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 22px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.service-card .content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: #063970;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #555;
    flex-grow: 1;
}

.service-card a {
    text-decoration: none;
    font-weight: 600;
    color: #1e81b0;
    margin-top: 12px;
    display: inline-block;
}

.service-card a:hover {
    color: #063970;
}

/****************** Responsive ******************/

@media (max-width: 768px) {
    .service-card img {
        height: 130px;
    }
}
