/* Features and Galleries Section */
.features-galleries-section {
    background-color: black;
    color: white;
    padding: 100px 0;
}

.features-panel h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.features-lists {
    list-style: none;
    padding-left: 0;
    margin-top: 14px;
}

.features-lists li {
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
}

.check-icon {
    color: white;
    background-color: #ffb703;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-top: 16px;
}

.galleries-panel {
    overflow-x: hidden;
}

.gallery-line {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 15px;
    animation: scrollGallery 10s linear infinite;
}

.logo-background {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    margin: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 120px;
    height: 120px;
}

.logo-background img {
    max-width: 100%;
    height: auto;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.gallery-line:nth-child(odd) {
    animation-direction: reverse;
}
