*{
    box-sizing: border-box;
}

body{
  font-family: "Nunito", sans-serif;
    }
header{
    display: flex;
    justify-content: center; 
    align-items: center;    
    height: 100px;           
    background-color: white;
}

/* Gizli Bağlantı SEO */

#hidden-link {
    visibility: hidden;
    position: absolute;
    left: -9999px;
}
/* Gizli Bağlantı Blog*/

#blog-link {
    display: none; /* Gizli yap */
}
    
/* Dil Çevirici Genel Ayarları */
.language-switcher {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Başlangıca hizala */
  gap: 1px; /* Bayraklar arası mesafe */
  margin: 0; /* Çevre boşluğunu sıfırla */
  padding: 0; /* İç boşluğu sıfırla */
}

/* Bayrak Bağlantı Stili */
.language-link {
  text-decoration: none; /* Alt çizgiyi kaldırır */
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out; /* Geçiş efekti */
}

/* Bayrak Stili */
.flag-icon {
  width: 30px; /* Bayrak genişliği */
  height: 30px; /* Bayrak yüksekliği */
  border-radius: 50%; /* Yuvarlak yapmak için */
  border: 3px solid #ddd; /* Bayrağın çevresine ince çerçeve */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Hafif gölge */
  transition: all 0.3s ease-in-out; /* Geçiş efekti */
}

.language-link:hover .flag-icon {
  transform: scale(1.1); /* Hoverda büyüme efekti */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Daha belirgin gölge */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .language-switcher {
    flex-wrap: nowrap; /* Tek satırda kalmasını sağla */
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1px; /* Daha geniş boşluk */
  }

  .flag-icon {
    width: 25px; /* Daha küçük bayrak boyutu */
    height: 25px;
  }
}

/* Dil Çevirici Genel Ayarları */ 
    
/* Genel Menü */
#menu {
    position: relative;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.logo {
    max-width: 150px;
}

/* Hamburger Animasyonu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

.bar {
    width: 25px;
    height: 3px;
    background: #000000; /* Siyah renk */
    transition: all 0.3s ease;
}

/* Hamburger Animasyon Aktif */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Sidebar Menü */
.sidebar-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: rgba(255, 255, 255, 0.9); /* Şeffaf arka plan */
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9;
}


.sidebar-menu.open {
    transform: translateX(0);
}

.nav-links a {
    display: block;
    padding: 15px 20px;
    color: #000000;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 14px; /* Yazı boyutunu artırdık */
}

.nav-links {
    padding-top: 100px; /* Bu satır eklenerek yazılar aşağı kaydırılır */
}

.nav-links a:hover {
    background: #f57c00;
    color: #fff;
}

/* Dropdown Menü */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* === Teklif Alın Butonu === */
.quote-button {
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    padding: 8px 15px;
    transition: all 0.3s ease;
    font-size: 18px; /* Yazı boyutunu artırdık */
}

.quote-button:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}




/* WhatsApp İkonu */
/* WhatsApp butonunu sabitle */
.wa__btn_popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* WhatsApp ikonu üzerine tıklanırsa büyüme */
.wa__btn_popup:hover {
    transform: scale(1.1);
}

/* İkon kısmı */
.wa__btn_popup_icon {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Yazı kısmı (buton yazısı) */
.wa__btn_popup_txt {
    display: none; /* Yazıyı gizleyebilirsiniz, sadece ikon gözükür */
}


.wa__btn_popup_icon {
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wa__popup_chat_box {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: 300px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.wa__popup_chat_box.show {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.wa__popup_chat_box.hide {
  transform: translateY(20px);
  opacity: 0;
}

.wa__popup_heading {
  padding: 10px;
  background-color: #25d366;
  border-radius: 10px 10px 0 0;
  color: #ffffff;
}

.wa__popup_title {
  font-size: 16px;
  font-weight: bold;
}

.wa__popup_intro {
  font-size: 12px;
}

.wa__popup_content {
  padding: 10px;
}

.wa__popup_content_list {
  display: flex;
  flex-direction: column;
}

.wa__popup_content_item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  transition: background-color 0.3s ease;
}

.wa__popup_content_item:hover {
  background-color: #f1f1f1;
}

.wa__popup_avatar {
  margin-right: 10px;
}

.wa__popup_txt .wa__member_name {
  font-weight: bold;
  font-size: 14px;
}

/* Animation for button hover */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.wa__btn_popup:hover {
  animation: bounce 0.5s ease-in-out;
}

/* Show Popup with fade in effect */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.wa__popup_chat_box.show {
  animation: fadeIn 0.5s ease-out forwards;
}


/* Genel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
  overflow-x: hidden; /* Yatay kaydırmayı engeller */
}

/* Hero Bölümü */
.hero {
  background-color: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem); /* Responsive font boyutu */
  margin-bottom: 1rem;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 2rem;
}

.cta-button {
  text-decoration: none;
  background: linear-gradient(135deg, #ff5722, #ff9800);
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ff9800, #ff5722);
}

/* Hizmetler Bölümü */
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem; /* Kutular arası boşluk */
  padding: 2rem;
  margin: 2rem;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service {
  flex: 1 1 calc(33.333% - 1rem);
  padding: 2rem;
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: translateY(-5px); /* Hafif yukarı hareket */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.service h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service p {
  font-size: 1rem;
  color: #555;
}

/* Tekli Hizmetler */
.single-service {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem; /* Kutular arası boşluk */
  margin: 2rem;
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.single-service img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  object-fit: cover; /* Görselin düzgün kesilmesi */
  flex: 1 1 50%;
}

.single-service-content {
  flex: 1 1 50%;
  text-align: left;
}

.single-service-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.single-service-content p {
  color: #555;
  line-height: 1.5;
}

/* Mobil Uyum */
@media (max-width: 768px) {
  .services {
    flex-direction: column;
    gap: 1rem;
  }

  .service {
    flex: 1 1 100%;
  }

  .single-service {
    flex-direction: column;
    text-align: center;
  }

  .single-service img {
    margin-bottom: 1rem;
  }

  .single-service-content {
    margin: 0;
    text-align: center;
  }
}

/* Görünürlük Sınıfı */
.hidden {
  display: block !important;
  visibility: visible !important;
}

    .social-media-list {
        display: flex;
        justify-content: flex-start; /* İkonları tam sola yaslar */
        padding: 0;
        margin: 0;
    }

    .social-icon {
        font-size: 20px;
        display: inline-block;
        margin: 0 5px;
        color: #fff;
        transition: color 0.3s ease, transform 0.3s ease;
        text-decoration: none;
    }

    .social-icon i {
        transition: transform 0.3s ease;
    }

    /* Facebook Renk ve Hover */
    .social-icon.facebook {
        color: #3b5998;
    }
    .social-icon.facebook:hover {
        color: #8b9dc3;
        transform: scale(1.2);
    }

    /* Instagram Gradient Renk ve Hover */
    .social-icon.instagram {
        background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
        -webkit-background-clip: text;
        color: transparent;
    }
    .social-icon.instagram:hover {
        transform: scale(1.2);
    }

  
    /* Hover Efekti */
    .social-icon:hover {
        transform: scale(1.2);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0);
        animation: rotateIcon 0.6s ease;
    }

    /* Dönen Animasyon */
    @keyframes rotateIcon {
        0% {
            transform: scale(1.2) rotate(0deg);
        }
        50% {
            transform: scale(1.3) rotate(180deg);
        }
        100% {
            transform: scale(1.2) rotate(360deg);
        }
    }

    /* Mobile responsiveness */
    @media screen and (max-width: 768px) {
        .social-media-list {
            justify-content: center; /* Orta hizalama */
        }

        .social-icon {
            margin: 0 5px; /* Mobilde daha yakın ikonlar */
            font-size: 18px; /* Küçük ekranlarda ikon boyutunu küçült */
        }
    }

