/* Service Cards Container */
.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    perspective: 10000px; /* Add perspective to the container */
}

/* Service Cards */
.service-card {
    background: radial-gradient(circle, #d1be82 0%, #d4af37 100%);
    color: #333; /* Dark text for contrast */
    padding: 20px;
    margin: 10px;
    border-style: solid;
    border-color: #8c7414;
    border-width: 1.5px;
    border-radius: 10px;
    flex-basis: 30%;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.8); /* Default shadow depth matching hover effect */
    transition: transform 0.2s, box-shadow 0.1s, background 0.2s; /* Smooth transition for hover effect */
    position: relative; /* Required for positioning child elements */
    transform-style: preserve-3d; /* Preserve 3D transformations for child elements */
    -webkit-text-stroke: .15px #363121;
}
