/* ANIMATED WHITE PREMIUM BACKGROUND WIDGET */
.lw-widget-container_7be65241 {
    position: relative;
    padding: 60px 40px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(8, 33, 89, 0.05);
    overflow: hidden;
    z-index: 1;
}

/* Beautiful slow background shifting blobs */
.lw-bg-animated-blob_7be65241,
.lw-bg-animated-blob-2_7be65241 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

.lw-bg-animated-blob_7be65241 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(8, 33, 89, 0.04) 0%, rgba(255,255,255,0) 70%);
    top: -10%;
    left: -10%;
    animation: lwFloatBlob_7be65241 20s infinite alternate ease-in-out;
}

.lw-bg-animated-blob-2_7be65241 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(227, 27, 35, 0.03) 0%, rgba(255,255,255,0) 70%);
    bottom: -15%;
    right: -10%;
    animation: lwFloatBlob_7be65241 25s infinite alternate-reverse ease-in-out;
}

@keyframes lwFloatBlob_7be65241 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 60px) scale(1.1); }
    100% { transform: translate(-20px, -40px) scale(0.95); }
}

/* Layout */
.lw-grid-container_7be65241 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 991px) {
    .lw-grid-container_7be65241 {
        grid-template-columns: 1fr;
    }
}

.lw-title_7be65241 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 15px 0;
    color: #082159;
}

.lw-accent-line_7be65241 {
    width: 60px;
    height: 4px;
    background-color: #e31b23;
    border-radius: 2px;
    margin-bottom: 25px;
}

.lw-desc_7be65241 {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #082159;
    opacity: 0.9;
}

.lw-section-header_7be65241 {
    font-size: 18px;
    font-weight: 700;
    color: #082159;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lw-results-header_7be65241 {
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Focus Areas List */
.lw-focus-list_7be65241 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 10px;
}

@media (max-width: 576px) {
    .lw-focus-list_7be65241 {
        grid-template-columns: 1fr;
    }
}

.lw-focus-item_7be65241 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #082159;
    transition: transform 0.3s ease;
}

.lw-focus-item_7be65241:hover {
    transform: translateX(5px);
}

.lw-focus-icon_7be65241 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #e31b23;
}

.lw-focus-icon_7be65241 svg {
    width: 100%;
    height: auto;
    fill: #e31b23;
}

/* Stats / Results */
.lw-stats-grid_7be65241 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(8, 33, 89, 0.1);
    padding-top: 25px;
}

@media (max-width: 576px) {
    .lw-stats-grid_7be65241 {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.lw-stat-card_7be65241 {
    text-align: left;
}

.lw-stat-val_7be65241 {
    font-size: 32px;
    font-weight: 800;
    color: #082159;
    margin: 0 0 5px 0;
    display: inline-block;
}

.lw-stat-lbl_7be65241 {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
    color: #082159;
    opacity: 0.8;
    margin: 0;
}

/* One Image Side & Other Bottom Layout */
.lw-image-layout_7be65241 {
    position: relative;
    width: 100%;
    height: 440px;
}

.lw-img-side_7be65241 {
    position: absolute;
    width: 75%;
    height: 280px;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(8, 33, 89, 0.1);
}

.lw-img-bottom_7be65241 {
    position: absolute;
    width: 65%;
    height: 220px;
    bottom: 0;
    right: 0;
    z-index: 2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(8, 33, 89, 0.15);
    border: 6px solid #ffffff;
}

.lw-image-layout_7be65241 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.lw-image-layout_7be65241 div:hover img {
    transform: scale(1.05);
}
