.partners-section {
    background-color: #f4f7f8;
    padding: 60px 0;
}

.partners-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.text-side {
    flex: 1 1 300px;
}

.text-side h5 {
    font-size: 16px;
    color: #d10000;
    margin-bottom: 10px;
}

.text-side h2 {
    font-size: 32px;
    color: #282c32;
    margin-bottom: 20px;
}

.text-side p {
    font-size: 16px;
    color: #555;
}

.logos-side {
    flex: 2 1 700px;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.logo-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-item img:hover {
    filter: grayscale(0%);
}
.icon-box {
    width: 70px;
    height: 70px;
    background: #f8f8ff; /* Açık gri veya beyazımsı arka plan */
    border: 1px solid #e0e0e0; /* İnce bir sınır */
    border-radius: 16px; /* Köşeleri oval yapar */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px; /* İkonlar arasında boşluk */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); /* Hafif gölge opsiyonel */
}

.icon-box i {
    font-size: 28px; /* İkon boyutu */
    color: #6c63ff; /* Polixir kurumsal moruna benzer bir ton */
}
.bosluk {
    height: 50px; /* Boşluğun yüksekliği */
    }