/* Partners Section */
.partners {
    padding: 100px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 45%;
    height: 150%;
    background-image: url('/assets/img/logo+all/big_logo.png');
    background-repeat: no-repeat;
    background-position: 100% 50%;
    background-size: contain;
    opacity: 0.05;
    z-index: 1;
}

.partners .container {
    position: relative;
    z-index: 2;
}

.partners-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.partners .section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--text-color);
    white-space: nowrap;
    text-align: left;
}

.partners-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    padding-top: 10px;
    text-align: justify;
    max-width: 550px;
    margin-left: auto;
}

.partners-description p {
    margin-bottom: 1rem;
}

.justified-paragraph {
    display: flex;
    flex-direction: column;
}

.justified-line {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.highlight {
    color: var(--text-color);
    font-weight: 500;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.partner-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.partner-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(8, 38, 239, 0.3);
}

.partner-logo {
    max-width: 80%;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.partner-card:hover .partner-logo {
    opacity: 1;
    transform: scale(1.05);
} 