/* Custom Sleek Style */
.service-card, .widget-card {
    background-color: rgba(30, 41, 59, 0.4) !important; /* Translucent slate */
    backdrop-filter: blur(12px);                         /* Frosted glass */
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;                      /* Rounded corners */
    transition: all 0.3s ease-in-out;
}

/* Interaction: Lift card on hover */
.service-card:hover {
    transform: translateY(-4px);
    background-color: rgba(30, 41, 59, 0.6) !important;
    border-color: rgba(56, 189, 248, 0.4) !important;   /* Subtle blue border glow */
}

/* Smooth status dot glow */
.status-dot {
    filter: drop-shadow(0 0 4px currentColor);
}