/* Özel stiller */
.contact-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.contact-buttons .btn {
  position: relative;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none; /* Buton kenarlığını kaldır */
  overflow: hidden; /* İçerideki elementleri kes */
}

.contact-buttons .btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 1s linear infinite;
}

.contact-buttons .btn:hover::after {
  animation: none; /* Hovver durumunda animasyonu durdur */
}

@keyframes pulse {
  0% {
    width: 0;
    height: 0;
    opacity: 0.5;
  }
  100% {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}

.contact-buttons .btn-phone {
  background-color: red; /* Telefon butonunun arka plan rengi */
}

/* Telefon ikonu dönme animasyonu */
.rotate-icon {
  animation: rotateIcon 2s linear infinite;
}

@keyframes rotateIcon {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
.service-col {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease-in-out;
}

.service-col:hover {
  transform: scale(1.05);
}
.service-col1 {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease-in-out;
  background-color: #f8f9fa; /* Beyazın bir ton gri si */
}
.service-col2 {
  padding: 20px;
  border: 1px solid transparent; /* Çizgi olacak ama görünmez */
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.service-col2.hovered {
  transform: scale(1.05);
}
/* header start2 */
.backImage2 {
  background-image: url("/img/header-web.jpg");
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
}


header.backImage2 .backImage2-sub {
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-style: italic;
  font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

header.backImage2 .backImage2-heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 3rem;
  margin-bottom: 2rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

@media(max-width:991.98px) {
  header.backImage2 {
      padding-top: 0rem;
      padding-bottom: 0rem;
  }

  header.backImage2 .backImage2-heading {
      font-size: 2rem;
      line-height: 2rem;
  }

  #mainNavbar .navbar-nav .nav-item .nav-link {
      color: #fcfdff;
  }

  .p-modal .modal-content h2 {
      font-size: 2rem;
      line-height: 2rem;
  }

  .p-modal .close-modal {
      width: 2rem;
      height: 2rem;
  }
}

@media(min-width:992px) {
  header.backImage2 {
      padding-top: 5rem;
      padding-bottom: 5rem;
  }
}
#unique-container {
  background-color: #f8f9fa; /* Örnek olarak gri arka plan rengi */
}
.footer {
  background-color: #333333;
  color: #ffffff;
}

#references {
  text-align: center;
}

.reference-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px; /* Resimler arasındaki boşluğu ayarlar */
}

.reference-item img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
  border: 2px solid #ddd; /* Kenarlık rengi ve kalınlığı */
  border-radius: 8px; /* Kenarlık köşeleri yuvarlak */
}

.reference-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.overlay-text {
  font-size: 14px;
  margin: 0;
  max-width: 100%; /* Metnin maksimum genişliğini ayarlar */
}





.reference-item:hover .overlay {
  opacity: 1;
}
@media (max-width: 767px) {
  .offcanvas-body .nav-item {
      margin-bottom: 5px; /* Mobil ekranlarda butonlar arasına 5px boşluk ekle */
  }
}

.backImage-sub, .backImage-heading {
  background-color: rgba(139, 69, 19, 0.45); /* Yeşil (0, 128, 0) ve %50 opaklık (0.5) */
  color: white; /* Yazı rengi beyaz olsun */
  padding: 20px; /* İçerik ile arka plan arasındaki boşluğu ayarlamak için */
  text-align: center; /* Metni ortalamak için */
  /* Diğer stiller buraya eklenebilir */
}

/* style.css */


.footer a {
  color: #6c757d;
}

.footer a:hover {
  color: #e7ecf2;
}



