.elementor-106 .elementor-element.elementor-element-b06cb7c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-de3f5d6 *//* FULL BLACK PAGE BACKGROUND */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: black;   /* PURE BLACK */
    color: #333;
    width: 100%;
}

/* FULL-WIDTH WHITE DESIGN BLOCK */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 40px 20px;
    background: white;   /* FULL WHITE DESIGN SECTION */
    border-radius: 0;
    box-shadow: none;
}

/* HEADER IS INSIDE WHITE AREA */
.header {
    background: linear-gradient(#4F46E5);
    padding: 25px;
    text-align: center;
    color: white;
    font-size: 26px;
    font-weight: 600;
    width: 100%;
}

/* TITLE */
.title {
    text-align: center;
    font-size: 24px;
    margin: 25px 0;
    font-weight: 600;
    color: #111;
}

/* CARD GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
    gap: 20px;
}

@media (max-width: 600px) {
    .grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}


/* WHITE CARDS */
.card {
    background: #f9fafb;
    padding: 18px;
    border-radius: 14px;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: .3s;
    font-weight: 500;
    color: #000;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
}

.card img {
    width: 45px;
    margin-bottom: 10px;
}

.card:hover,
.card.selected {
    border-color: #4f46e5;
    background: #eef2ff;
}

/* AD BLOCKS */
.ad-box {
    background: #e5e7eb;
    height: 120px;
    border-radius: 12px;
    margin: 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px dashed #9ca3af;
    color: ;
}

/* NEXT BUTTON */
.next-btn {
    margin-top: 30px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: block;
    color:white; 
    background: #4F46E5;    /* disabled */
    pointer-events: none;
}

.next-btn.active {
    background:#4F46E5;
    pointer-events: auto;
}/* End custom CSS */