/* Hero Section */
.services-hero {
    background: url('../images/ourservices1.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #fff;
}

.services-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.services-hero p {
    font-size: 1.25rem;
    z-index: 2;
    margin-top: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Section Cards */
.card:hover {
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}
