.cards-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            padding: 0px;
        }

        .card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: calc(90% / 4);
            min-width: 220px;
            max-width: 306px;
            padding: 1.5rem;
            border: 2px solid #10589f;
            flex-grow: 1;
            z-index: 1;

        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 20px rgba(9, 129, 209, 0.6);
        }

        .icon-circle {
            background: var(--logistiq-base);
            /* Blue background */
            border-radius: 5px;
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 0 1rem 0;
        }

        .icon-circle img {
            width: 35px;
            height: 35px;
            filter: brightness(0) invert(1);
            /* Makes icon white */
        }

        .card h3 {
            margin: 0.5rem 0;
            font-size: 22px;
        }


        .sea-container {
            padding-bottom: 120px; 
            
        }

        /* Tablet */
        @media (max-width: 768px) {
            .card {
                width: calc(50% - 1rem);
            }
        }

        /* Mobile */
        @media (max-width: 500px) {
            .card {
                width: 100%;
            }
        }
        .about-three__img::before{
            display: none;
        }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-three__content {
        margin-top: 0;
    }
}
.icon-circle img{
   
    transition: transform 0.5s ease;
}
/* .card:hover .icon-circle{
    transform: scaleX(-1);
} */
 

.about-two{
    padding-top: 0;
    

}

.about-three__content-list ul li:hover .icon img{
    transform: scaleX(-1);
}

.card:hover img{
    transform: scaleX(-1);
}