*{
    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);
}




/* Katagori Menü Stili */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background: #f4f4f4;
    border-radius: 8px;
    padding: 15px;
    max-width: 300px;
    flex: 1 1 250px;
    /* Kartların boyutları esnek ve uyumlu olacak */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.caption-container {
    text-align: center;
    padding: 10px;
    color: white;
    font-size: 20px;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.baslikcard {
    font-size: 18px;
    text-align: center;
    color: black;
    margin: 10px 0;
}

.cardp {
    color: #333; /* Daha koyu bir renk ile kontrast artırabilirsiniz */
    font-size: 1.1rem; /* Yazı boyutunu biraz büyüterek okunabilirliği artırın */
    line-height: 1.6; /* Satır aralığını ayarlayarak daha rahat bir okuma sağlar */
    font-weight: 500; /* Yazıyı biraz daha kalın yaparak dikkat çekmesini sağlayın */
    opacity: 1; /* Yazının tamamen görünür olmasını sağla */
    transition: all 0.3s ease; /* Hover etkisi için yumuşak geçiş ekleyin */
}

/* Opsiyonel: Hover efekti ile etkileşimi artırabilirsiniz */
.card:hover .cardp {
    color: gray; /* Hover durumunda yazı rengini değiştirin */
    font-weight: 600; /* Hover durumunda yazıyı daha kalın yapın */
}

/* Katagori Menü Stili */


#customer-feedback {
  background-color: #f9f9f9;
  padding: 50px 0;
  text-align: center;
}

#customer-feedback h2 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 20px;
}

#customer-feedback p {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 40px;
}





/* 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;
}

.card {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card:hover {
    transform: scale(1.05); /* Slightly enlarges the card when hovered */
}

.card img {
    width: 100%;
    height: auto;
}

.card .baslikcard {
    text-align: center;
    font-size: 1.2em;
    margin-top: 10px;
    color: #333;
}

.card p {
    font-size: 1em;
    color: #555;
    padding: 10px;
    text-align: center;
}

.baslikcard {
    text-decoration: none; /* Yazı altındaki çizgiyi kaldırır */
    cursor: pointer; /* Fare ile üzerine gelindiğinde el işareti çıkar */
}

.card.item:hover .baslikcard {
    text-decoration: none; /* Hover durumunda da çizgi olmasın */
}

/* Genel Stil Ayarları */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

h1, h2, h3 {
    color: #2c3e50;
}

a {
    text-decoration: none;
    color: #2980b9;
}

a:hover {
    color: #e74c3c;
}

/* Header (Üst Menü) */
header {
    background-color: #34495e;
    padding: 20px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #ecf0f1;
    font-size: 18px;
    text-transform: uppercase;
}

nav ul li a:hover {
    color: #e74c3c;
}

/* Blog Başlık */
.blog-header {
    background-color: ;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.blog-header h1 {
    font-size: 36px;
    margin: 0;
}

/* Blog İçeriği */
.blog-content {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog-content article {
    line-height: 1.8;
}

.blog-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.blog-content h3 {
    font-size: 24px;
    color: black;
    margin-top: 30px;
}

.blog-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

/* Responsive Design (Mobil Uyumluluk) */
@media (max-width: 768px) {
    .blog-content {
        padding: 15px;
    }

    header, footer {
        padding: 15px 0;
    }

    nav ul {
        text-align: center;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .blog-header h1 {
        font-size: 30


    .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 */
        }
    }
