/* --- --- --- SERVICES STYLES --- --- --- */
#services {
    width: 100%;
    background: linear-gradient(180deg, #eafae5 0%, #d4edc3 100%);
    padding: 20px;
}

#services h2{
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

/* --- Services Card Base Styles --- */
.services-card {
    background-color: transparent;
    border: 1px solid #222;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
}

/* lift on hover */
.services-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#services-card-logo {
    padding: 0px;
    margin: 0px;
    width: 80px!important;
    height: auto;
}

.services-icon {
    color: white;
    text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000,
    1px 1px 3px black;
    margin-bottom: 10px!important;
    margin-top: 5px;
}

/* medium screens (tablets) */
@media (max-width: 991.98px) {
    .services-card {
        padding: 1.25rem;
    }
}

/* small screens (phones) */
@media (max-width: 767.98px) {
    .services-card {
        padding: 1rem;
    }
}

/* extra small (very narrow) */
@media (max-width: 575.98px) {
    .services-card {
        padding: 0.75rem;
    }
}
/* --- --- --- SERVICES STYLES --- --- --- */
