.services {
    text-align: center;
    padding: 40px;
    background-color: #f7f7f7;
    height: auto;
    padding-top: 150px;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.service-card {
    background-color: #fff;
    width: 350px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #4D4949;
    margin: 15px 0;
}

.service-card p {
    font-size: 1rem;
    color: #6c6c6c;
}
.service-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    background-color: #4D4949;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.service-btn:hover {
    background-color: #D2AC2C;
}
/* Responsive Design */
@media (max-width: 992px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 80%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .services h2 {
        font-size: 1.5rem;
    }

    .service-card {
        width: 90%;
    }
}
