/* ============================================
   HAKKIMIZDA SAYFASI - SERTİFİKALAR BÖLÜMÜ
   ============================================ */

/* Sertifikalar Bölümü Ana Container */
.certificates-section {
  padding: 80px 0;
  background-color: #ffffff;
  position: relative;
}

/* Bölüm Başlığı */
.certificates-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.certificates-section .section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--theme-color-3);
  font-family: var(--outfit-font);
  margin-bottom: 15px;
  line-height: 1.2;
}

.certificates-section .section-title p {
  font-size: 16px;
  color: var(--body-color);
  font-family: var(--dm-sans-font);
  max-width: 600px;
  margin: 0 auto;
}

/* Sertifika Kartları Container - Swiper */
.certificates-wrapper {
  padding: 20px 0;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.certificates-wrapper .swiper {
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.certificates-wrapper .swiper-wrapper {
  display: flex;
  align-items: stretch;
  padding: 0;
}

.certificates-wrapper .swiper-slide {
  height: auto;
  display: flex;
}

/* Tek Sertifika Kartı */
.certificate-card {
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.certificate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Sertifika Görseli */
.certificate-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background-color: #f5f5f5;
  position: relative;
}

.certificate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.certificate-card:hover .certificate-image img {
  transform: scale(1.05);
}

/* Sertifika İsmi */
.certificate-name {
  padding: 20px;
  text-align: center;
  background: #ffffff;
}

.certificate-name h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-color-3);
  font-family: var(--outfit-font);
  margin: 0;
  line-height: 1.4;
}

/* Swiper Navigation Buttons */
.certificates-wrapper .swiper-button-next,
.certificates-wrapper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: var(--theme-color-2);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}

.certificates-wrapper .swiper-button-next {
  right: 10px;
}

.certificates-wrapper .swiper-button-prev {
  left: 10px;
}

.certificates-wrapper .swiper-button-next:after,
.certificates-wrapper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.certificates-wrapper .swiper-button-next:hover,
.certificates-wrapper .swiper-button-prev:hover {
  background: var(--theme-color-3);
  transform: translateY(-50%) scale(1.1);
}

/* Pagination Gizle */
.certificates-wrapper .swiper-pagination {
  display: none;
}

/* Responsive Tasarım */
@media (max-width: 1199px) {
  .certificates-section .section-title h2 {
    font-size: 36px;
  }

  .certificate-image {
    height: 300px;
  }

  .certificates-wrapper .swiper-button-next,
  .certificates-wrapper .swiper-button-prev {
    width: 45px;
    height: 45px;
  }

  .certificates-wrapper .swiper-button-next {
    right: 8px;
  }

  .certificates-wrapper .swiper-button-prev {
    left: 8px;
  }
}

@media (max-width: 767px) {
  .certificates-section {
    padding: 60px 0;
  }

  .certificates-section .section-title h2 {
    font-size: 28px;
  }

  .certificates-section .section-title {
    margin-bottom: 30px;
  }

  .certificate-image {
    height: 280px;
  }

  .certificate-name h4 {
    font-size: 16px;
  }

  .certificates-wrapper .swiper-button-next,
  .certificates-wrapper .swiper-button-prev {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .certificates-section {
    padding: 50px 0;
  }

  .certificates-section .section-title h2 {
    font-size: 24px;
  }

  .certificate-image {
    height: 260px;
  }

  .certificate-name {
    padding: 15px;
  }

}