/* =========================================
   STRENGTH CARD REDESIGN (NEW)
   ========================================= */

/* Section Background (Optional if needed) */
.stre-capb {
    /* Existing background: url('.././img/19.jpg') ... */
    /* Ensure padding for content */
    padding: 60px 0;
}

/* Card Container */
.strength-card-new {
    /* No visible card background, just content */
    text-align: center;
    transition: transform 0.3s ease;
    cursor: default;
}

.strength-card-new:hover {
    transform: translateY(-8px);
}

/* Image Rectangle with Rounded Corners */
.strength-card-new .image-box {
    position: relative;
    width: 100%;
    height: 480px;
    /* Tall vertical aspect ratio */
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Dark Overlay Gradient (Top to Bottom) */
.strength-card-new .image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            /* Clear at top */
            rgba(0, 0, 0, 0.4) 100%
            /* Darker at bottom */
        );
}

/* Icon Badge (Floating in center-top) */
.strength-card-new .icon-badge {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(30, 50, 60, 0.9);
    /* Dark slate/greenish tone */
    border-radius: 16px;
    /* Soft square */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.strength-card-new .icon-badge i {
    font-size: 32px;
    color: #fff;
}

/* Text Label Below Card */
.strength-card-new h5 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    margin-top: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Ensure readability */
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 991px) {
    .strength-card-new .image-box {
        height: 350px;
        /* Slightly shorter on tablets */
    }
}

@media (max-width: 576px) {
    .strength-card-new .image-box {
        height: 280px;
        /* Even shorter on mobile */
    }

    .strength-card-new .icon-badge {
        width: 60px;
        height: 60px;
    }

    .strength-card-new .icon-badge i {
        font-size: 24px;
    }
}