/* Makes the service cards much darker and less transparent */
.service-card {
    background-color: rgba(0, 0, 0, 0.7) !important; /* 70% black */
    border: 1px solid rgba(255, 255, 255, 0.1) !important; /* Subtle border */
    backdrop-filter: blur(10px); /* Enhanced frosted effect */
}

/* Makes the widgets (stats) inside the cards stand out */
.widget-data {
    color: #e2e8f0 !important; /* Light slate text */
}

/* Darkens the group headers */
.group-title {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-weight: 800;
}