/* =========================================
   AMBIENT BACKGROUND PARTICLE CSS
   ========================================= */

/* 1. Set the absolute bottom layer to your Apple light grey */
html {
    background-color: #fbfbfd !important;
}

/* 2. Force the body to be see-through so the canvas is visible */
body {
    background-color: transparent !important;
}

/* 3. The Canvas: Wedged between the HTML and the Body */
#projector {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    z-index: -1; 
    pointer-events: none; /* Allows mouse clicks to pass through */
    background: transparent;
}

/* 4. Ensure your content sits ABOVE the particles */
main, footer {
    position: relative;
    z-index: 10;
}

/* 5. THE HEADER FIX: Force it to stick to the top with a premium glass effect */
header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    background: rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(20px) saturate(180%) !important; 
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}

/* 6. Remove solid backgrounds from ALL main sections so we can see the canvas */
/* Added the specific sections from services.html */
main section, 
.services-main,
.waas-utility-section,
.service-row,
.row-flex,
.row-text {
    background: transparent !important;
}

/* 7. THE CARDS FIX: Highly transparent frosted glass so particles show through */
/* Added .waas-card so your Service packages become Apple glass! */
.benefit-card.apple-style,
.benefit-card .glass-content,
.principal-box,
.waas-card {
    background: rgba(255, 255, 255, 0.25) !important; 
    backdrop-filter: blur(12px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(150%) !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
}

/* 8. DARK GLASS FOR ACTIVE CARDS: Fixes white text visibility */
.waas-card.active {
    background: rgba(29, 29, 31, 0.65) !important; /* Premium Dark Apple Glass */
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Force the text inside the active card to be bright white */
.waas-card.active h3, 
.waas-card.active p, 
.waas-card.active .card-number {
    color: #ffffff !important;
}