/* Partner Brands Section Styles */
.gl-partner-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
    overflow: hidden;
    position: relative;
}

.gl-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gl-partner-title {
    font-size: 2.5rem;
    color: #2C632C;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    animation: slideInLeft 1s ease-out forwards;
    opacity: 0;
    transform: translateX(-50px);
}

.gl-partner-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #2C632C;
}

.gl-partner-logos-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.gl-partner-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
    animation: scrollLogos 30s linear infinite;
}

.gl-partner-logo {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.gl-partner-logo img {
    max-width: 180px;
    height: auto;
    max-height: 90px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.gl-partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Animation Keyframes */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .gl-partner-title {
        font-size: 2.2rem;
    }
    
    .gl-partner-logo img {
        max-width: 160px;
    }
}

@media screen and (max-width: 768px) {
    .gl-partner-section {
        padding: 3rem 0;
    }
    
    .gl-partner-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .gl-partner-logo img {
        max-width: 140px;
    }
}

@media screen and (max-width: 576px) {
    .gl-partner-section {
        padding: 2.5rem 0;
    }
    
    .gl-partner-title {
        font-size: 1.8rem;
    }
    
    .gl-partner-logo img {
        max-width: 120px;
    }
    
    .gl-partner-logos {
        gap: 1.5rem;
    }
}

/* Add FontAwesome Support */
.gl-partner-section .fas {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.gl-partner-section .far {
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}

.gl-partner-section .fab {
    font-family: 'Font Awesome 5 Brands';
}