body {
    font-family: Arial, sans-serif;
}
/* Căn chỉnh logo vào header */
.header {
background: #ffffff;
padding: 10px 0;
}

/* ===================== Cấu trúc Navigation Bar ===================== */
.navbar {
display: flex;
justify-content: space-between; /* Canh đều hai bên */
align-items: center;
padding: 10px 20px;
background: linear-gradient(to right, #007bff, #0368d4); /* Màu nền header */
}

/* ===================== Menu Navigation ===================== */
.nav-links {
display: flex;
list-style: none;
gap: 20px; /* Khoảng cách giữa các mục menu */
margin: 0;
padding: 0;
}

.nav-links li {
display: inline-block;
}

.nav-links a {
text-decoration: none;
color: white;
font-size: 16px;
font-weight: bold;
padding: 10px 15px;
border-radius: 5px;
transition: 0.3s ease-in-out;
}

/* Hover effect */
.nav-links a:hover {
background-color: rgba(255, 255, 255, 0.2);
color: #fff;
}

/* ===================== Responsive Menu (Ẩn khi màn hình nhỏ) ===================== */
@media (max-width: 768px) {
.nav-links {
    flex-direction: column;
    gap: 10px;
    display: none; /* Mặc định ẩn */
    position: absolute;
    top: 60px;
    right: 20px;
    background: rgba(0, 123, 255, 0.9);
    padding: 10px;
    border-radius: 5px;
}

.nav-links.active {
    display: flex;
}
}



.banner {
    background: linear-gradient(to right, #007bff, #0368d4);
    padding: 60px 0;
    color: white;
}

.banner h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.services {
    padding: 50px 0;
}

.services i {
    color: #007bff;
    margin-bottom: 10px;
}

.hotline {
    background: #007bff;
    color: white;
    padding: 20px 0;
    font-size: 1.2rem;
}

.footer {
    padding: 20px 0;
    margin-top: 30px;
}
.navbar .btn-light {
font-weight: bold;
border-radius: 20px;
padding: 5px 15px;
}
.navbar .btn-light:hover {
background-color: #f8f9fa;
color: #007bff;
}



/* Wrapper để chứa marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #f9f9f9;
    padding: 10px 0;
    position: relative;
}

/* Dải chứa logo */
.marquee-content {
    display: flex;
    gap: 40px; /* Khoảng cách giữa các logo */
    width: max-content; /* Để container tự mở rộng */
    animation: marquee 100s linear infinite;
}

/* Logo */
.marquee-content img {
    height: 200px;
    display: inline-block;
}

/* Hover để dừng marquee */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* Hiệu ứng chạy ngang liên tục */
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
