.navigation-item > a, .navigation-item > button {
font-size: 1.125rem;
}
.navigation-links > li > a { font-size: 14px; }
.project-detail-list ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.project-detail-list ul li {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #333;

  display: flex;
  align-items: flex-start;
}

.project-detail-list ul li strong,
.project-detail-list ul li b {
  display: inline-block;
  width: 30%;
  font-weight: 600;
  flex-shrink: 0;
  color: #1b3764;
}

.project-detail-list ul li::before {
  content: "";
}

@media (max-width: 600px) {
  .project-detail-list ul li b {
    display: block;
    width: auto;
    margin-bottom: 4px;
  }
}

.carousel {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;

  /* 3 resim için */
}

.carousel-item {
  min-width: 100%;
  transition: opacity 0.5s ease;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  display: block;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 10px;
}

.carousel-button {
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 24px;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  width: 3rem;
  text-align: center;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: #bbb;
  cursor: pointer;
}

.carousel-indicators button.active {
  background-color: #1b3764;
}

.fullscreen-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  overflow: hidden;
}

.fullscreen-carousel-inner {
  height: 100%;
  display: flex;
  transition: transform 0.5s ease;
}

.fullscreen-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fullscreen-slide img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.close-fullscreen {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 10000;
}

.fullscreen-prev,
.fullscreen-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  color: white;
  font-size: 36px;
  font-weight: bold;
  user-select: none;
  transform: translateY(-50%);
  padding: 0 15px;
}

.fullscreen-prev {
  left: 0;
}

.fullscreen-next {
  right: 0;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 2rem;
}

.p-0 {
  padding: 0 !important;
}

.rounded {
  border-radius: 20px;
}

.projects.ui-style-detail ul ul li strong {
  row-gap: 20px;
  color: #12306c;
}

.language-swicher a {
  text-decoration: none;
  color: #fff;
  margin-right: 2px;
  position: relative;
}

.language-swicher a:not(:first-child)::before {
  content: '|';
  margin-right: 3px;
  margin-left: 3px;
  color: #fff;
}