.elementor-13749 .elementor-element.elementor-element-9660318{--display:flex;}/* Start custom CSS for html, class: .elementor-element-131cb33 *//* Container */
.awards-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Başlık */
.awards-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #4D53AC, #55CBE2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Görselli ödüller */
.award {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  gap: 20px;
}

.award:nth-child(even) {
  flex-direction: row-reverse;
}

.award img {
  max-width: 300px;
  width: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
  background-color: #f5f5f5;
}

.award-content {
  flex: 1;
  min-width: 250px;
}

.award-content h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #4D53AC;
}

.award-content h3 {
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 10px;
  color: #55CBE2;
}

.award-content p {
  margin: 0;
}

/* Görselsiz ödüller */
.awards-list {
  margin-top: 60px;
}

.awards-list h2 {
  font-size: 1.5rem;
  color: #4D53AC;
  margin-bottom: 30px;
  text-align: center;
}

.awards-list h3 {
  font-size: 1.2rem;
  color: #55CBE2;
  margin-bottom: 10px;
}

.awards-list p {
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .award {
    flex-direction: column !important;
    text-align: center;
  }
  .award img {
    width: 80%;
    height: auto;
    margin: auto;
  }
  .award-content {
    text-align: center;
  }
}
.awards-title {
  background: linear-gradient(90deg, #4D53AC, #55CBE2, #FF6A5A);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 5s linear infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.award img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.award img::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(25deg) translateX(-100%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.award img:hover::after {
  transform: rotate(25deg) translateX(200%);
}
.awards-title {
  background: linear-gradient(90deg, #4D53AC, #55CBE2, #FF6A5A);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 5s linear infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}/* End custom CSS */