/* 1. FORCE TRANSPARENCY (Critical for Vanta) */
body, #__next, .flex.h-full, .flex.flex-col {
    background-color: transparent !important;
    background: transparent !important;
}

/* 2. UNIVERSAL TEXT READABILITY (The "No-Box" Fix) */
/* This targets Headers, Top Bar, and Widget Titles */
h2, h3, .group-title, 
div[class*="text-xl"], 
div[class*="text-2xl"], 
div[class*="text-sm"], /* Top Bar Stats */
span {
    /* Pure White Text */
    color: #ffffff !important;
    
    /* REMOVE ALL BOXES AND BORDERS */
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    
    /* THE HEAVY BLACK OUTLINE (Readability without the Ugly) */
    text-shadow: 
        2px 2px 0 #000, 
       -1px -1px 0 #000,  
        1px -1px 0 #000,
       -1px  1px 0 #000,
        1px  1px 0 #000 !important;
}

/* 3. HEADERS SPECIFIC SPACING */
/* Just ensures the headers have room, but no visual box */
div[class*="text-xl"], 
div[class*="text-2xl"] {
    margin-bottom: 15px !important;
    padding-left: 5px !important; /* Slight nudge alignment */
    font-weight: 900 !important;
    text-transform: uppercase;
    display: inline-block !important;
}

/* 4. THE GLASS CARDS (Your Preferred Style) */
.services-group .service-card {
    background-color: rgba(5, 15, 20, 0.6) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 255, 240, 0.3) !important;
    box-shadow: 0 0 15px rgba(0, 255, 240, 0.1);
    border-radius: 12px;
}

/* 5. HOVER EFFECT */
.services-group .service-card:hover {
    transform: none !important;
    border-color: #00fff0 !important;
    box-shadow: inset 0 0 20px rgba(0, 255, 240, 0.2), 0 0 20px rgba(0, 255, 240, 0.4) !important;
    background-color: rgba(5, 30, 40, 0.7) !important;
}

/* 6. CARD TEXT (Name & Description) */
.service-card .name {
    color: #ffffff !important;
    font-weight: 700 !important;
    /* Extra thick shadow for card titles */
    text-shadow: 3px 3px 0 #000 !important; 
}
.service-card .description {
    color: #a0e0e0 !important;
    text-shadow: 1px 1px 0 #000 !important;
}