/* News Alert Section Styles */
.news-alert-section {
    padding: 15px;
    background-color: #f8f9fa;
    border-left: 4px solid #3a9e1e;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.news-alert-container {
    display: flex;
    align-items: center;
}

.alert-title {
    background-color: #3a9e1e;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    margin-right: 15px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.news-ticker {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.news-ticker ul {
    display: flex;
    padding-left: 0;
    list-style: none;
    margin: 0;
    animation: tickerAnimation 20s linear infinite;
}

.news-ticker li {
    white-space: nowrap;
    margin-right: 30px;
    padding: 3px 0;
}

.news-ticker .date {
    font-weight: bold;
    margin-right: 10px;
    color: #3a9e1e;
}

.news-ticker .content {
    color: #333;
}

@keyframes tickerAnimation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .news-alert-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .alert-title {
        margin-bottom: 10px;
        margin-right: 0;
    }
}

/* Client Section Styles */
.clients-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    position: relative;
}

.clients-section .pattern-layer {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.clients-section .sec-title {
    margin-bottom: 30px;
    position: relative;
}

.clients-section .sec-title h2 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.clients-carousel {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.clients-logo {
    text-align: center;
    margin: 15px;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 150px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.clients-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.clients-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.clients-logo img {
    /* max-height: 70px;
    max-width: 150px; */
    filter: grayscale(100%);
    transition: all 0.4s ease;
    opacity: 0.7;
}

.clients-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
