

  
            
    /* Telefon Bölümü */
    .phone-section {
        position: fixed;
        bottom: 20px; /* Alt mesafe */
        right: 20px; /* Sol mesafe */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .phone-icon {
        background-color: #34b7f1; /* Telefon ikonunun arka plan rengi */
        border-radius: 50%;
        padding: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        margin-bottom: 5px; /* İkon ile metin arasındaki mesafe */
        text-decoration: none; /* Altını çizme */
    }
    
    .phone-icon img {
        width: 50px; /* İkon genişliği */
        height: 50px; /* İkon yüksekliği */
        display: block;
    }
    
    .phone-text {
        color: #34b7f1; /* Telefon rengi */
        text-align: center;
        font-family: 'Arial', sans-serif;
        font-size: 14px; /* Metin boyutu */
        font-weight: bold;
        line-height: 1.3;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.7); /* Metin gölgesi */
        padding: 5px;
        background-color: red; /* Metin arka plan rengi */
        border-radius: 10px; /* Köşeleri yuvarla */
        border: 2px solid #34b7f1; /* Metin kutusunun kenarlığı */
        text-decoration: none; /* Altını çizme */
        display: inline-block; /* Blok olarak gösterir */
    }
    
    .phone-text:hover {
        background-color: #e0f7ff; /* Hover efektinde arka plan rengini değiştirir */
        color: #0288d1; /* Hover efektinde metin rengini değiştirir */
    }
    
    
    
    
    
    
    
    
    /* WhatsApp Bölümü */
    .whatsapp-section {
        position: fixed;
        bottom: 20px; /* Alt mesafe */
        left: 20px; /* Sol mesafe */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-icon {
        background-color: #25D366; /* WhatsApp yeşili */
        border-radius: 50%;
        padding: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        margin-bottom: 5px; /* İkon ile metin arasındaki mesafe */
    }
    
    .whatsapp-icon img {
        width: 50px; /* İkon genişliği */
        height: 50px; /* İkon yüksekliği */
        display: block;
    }
    
    .whatsapp-text {
        color: #25D366; /* WhatsApp rengi */
        text-align: center;
        font-family: 'Arial', sans-serif;
        font-size: 14px; /* Metin boyutu */
        font-weight: bold;
        line-height: 1.3;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.7); /* Metin gölgesi */
        padding: 5px;
        background-color: red; /* Metin arka plan rengi */
        border-radius: 10px; /* Köşeleri yuvarla */
        border: 2px solid #25D366; /* Metin kutusunun kenarlığı */
        text-decoration: none; /* Bağlantı altını çizme */
    }
    
    .whatsapp-text:hover {
        background-color: #eafaf1; /* Hover efektinde arka plan rengini değiştirir */
    }
    
                /* Genel stil ayarları */
                body {
                margin: 0;
                font-family: Arial, sans-serif;
            }
            .caption {
        position: absolute;
        top: 250px; /* Üstten mesafe */
        left: 20px; /* Soldan mesafe */
        color: white;
        text-align: left; /* Metni sola hizala */
        background: rgba(0, 0, 0, 0.6); /* Koyu arka plan */
        padding: 20px;
        border-radius: 10px; /* Köşeleri yuvarla */
        max-width: 80%; /* Maksimum genişlik */
    }
    
    .caption h1 {
        font-size: 36px; /* Başlık font boyutu */
        margin: 0;
        font-family: 'Arial', sans-serif;
        font-weight: bold;
        color: #f1c40f; /* Başlık rengi */
        text-shadow: 3px 3px 6px rgba(0,0,0,0.8); /* Daha belirgin gölge */
    }
    
    .caption p {
        font-size: 18px; /* Açıklama font boyutu */
        margin-top: 10px;
        font-family: 'Arial', sans-serif;
        color: #f5f5f5; /* Açıklama rengi */
        line-height: 1.5;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    }
    
            .slider {
                position: relative;
                width: 100%;
                overflow: hidden;
            }
    
            .slides {
                display: flex;
                transition: transform 1s ease-in-out; /* Geçiş süresi ve efekti */
                width: 300%; /* 3 resim olduğu varsayılarak genişlik ayarlanır */
            }
    
            .slide {
                width: 100vw; /* Her bir slayt ekran genişliğinde olacak */
                flex-shrink: 0;
                height: 100vh; /* Ekranın yüksekliği kadar olacak */
                position: relative;
                overflow: hidden; /* Resimlerin container dışında kalmasını engeller */
            }
    
            .slide img {
                width: 100%;
                height: 100%;
                object-fit: cover; /* Resmi container'a uyacak şekilde keser */
                display: block;
                position: absolute; /* Resmin konumunu ayarlamak için */
                top: 0; /* Üstten tam hizalı */
                left: 0; /* Soldan tam hizalı */
            }
    
            /* Slider kontrolleri */
            .controls {
                position: absolute;
                top: 50%;
                width: 100%;
                display: flex;
                justify-content: space-between;
                transform: translateY(-50%);
                z-index: 10;
            }
    
            .control-left, .control-right {
                background-color: rgba(0, 0, 0, 0.5);
                color: #fff;
                border: none;
                padding: 10px;
                cursor: pointer;
                font-size: 1.5rem;
            }
    
            .control-left:hover, .control-right:hover {
                background-color: rgba(0, 0, 0, 0.8);
            }
    
            /* Daire şeklinde radio butonlar */
            .radio-buttons {
                position: absolute;
                bottom: 10px;
                width: 100%;
                text-align: center;
            }
    
            .radio-button {
                cursor: pointer;
                display: inline-block;
                margin: 0 5px;
                width: 10px;
                height: 10px;
                background-color: #fff;
                border-radius: 50%;
                transition: background-color 0.3s;
            }
    
            /* Aktif radio butonu stili */
            input[type="radio"] {
                display: none; /* Radio butonları gizler */
            }
    
            /* Slayt geçişleri */
            input[type="radio"]:nth-of-type(1):checked ~ .slides {
                transform: translateX(0%);
            }
            
            input[type="radio"]:nth-of-type(2):checked ~ .slides {
                transform: translateX(-33.7%);
            }
            
            input[type="radio"]:nth-of-type(3):checked ~ .slides {
                transform: translateX(-67.4%);
            }
    
            /* Aktif radio butonu stili */
            input[type="radio"]:nth-of-type(1):checked ~ .radio-buttons .radio-button:nth-of-type(1),
            input[type="radio"]:nth-of-type(2):checked ~ .radio-buttons .radio-button:nth-of-type(2),
            input[type="radio"]:nth-of-type(3):checked ~ .radio-buttons .radio-button:nth-of-type(3) {
                background-color: #000; /* Aktif buton rengi */
            }
     
.centered-small {
    width: 300px;               /* Küçük boyut */
    margin: 0 auto 20px auto;   /* Ortala ve alt boşluk */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .styled-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
  }
  

  .header {
    background-color: #222;
    color: white;
    padding: 10px 20px;
  }
  
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .logo img {
    height: 50px;
    border-radius: 10px;
  }
  
  /* Menü */
  .nav-menu ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-menu ul li a {
    color: black;
    font-weight: bold;
    text-decoration: none;
    padding: 8px 12px;
    transition: background 0.3s;
    
  }
  
  .nav-menu ul li a:hover {
    background-color: #444;
    border-radius: 6px;
  }
  
  .btn-phone {
    color: #4CAF50;
    font-weight: bold;
  }
  
  /* Menü butonu (sadece mobilde göster) */
  .menu-toggle {
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    display: none;
  }
  
  /* Mobil stil */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .nav-menu {
      display: none;
      width: 100%;
    }
  
    .nav-menu.active {
      display: block;
    }
  
    .nav-menu ul {
      flex-direction: column;
      background-color: #333;
    }
  
    .nav-menu ul li a {
      padding: 12px;
      border-top: 1px solid #444;
    }
  }

                * {
                  margin: 0;
                  padding: 0;
                  box-sizing: border-box;
                }
              
                body {
                  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                  background: linear-gradient(to right, #f8fbff, #dcecff);
                  color: #333;
                }
              
                .container {
                  max-width: 1200px;
                  margin: auto;
                  padding: 20px;
                }
              
                .topbar {
                  background: #0b3c5d;
                  color: #fff;
                  font-size: 14px;
                  padding: 8px 0;
                }
              
                .topbar .container {
                  display: flex;
                  justify-content: space-between;
                  align-items: center;
                }
              
                .header {
                  background: #ffffff;
                  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
                }
              
                .header-inner {
                  display: flex;
                  align-items: center;
                  justify-content: space-between;
                  padding: 20px 0;
                }
              
                .logo img {
                  height: 90px;
                  border-radius: 20px;
                  background: #fff;
                  padding: 8px;
                  border: 3px solid #0b3c5d;
                  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
                }
              
                .navbar ul {
                  list-style: none;
                  display: flex;
                  gap: 25px;
                }
              
                .navbar a {
                  font-weight: 600;
                  font-size: 16px;
                  color: #0b3c5d;
                  text-decoration: none;
                  transition: color 0.3s;
                }
              
                .navbar a:hover {
                  color: #1ca8dd;
                }
              
                .btn-phone {
                  background: #1ca8dd;
                  color: white;
                  padding: 8px 14px;
                  border-radius: 20px;
                  font-weight: bold;
                }
              
                .menu-toggle {
                  display: none;
                  background: none;
                  border: none;
                  font-size: 26px;
                  color: #0b3c5d;
                }
              
                .mobile-menu {
                  display: none;
                  background: #0b3c5d;
                }
              
                .mobile-menu ul {
                  list-style: none;
                  padding: 15px;
                }
              
                .mobile-menu ul li a {
                  color: #fff;
                  display: block;
                  padding: 10px 0;
                }
              
                .hero {
                  background: #0b3c5d;
                  color: white;
                  padding: 50px 0;
                  text-align: center;
                }
              
                .hero h1 {
                  font-size: 40px;
                  color: #1ca8dd;
                  font-family: 'Poppins', sans-serif;
                  font-weight: 600;
                }
              
                .content {
                  display: flex;
                  flex-direction: row;
                  gap: 40px;
                  margin: 40px 0;
                  align-items: flex-start;
                }
              
                .content article {
                  flex: 3;
                  text-align: center;
                }
                .highlight-box {
  background: linear-gradient(135deg, #ffffff 0%, #f0faff 100%);
  border: 3px solid #1ca8dd;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px; /* Bu satır boşluk bırakır */

}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.highlight-box p {
  margin-bottom: 15px; /* Paragraflar arasında boşluk */
  line-height: 1.6;     /* Satır arası rahat okunsun */
}


                .highlight-box h2 {
                  color: #0b3c5d;
                  margin-bottom: 15px;
                }
              
                .highlight-box img {
                  width: 100%;
                  border-radius: 20px;
                  margin-top: 25px;
                }
              
                .sidebar {
                  flex: 1;
                  background: #ffffff;
                  border-radius: 20px;
                  padding: 20px;
                  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
                  text-align: center;
                }
              
                .sidebar h3 {
                  color: #0b3c5d;
                  margin-bottom: 15px;
                }
              
                .sidebar ul {
                  list-style: none;
                  padding: 0;
                }
              
                .sidebar ul li {
                  margin-bottom: 12px;
                }
              
                .sidebar ul li a {
                  color: #0b3c5d;
                  text-decoration: none;
                  font-weight: 500;
                }
              
                .sidebar ul li a:hover {
                  text-decoration: underline;
                  color: #1ca8dd;
                }
              
                .footer {
                  background: #0b3c5d;
                  color: #fff;
                  text-align: center;
                  padding: 25px 0;
                  font-size: 14px;
                }
              
                @media (max-width: 992px) {
                  .navbar {
                    display: none;
                  }
              
                  .menu-toggle {
                    display: block;
                  }
              
                  .content {
                    flex-direction: column;
                  }
                }
           
           
                    #footer {
                      background-color: #001f33;
                      color: #ffffff;
                      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                    }
                
                    .altkisim {
                      padding: 40px 0;
                      background-color: #002b45;
                    }
                
                    .altkisim .container {
                      display: flex;
                      flex-wrap: wrap;
                      justify-content: space-between;
                      gap: 30px;
                    }
                
                    .foowidget {
                      flex: 1 1 30%;
                      min-width: 250px;
                    }
                
                    .foowidget .yanbaslik {
                      font-size: 18px;
                      font-weight: bold;
                      margin-bottom: 15px;
                      color: #00ccff;
                    }
                
                    .foowidget .textwidget p {
                      font-size: 14px;
                      line-height: 1.6;
                    }
                
                    .sosyal_profil a {
                      display: inline-block;
                      margin-right: 10px;
                      font-size: 20px;
                      color: #00ccff;
                      text-decoration: none;
                    }
                
                    .sosyal_profil a:hover {
                      color: #ffffff;
                    }
                
                    .widget_nav_menu ul,
                    .adres_bilgileri {
                      list-style: none;
                      padding: 0;
                    }
                
                    .widget_nav_menu ul li,
                    .adres_bilgileri li {
                      margin-bottom: 10px;
                      font-size: 14px;
                    }
                
                    .widget_nav_menu ul li a {
                      color: #ffffff;
                      text-decoration: none;
                    }
                
                    .widget_nav_menu ul li a:hover {
                      color: #00ccff;
                      text-decoration: underline;
                    }
                
                    .adres_bilgileri i {
                      margin-right: 8px;
                      color: #00ccff;
                    }
                
                    .copyright {
                      background-color: #000d1a;
                      padding: 20px 0;
                      font-size: 13px;
                    }
                
                    .copyright .sitedesc {
                      color: #ccc;
                    }
                
                    .copyright a {
                      color: #00ccff;
                      text-decoration: none;
                    }
                
                    .copyright a:hover {
                      text-decoration: underline;
                    }
                
                    #yukari {
                      position: fixed;
                      bottom: 20px;
                      right: 20px;
                      background-color: #00ccff;
                      color: white;
                      padding: 10px 15px;
                      border-radius: 50%;
                      text-align: center;
                      text-decoration: none;
                      font-size: 18px;
                    }
               
                  /* CSS'i footer'dan ayrı olarak style tag'inde veya ana CSS dosyanda tanımla */
                    .topar {
                      background-color: #001f33;
                      padding: 10px 0;
                      font-size: 14px;
                      color: #ffffff;
                    }
                    
                    .topar .container {
                      display: flex;
                      justify-content: space-between;
                      align-items: center;
                      gap: 20px;
                      flex-wrap: wrap;
                    }
                    
                    .left-info span {
                      margin-right: 15px;
                    }
                    
                    .right-social a {
                      display: inline-block;
                      margin-left: 10px;
                      font-size: 18px;
                      color: #00ccff;
                      text-decoration: none;
                    }
                    
                    .right-social a:hover {
                      color: #ffffff;
                    }
                 
                    .etiket-bulutu {
                        margin-top: 10px;
                        display: flex;
                        flex-wrap: wrap;
                        gap: 8px;
                        justify-content: center; /* Etiketleri ortalar */
                    
                      }
                      .bolum-cizgisi {
                      margin: 20px 0;
                      border: none;
                      border-top: 1px solid #ccc;
                    }
                      .etiket-bulutu a {
                    
                        display: inline-block;
                        background-color: #e0e0e0;
                        color: #333;
                        padding: 5px 10px;
                        border-radius: 20px;
                        font-size: 14px;
                        text-decoration: none;
                        transition: background-color 0.3s;
                      }
                      
                      .etiket-bulutu a:hover {
                        background-color: #007BFF;
                        color: #fff;
                      }
                      
                   
