/* =========================================
   Partner Grid Styles (Static)
   ========================================= */
.partners-grid-section {
    background: #000000;
background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(18, 17, 17, 1) 50%, rgba(0, 0, 0, 0) 100%);
    /* Deep black/dark grey */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    padding: 60px;
}

/* Subtle background texture or gradient if needed */
.partners-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.partner-logo-box {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.015);
    /* Very subtle card effect */
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.partner-logo {
    max-height: 35px;
    /* Clean, minimal size */
    max-width: 70%;
    object-fit: contain;
    /* Monochrome look: Make logos white */
    filter: brightness(0) invert(1) opacity(0.6);
    transition: all 0.4s ease;
}

/* Hover Effects */
.partner-logo-box:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.partner-logo-box:hover .partner-logo {
    opacity: 1;
    filter: brightness(0) invert(1) opacity(1);
    /* Keep white but brighter */
    transform: scale(1.05);
}