/* Partners Section */
.partners-section {
    padding: 70px 0 50px 0;
    background: #f7faff;
}
.partners-title {
    text-align: center;
    font-size: 2.2rem;
    color: #0d47a1;
    font-weight: 900;
    margin-bottom: 38px;
    letter-spacing: 0.01em;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 28px;
    justify-items: center;
}
.partner-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(30,60,120,0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 38px 22px 28px 22px;
    min-height: 260px;
    transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
    border: 1.5px solid #e3e9f7;
    position: relative;
    text-align: center;
}
.partner-card:hover {
    box-shadow: 0 8px 32px rgba(25,118,210,0.13), 0 2px 16px rgba(30,60,120,0.10);
    border-color: #64b5f6;
    transform: translateY(-3px) scale(1.015);
}
.partner-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3e9f7;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(30,60,120,0.10);
    overflow: hidden;
}
.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
    background: #fff;
}
.partner-name {
    font-size: 1.13rem;
    font-weight: 700;
    color: #1976d2;
    margin-top: 2px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    word-break: break-word;
}
.partner-sub {
    font-size: 1rem;
    color: #444;
    font-weight: 500;
    margin-top: 2px;
    margin-bottom: 6px;
    opacity: 0.85;
}
.partner-desc {
    font-size: 0.98rem;
    color: #222;
    margin-top: 10px;
    line-height: 1.7;
    font-weight: 400;
    opacity: 0.95;
    text-align: center;
}
.partner-divider {
    width: 60%;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #1976d2 0%, #64b5f6 100%);
    opacity: 0.18;
    margin: 16px 0 12px 0;
}
.partners-section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px auto;
    height: 22px;
    width: 100%;
    max-width: 900px;
}
.partners-section-divider::before,
.partners-section-divider::after {
    content: '';
    display: block;
    height: 4px;
    width: 100%;
    max-width: 320px;
    border-radius: 2px;
    background: linear-gradient(90deg, #1976d2, #64b5f6);
    opacity: 0.18;
}
.partners-section-divider::before {
    margin-right: 16px;
}
.partners-section-divider::after {
    margin-left: 16px;
}
.partners-section-divider .cap-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(30,60,120,0.08);
    padding: 2px;
    z-index: 2;
}
@media (max-width: 1100px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .partners-section {
        padding: 36px 0 18px 0;
    }
    .partners-title {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 18px 10px;
    }
    .partner-card {
        padding: 18px 6px 12px 6px;
        min-height: 120px;
    }
    .partner-logo {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }
    .partner-name {
        font-size: 0.98rem;
    }
    .partners-section-divider::before,
    .partners-section-divider::after {
        max-width: 60px;
    }
}
html[dir="rtl"] .partners-grid {
    direction: rtl;
}
html[dir="rtl"] .partner-card {
    text-align: right;
}
