 @keyframes ws-scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

 .ws-section-sm-mt {
    margin-top: 60px;
}

 .ws-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

 .ws-infrastructure-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

 .ws-infrastructure-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.ws-infrastructure-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

 .ws-infrastructure-img {
    width: 100%;
    height: 270px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
}

.ws-infrastructure-img img {
    width: 60%;
    height: 60%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

 .ws-infrastructure-item:hover .ws-infrastructure-img img {
    transform: scale(1.02);
}

 .ws-infrastructure-title {
    font-size: 20px;
    font-weight: 600;
    color: #2F3E46;
    margin: 0 0 10px 0;
    text-align: center;
    transition: color 0.3s ease;
	text-transform:uppercase;
}

 .ws-infrastructure-item:hover .ws-infrastructure-title {
    color: #277E91;
}
 
 .ws-animate-scale {
    opacity: 0;
    transform: scale(0.5);
    animation: ws-scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

 .ws-delay-1 {
    animation-delay: 0.3s;
}

.ws-delay-2 {
    animation-delay: 0.5s;
}

.ws-delay-3 {
    animation-delay: 0.7s;
}

 @media (max-width: 992px) {
    .ws-infrastructure-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ws-infrastructure-list {
        grid-template-columns: 1fr;
    }
    
    .ws-infrastructure-img {
        height: 220px;
    }
    
    .ws-infrastructure-title {
        font-size: 18px;
    }
}