*{
    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 */

.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;
}




/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7fa;
    color: #333;
    line-height: 1.6;
}

/* Container and Layout */
.container {
    width: 80%;
    margin: 0 auto;
    padding: 50px 0;
    
}

/* Headings */
h2, h3, h4 {
    color: #2c3e50;
    font-weight: bold;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.5rem;
    text-align: center;
    color: black;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #7f8c8d;
}

/* Services */
.services {
    margin-top: 40px;
}

.services-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    color: black;
}

.service-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Satır taşmalarını düzeltir */
    width: 100%; /* Konteyner genişliğini belirler */
    margin: 0 auto; /* Ortalamak için */
    max-width: 1200px; /* İsteğe bağlı, bir sınır belirler */
}

.service-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 22%;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    width: calc(22% - 20px); /* Her kutunun genişliği, 4 sütun düzenine uygun şekilde */
    margin: 10px; /* Aralarındaki boşluk */
    box-sizing: c; /* Padding ve border'ı genişliğe dahil eder */
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: black;
}

.service-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1rem;
    color: #7f8c8d;
}


/* Why Choose Us Section */
.why-choose-us {
    padding: 40px 0;
    margin-top: 10px;
}

.features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: calc(25% - 20px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.feature-item h4 {
    font-size: 1.3rem;
    color: black;
    margin-bottom: 10px;
}

.feature-item p {
    color: #7f8c8d;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .feature-item {
        width: calc(100% - 20px);
    }
}

/* Call to Action Section */
.cta-section {
    background-color: whitesmoke;
    color: black;
    text-align: center;
    padding: 50px 20px;
    margin-top: 50px;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #fff;
    color: black;
    font-size: 1.2rem;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #e74c3c;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-item, .feature-item {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .service-item, .feature-item {
        width: 100%;
    }

    .services-title, .section-title, .section-subtitle, .intro-text {
        font-size: 1.5rem;
    }

    .cta-section h3 {
        font-size: 1.8rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

    .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 */
        }
    }

