@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 5)); } /* Điều chỉnh dựa trên số lượng logo */
}

.slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider-track {
    display: flex;
    width: calc(250px * 10); /* Nhân đôi số lượng logo để chạy mượt */
    animation: scroll 30s linear infinite;
}

.slide {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.slide img {
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.tech-bg-pattern {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%2310b981' stroke-width='0.5' stroke-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
@keyframes pulse-node {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.5); fill: #10b981; /* Màu brandGreen */ }
}

.animate-pulse-node {
    animation: pulse-node 4s infinite ease-in-out;
}
/* Màu mặc định cho menu */
.nav-link {
    color: #374151; /* gray-700 */
    transition: color 0.3s;
    position: relative;
}

/* Trạng thái Active */
/* Trong file style.css hoặc thẻ <style> */
.nav-link.active {
    color: #10b981 !important; /* Xanh brandGreen của SaigonGreenTech */
    font-weight: 700 !important;
    position: relative;
}
/* Hiệu ứng gạch chân cho trang đang active (tùy chọn) */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #10b981;
}
