/* Strength Cards - Diagonal Blue Design */

/* Keyframe Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: skewX(-5deg) translateX(-100px);
    }

    to {
        opacity: 1;
        transform: skewX(-5deg) translateX(0);
    }
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: skewX(-5deg) translateY(0);
    }

    50% {
        transform: skewX(-5deg) translateY(-10px);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(13, 115, 119, 0.3);
    }

    50% {
        box-shadow: 0 15px 40px rgba(20, 160, 133, 0.5);
    }
}

.strength-card {
    position: relative;
    background: linear-gradient(135deg, #0d7377 0%, #14a085 50%, #32e0c4 100%);
    border-radius: 20px;
    padding: 40px 30px 40px 120px;
    min-height: 180px;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: skewX(-5deg);
    animation: slideInLeft 0.8s ease-out forwards, floatAnimation 3s ease-in-out infinite;
    opacity: 0;
}

/* Staggered animation delays for each card */
.col-lg-6:nth-child(1) .strength-card {
    animation-delay: 0s, 0s;
}

.col-lg-6:nth-child(2) .strength-card {
    animation-delay: 0.2s, 0.5s;
}

.col-lg-6:nth-child(3) .strength-card {
    animation-delay: 0.4s, 1s;
}

.col-lg-6:nth-child(4) .strength-card {
    animation-delay: 0.6s, 1.5s;
}

.strength-card:hover {
    transform: skewX(-5deg) scale(1.03);
    box-shadow: 0 20px 50px rgba(13, 115, 119, 0.4);
}

.strength-number {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%) skewX(5deg);
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #0d7377;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-card:hover .strength-number {
    transform: translateY(-50%) skewX(5deg) scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.strength-content {
    transform: skewX(5deg);
    flex: 1;
}

.strength-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: transform 0.3s ease;
}

.strength-card:hover .strength-title {
    transform: translateX(5px);
}

.strength-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.strength-card:hover .strength-text {
    color: rgba(255, 255, 255, 1);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    @keyframes slideInLeftMobile {
        from {
            opacity: 0;
            transform: skewX(-5deg) translateX(-50px);
        }

        to {
            opacity: 1;
            transform: skewX(-5deg) translateX(0);
        }
    }

    .strength-card {
        padding: 35px 25px 35px 110px;
        min-height: 160px;
        animation: slideInLeftMobile 0.8s ease-out forwards, floatAnimation 3s ease-in-out infinite;
    }

    .strength-number {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        left: 25px;
    }

    .strength-title {
        font-size: 1.25rem;
    }

    .strength-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    @keyframes floatAnimationMobile {

        0%,
        100% {
            transform: skewX(-3deg) translateY(0);
        }

        50% {
            transform: skewX(-3deg) translateY(-5px);
        }
    }

    .strength-card {
        transform: skewX(-3deg);
        padding: 30px 20px 30px 100px;
        min-height: 140px;
        animation: slideInLeftMobile 0.8s ease-out forwards, floatAnimationMobile 3s ease-in-out infinite;
    }

    .strength-card:hover {
        transform: skewX(-3deg) scale(1.02);
    }

    .strength-number {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        left: 20px;
    }

    .strength-content {
        transform: skewX(3deg);
    }

    .strength-title {
        font-size: 1.1rem;
    }

    .strength-text {
        font-size: 0.85rem;
    }
}