/* Our Strengths - styling for the strengths section */
.our-strengths {
    background: var(--light-white);
}

.strength-container {
    padding: var(--container-padding);
    display: flex;
    flex-direction: column;
    gap: var(--section-gap);
}



.strength-points {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: var(--space-md);
}

.strength-point {
    background: #ffffff;
    border-radius: 12px;
    padding: var(--space-md);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    text-align: center;
    transition: transform 200ms ease, box-shadow 200ms ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.strength-point:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.strength-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}



.strength-title {
    font-size: var(--big-para);
    font-weight: 700;
    color: var(--dark-blue-bg);
}

.strength-description {
    color: var(--light-font);
    font-size: var(--mini-text);
    line-height: 1.5;
}

@media (max-width: 1000px) {
    .strength-points {
        grid-template-columns: repeat(6,  1fr);
    }
    .strength-point{
        grid-column: span 2;
    }
    .strength-point:nth-child(7),
    .strength-point:nth-child(8) {
        grid-column: span 3;
    }

    .strength-icon img {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 768px) {
    .strength-points {
        grid-template-columns: repeat(4,  1fr);
        gap: var(--space-md);

    }
    .strength-point{
        grid-column: span 2;
    }
    .strength-point:nth-child(7),
    .strength-point:nth-child(8) {
        grid-column: span 2;
    }

}

@media (max-width: 500px) {
    .strength-points {
        grid-template-columns: 1fr;
    }

    /*  */

    /* .strength-icon img {
        width: 40px;
        height: 40px;
    } */

}