/* Partners*/
body {
  background: url('/images/background/ortaklarimiz-bg.jpg') no-repeat center center fixed;
  background-size: cover;
}

.cozum-ortaklari {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.cozum-ortaklari h2 {
  text-align: center;
  color: #1b375c;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
}

.partner-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.partner-card {
  width: 280px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 15px 20px;
  display: flex;
  flex-direction: column; /* EKLE */
  align-items: center;
  gap: 15px;
  transition: transform 0.3s;
}


.partner-card:hover {
  transform: scale(1.02);
}

.partner-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #19d0b5;
}

.partner-card a {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  color: #0e5176;
}

.partner-card a:hover {
  text-decoration: underline;
  color: #1e7e99;
}

@media (max-width: 600px) {
  .partner-card {
    width: 20%; /* Tüm genişliği kapla */
    max-width: 280px; /* Ama çok da geniş olmasın */
  }
}


/* Slogan*/

.slogan {
  text-align: center;
  background-color: #cbc2ef;
  color: rgb(3, 0, 165);
  padding: 20px 10px;
  font-weight: 600;
  animation: blink 2s infinite;
}
.slogan h4 {
  margin: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@media (max-width: 600px) {

  .slogan {
    font-size: 1.2rem;
    padding: 20px;
  }
}


