/* Make the Search Bar translucent */
.search-input {
    background-color: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

/* Add a subtle glow to the cards on hover */
.services .service-card:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px);
    transition: all 0.2s ease-in-out;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

/* Style the headers (Infrastructure, Media, etc) */
h2.category-header {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 5px;
    margin-bottom: 15px;
}